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:
Jaco Greeff
2017-03-02 13:29:32 +01:00
committed by Gav Wood
parent 31302e057f
commit 5f51fa23ea
12 changed files with 230 additions and 58 deletions

View File

@@ -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 } />
);
}