Rephrasing token generation screen. (#4777)

This commit is contained in:
Tomasz Drwięga 2017-03-06 10:32:41 +01:00 committed by Jaco Greeff
parent a02063f348
commit 4d203d563c
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ export default {
connectingAPI: `Connecting to the Parity Secure API.`, connectingAPI: `Connecting to the Parity Secure API.`,
connectingNode: `Connecting to the Parity Node. If this informational message persists, please ensure that your Parity node is running and reachable on the network.`, connectingNode: `Connecting to the Parity Node. If this informational message persists, please ensure that your Parity node is running and reachable on the network.`,
invalidToken: `invalid signer token`, invalidToken: `invalid signer token`,
noConnection: `Unable to make a connection to the Parity Secure API. To update your secure token or to generate a new one, run {newToken} and supply the token below`, noConnection: `Unable to make a connection to the Parity Secure API. To update your secure token or to generate a new one, run {newToken} and paste the generated token into the space below.`,
token: { token: {
hint: `a generated token from Parity`, hint: `a generated token from Parity`,
label: `secure token` label: `secure token`

View File

@ -88,7 +88,7 @@ class Connection extends Component {
<div> <div>
<FormattedMessage <FormattedMessage
id='connection.noConnection' id='connection.noConnection'
defaultMessage='Unable to make a connection to the Parity Secure API. To update your secure token or to generate a new one, run {newToken} and supply the token below' defaultMessage='Unable to make a connection to the Parity Secure API. To update your secure token or to generate a new one, run {newToken} and paste the generated token into the space below.'
values={ { values={ {
newToken: <span className={ styles.console }>parity signer new-token</span> newToken: <span className={ styles.console }>parity signer new-token</span>
} } } }