diff options
author | 03-26 <37808790+03-26@users.noreply.github.com> | 2018-06-07 02:38:57 +0800 |
---|---|---|
committer | kumavis <kumavis@users.noreply.github.com> | 2018-06-07 02:38:57 +0800 |
commit | ccd4884db112a5440e7f482f644e6729e638dc49 (patch) | |
tree | 682f8b5398451dc680c5414f09ed5e28948113ec /ui/app/send-v2.js | |
parent | 00f24339524850f7aa3a587914a9d33a10ccc539 (diff) | |
download | tangerine-wallet-browser-ccd4884db112a5440e7f482f644e6729e638dc49.tar tangerine-wallet-browser-ccd4884db112a5440e7f482f644e6729e638dc49.tar.gz tangerine-wallet-browser-ccd4884db112a5440e7f482f644e6729e638dc49.tar.bz2 tangerine-wallet-browser-ccd4884db112a5440e7f482f644e6729e638dc49.tar.lz tangerine-wallet-browser-ccd4884db112a5440e7f482f644e6729e638dc49.tar.xz tangerine-wallet-browser-ccd4884db112a5440e7f482f644e6729e638dc49.tar.zst tangerine-wallet-browser-ccd4884db112a5440e7f482f644e6729e638dc49.zip |
i18n - ja improvements
Diffstat (limited to 'ui/app/send-v2.js')
-rw-r--r-- | ui/app/send-v2.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/send-v2.js b/ui/app/send-v2.js index 4fbe8ff11..612f256df 100644 --- a/ui/app/send-v2.js +++ b/ui/app/send-v2.js @@ -224,7 +224,7 @@ SendTransactionScreen.prototype.renderFromRow = function () { return h('div.send-v2__form-row', [ - h('div.send-v2__form-label', 'From:'), + h('div.send-v2__form-label', this.context.t('from')), h('div.send-v2__form-field', [ h(FromDropdown, { @@ -396,7 +396,7 @@ SendTransactionScreen.prototype.renderAmountRow = function () { return h('div.send-v2__form-row', [ h('div.send-v2__form-label', [ - 'Amount:', + this.context.t('amount'), this.renderErrorMessage('amount'), !errors.amount && gasTotal && h('div.send-v2__amount-max', { onClick: (event) => { |