Extract i18n strings in modals/* (#4706)
* DeployContract formatting * PasswordManager i18n * SaveContract i18n * Transfer i18n * Verification i18n * Fix spacing on label
This commit is contained in:
@@ -150,15 +150,20 @@ class DeployContract extends Component {
|
||||
|
||||
const title = realSteps
|
||||
? null
|
||||
: (deployError
|
||||
? <FormattedMessage
|
||||
id='deployContract.title.failed'
|
||||
defaultMessage='deployment failed'
|
||||
: (
|
||||
deployError
|
||||
? (
|
||||
<FormattedMessage
|
||||
id='deployContract.title.failed'
|
||||
defaultMessage='deployment failed'
|
||||
/>
|
||||
: <FormattedMessage
|
||||
id='deployContract.title.rejected'
|
||||
defaultMessage='rejected'
|
||||
)
|
||||
: (
|
||||
<FormattedMessage
|
||||
id='deployContract.title.rejected'
|
||||
defaultMessage='rejected'
|
||||
/>
|
||||
)
|
||||
);
|
||||
|
||||
const waiting = realSteps
|
||||
@@ -195,9 +200,7 @@ class DeployContract extends Component {
|
||||
}
|
||||
|
||||
return (
|
||||
<Warning
|
||||
warning={ errorEstimated }
|
||||
/>
|
||||
<Warning warning={ errorEstimated } />
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user