diff options
author | Nick Doiron <ndoiron@mapmeld.com> | 2018-01-23 17:48:03 +0800 |
---|---|---|
committer | Nick Doiron <ndoiron@mapmeld.com> | 2018-01-23 17:48:03 +0800 |
commit | bad70eb1b328aa911a2523ccab642d7607161b4b (patch) | |
tree | d99970c6f35333563ee0a4a390055aa73e93ea21 /ui/app/components/account-dropdowns.js | |
parent | 338ebe5f402ff50dc8d1a91b7b69cd8e262cc789 (diff) | |
download | tangerine-wallet-browser-bad70eb1b328aa911a2523ccab642d7607161b4b.tar tangerine-wallet-browser-bad70eb1b328aa911a2523ccab642d7607161b4b.tar.gz tangerine-wallet-browser-bad70eb1b328aa911a2523ccab642d7607161b4b.tar.bz2 tangerine-wallet-browser-bad70eb1b328aa911a2523ccab642d7607161b4b.tar.lz tangerine-wallet-browser-bad70eb1b328aa911a2523ccab642d7607161b4b.tar.xz tangerine-wallet-browser-bad70eb1b328aa911a2523ccab642d7607161b4b.tar.zst tangerine-wallet-browser-bad70eb1b328aa911a2523ccab642d7607161b4b.zip |
first steps to i18n
Diffstat (limited to 'ui/app/components/account-dropdowns.js')
-rw-r--r-- | ui/app/components/account-dropdowns.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/app/components/account-dropdowns.js b/ui/app/components/account-dropdowns.js index 0c34a5154..3e5805c0e 100644 --- a/ui/app/components/account-dropdowns.js +++ b/ui/app/components/account-dropdowns.js @@ -79,7 +79,7 @@ class AccountDropdowns extends Component { try { // Sometimes keyrings aren't loaded yet: const type = keyring.type const isLoose = type !== 'HD Key Tree' - return isLoose ? h('.keyring-label', 'LOOSE') : null + return isLoose ? h('.keyring-label', t('looseCaps')) : null } catch (e) { return } } @@ -129,7 +129,7 @@ class AccountDropdowns extends Component { diameter: 32, }, ), - h('span', { style: { marginLeft: '20px', fontSize: '24px' } }, 'Create Account'), + h('span', { style: { marginLeft: '20px', fontSize: '24px' } }, t('createAccount')), ], ), h( @@ -192,7 +192,7 @@ class AccountDropdowns extends Component { global.platform.openWindow({ url }) }, }, - 'View account on Etherscan', + t('etherscanView'), ), h( DropdownMenuItem, @@ -204,7 +204,7 @@ class AccountDropdowns extends Component { actions.showQrView(selected, identity ? identity.name : '') }, }, - 'Show QR Code', + t('qrCode'), ), h( DropdownMenuItem, @@ -216,7 +216,7 @@ class AccountDropdowns extends Component { copyToClipboard(checkSumAddress) }, }, - 'Copy Address to clipboard', + t('copyAddress'), ), h( DropdownMenuItem, @@ -226,7 +226,7 @@ class AccountDropdowns extends Component { actions.requestAccountExport() }, }, - 'Export Private Key', + t('exportPrivateKey'), ), ] ) |