1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-12 17:10:56 +00:00

edit message for added coins

This commit is contained in:
Vladimir Volek 2019-04-26 14:59:08 +02:00
parent 30adb2052c
commit a6d82f4e33
3 changed files with 6 additions and 6 deletions

View File

@ -23,9 +23,9 @@ const definedMessages: Messages = defineMessages({
id: 'TR_TOKEN_NOT_FOUND', id: 'TR_TOKEN_NOT_FOUND',
defaultMessage: 'Token not found', defaultMessage: 'Token not found',
}, },
TR_ALREADY_USED: { TR_ALREADY_ADDED: {
id: 'TR_ALREADY_USED', id: 'TR_ALREADY_ADDED',
defaultMessage: 'Already used', defaultMessage: 'Already added',
}, },
TR_HISTORY: { TR_HISTORY: {
id: 'TR_HISTORY', id: 'TR_HISTORY',

View File

@ -160,7 +160,7 @@ const AccountSummary = (props: Props) => {
const isAdded = tokens.find(t => t.symbol === option.symbol); const isAdded = tokens.find(t => t.symbol === option.symbol);
if (isAdded) { if (isAdded) {
return `${option.name} (${props.intl.formatMessage( return `${option.name} (${props.intl.formatMessage(
l10nSummaryMessages.TR_ALREADY_USED l10nSummaryMessages.TR_ALREADY_ADDED
)})`; )})`;
} }
return option.name; return option.name;

View File

@ -1615,8 +1615,8 @@
] ]
} }
}, },
"TR_ALREADY_USED": { "TR_ALREADY_Added": {
"source": "Already used", "source": "Already added",
"meta": { "meta": {
"occurrences": [ "occurrences": [
"src/views/Wallet/views/Account/Summary/common.messages.js" "src/views/Wallet/views/Account/Summary/common.messages.js"