You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<DefaultLayoutfrom="/"title="Verify"description="Verify compiled contracts on different verification services">
14
+
<DefaultLayoutfrom="/"title="Verify"description={<FormattedMessageid="contract-verification.verifyDefaultLayout.description"defaultMessage="Verify compiled contracts on different verification services"/>}>
14
15
<VerifyView/>
15
16
</DefaultLayout>
16
17
}
@@ -19,7 +20,7 @@ const DisplayRoutes = () => (
19
20
<Route
20
21
path="/receipts"
21
22
element={
22
-
<DefaultLayoutfrom="/"title="Receipts"description="Check the verification statuses of contracts submitted for verification">
23
+
<DefaultLayoutfrom="/"title="Receipts"description={<FormattedMessageid="contract-verification.receiptsDefaultLayout.description"defaultMessage="Check the verification statuses of contracts submitted for verification"/>}>
23
24
<ReceiptsView/>
24
25
</DefaultLayout>
25
26
}
@@ -28,7 +29,7 @@ const DisplayRoutes = () => (
28
29
<Route
29
30
path="/lookup"
30
31
element={
31
-
<DefaultLayoutfrom="/"title="Lookup"description="Search for verified contracts and download them to Remix">
32
+
<DefaultLayoutfrom="/"title="Lookup"description={<FormattedMessageid="contract-verification.lookupDefaultLayout.description"defaultMessage="Lookup the verification status of a contract by its address"/>}>
32
33
<LookupView/>
33
34
</DefaultLayout>
34
35
}
@@ -37,7 +38,7 @@ const DisplayRoutes = () => (
37
38
<Route
38
39
path="/settings"
39
40
element={
40
-
<DefaultLayoutfrom="/"title="Settings"description="Customize settings for each verification service and chain">
41
+
<DefaultLayoutfrom="/"title="Settings"description={<FormattedMessageid="contract-verification.settingsDefaultLayout.description"defaultMessage="Configure the settings for the contract verification plugin"/>}>
(!!contractAddressError||!contractAddress) ? "Please provide a valid contract address." :
266
-
!selectedChain ? "Please select the chain." :
267
-
!selectedContract ? "Please select the contract (compile if needed)." :
268
-
((hasProxy&&!!proxyAddressError)||(hasProxy&&!proxyAddress)) ? "Please provide a valid proxy contract address." :
269
-
"Please provide all necessary data to verify")// Is not expected to be a case
270
-
: "Verify with selected tools"}>
270
+
(!!contractAddressError||!contractAddress) ? <FormattedMessageid="contract-verification.contractAddressError"defaultMessage="Please provide a valid contract address."/> :
271
+
!selectedChain ? <FormattedMessageid="contract-verification.chainError"defaultMessage="Please select the chain."/> :
272
+
!selectedContract ? <FormattedMessageid="contract-verification.selectedContractError"defaultMessage="Please select the contract."/> :
273
+
((hasProxy&&!!proxyAddressError)||(hasProxy&&!proxyAddress)) ? <FormattedMessageid="contract-verification.proxyAddressError"defaultMessage="Please provide a valid proxy address."/> :
274
+
<FormattedMessageid="contract-verification.generalVerifyError"defaultMessage={"Please provide all necessary data to verify"}/>)// Is not expected to be a case
275
+
: <FormattedMessageid="contract-verification.verifyButtonTooltip"defaultMessage="Verify the contract on the selected chains with the selected verifiers."/>}>
0 commit comments