diff options
author | kumavis <kumavis@users.noreply.github.com> | 2018-03-14 02:25:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-14 02:25:31 +0800 |
commit | 15722b4e6c5610e2eb4a59683e5cd3cb3fe8b3f7 (patch) | |
tree | a3c2ca7b25e709aa4e1330e8c498b6bd335bffdf /ui/app/components/pending-msg-details.js | |
parent | 3cbf66a6de0c5348e90992c378d54c6e60f28dd7 (diff) | |
parent | 5a1b2093f8a3307b9d56d903d8a1b75e86f36b29 (diff) | |
download | tangerine-wallet-browser-15722b4e6c5610e2eb4a59683e5cd3cb3fe8b3f7.tar tangerine-wallet-browser-15722b4e6c5610e2eb4a59683e5cd3cb3fe8b3f7.tar.gz tangerine-wallet-browser-15722b4e6c5610e2eb4a59683e5cd3cb3fe8b3f7.tar.bz2 tangerine-wallet-browser-15722b4e6c5610e2eb4a59683e5cd3cb3fe8b3f7.tar.lz tangerine-wallet-browser-15722b4e6c5610e2eb4a59683e5cd3cb3fe8b3f7.tar.xz tangerine-wallet-browser-15722b4e6c5610e2eb4a59683e5cd3cb3fe8b3f7.tar.zst tangerine-wallet-browser-15722b4e6c5610e2eb4a59683e5cd3cb3fe8b3f7.zip |
Merge pull request #3456 from MetaMask/i18n
Add i18n
Diffstat (limited to 'ui/app/components/pending-msg-details.js')
-rw-r--r-- | ui/app/components/pending-msg-details.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/pending-msg-details.js b/ui/app/components/pending-msg-details.js index 718a22de0..87e66855d 100644 --- a/ui/app/components/pending-msg-details.js +++ b/ui/app/components/pending-msg-details.js @@ -1,6 +1,7 @@ const Component = require('react').Component const h = require('react-hyperscript') const inherits = require('util').inherits +const t = require('../../i18n') const AccountPanel = require('./account-panel') @@ -39,7 +40,7 @@ PendingMsgDetails.prototype.render = function () { // message data h('.tx-data.flex-column.flex-justify-center.flex-grow.select-none', [ h('.flex-column.flex-space-between', [ - h('label.font-small', 'MESSAGE'), + h('label.font-small.allcaps', t('message')), h('span.font-small', msgParams.data), ]), ]), @@ -47,4 +48,3 @@ PendingMsgDetails.prototype.render = function () { ]) ) } - |