diff options
author | Nick Doiron <ndoiron@mapmeld.com> | 2018-01-25 04:10:28 +0800 |
---|---|---|
committer | Nick Doiron <ndoiron@mapmeld.com> | 2018-01-25 04:10:28 +0800 |
commit | 7da52c599784130a5f7b6737f5b017bd3a95c1ed (patch) | |
tree | f5ca87c5d9944d9155ca9ebd4ef0783fe940211b /ui/app/components/pending-tx | |
parent | 99898ac77594d8fe6d4d2aa5bc3e3ba6492f4a10 (diff) | |
download | tangerine-wallet-browser-7da52c599784130a5f7b6737f5b017bd3a95c1ed.tar tangerine-wallet-browser-7da52c599784130a5f7b6737f5b017bd3a95c1ed.tar.gz tangerine-wallet-browser-7da52c599784130a5f7b6737f5b017bd3a95c1ed.tar.bz2 tangerine-wallet-browser-7da52c599784130a5f7b6737f5b017bd3a95c1ed.tar.lz tangerine-wallet-browser-7da52c599784130a5f7b6737f5b017bd3a95c1ed.tar.xz tangerine-wallet-browser-7da52c599784130a5f7b6737f5b017bd3a95c1ed.tar.zst tangerine-wallet-browser-7da52c599784130a5f7b6737f5b017bd3a95c1ed.zip |
separate out cross-browser i18n for extensions
Diffstat (limited to 'ui/app/components/pending-tx')
-rw-r--r-- | ui/app/components/pending-tx/confirm-deploy-contract.js | 1 | ||||
-rw-r--r-- | ui/app/components/pending-tx/confirm-send-ether.js | 1 | ||||
-rw-r--r-- | ui/app/components/pending-tx/confirm-send-token.js | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/ui/app/components/pending-tx/confirm-deploy-contract.js b/ui/app/components/pending-tx/confirm-deploy-contract.js index 0d8b2721f..e6972c541 100644 --- a/ui/app/components/pending-tx/confirm-deploy-contract.js +++ b/ui/app/components/pending-tx/confirm-deploy-contract.js @@ -9,6 +9,7 @@ const ethUtil = require('ethereumjs-util') const BN = ethUtil.BN const hexToBn = require('../../../../app/scripts/lib/hex-to-bn') const { conversionUtil } = require('../../conversion-util') +const t = require('../../../i18n') const { MIN_GAS_PRICE_HEX } = require('../send/send-constants') diff --git a/ui/app/components/pending-tx/confirm-send-ether.js b/ui/app/components/pending-tx/confirm-send-ether.js index 7608e02ad..52693b4f6 100644 --- a/ui/app/components/pending-tx/confirm-send-ether.js +++ b/ui/app/components/pending-tx/confirm-send-ether.js @@ -9,6 +9,7 @@ const ethUtil = require('ethereumjs-util') const BN = ethUtil.BN const hexToBn = require('../../../../app/scripts/lib/hex-to-bn') const { conversionUtil, addCurrencies } = require('../../conversion-util') +const t = require('../../../i18n') const { MIN_GAS_PRICE_HEX } = require('../send/send-constants') diff --git a/ui/app/components/pending-tx/confirm-send-token.js b/ui/app/components/pending-tx/confirm-send-token.js index 88644d57a..14523461f 100644 --- a/ui/app/components/pending-tx/confirm-send-token.js +++ b/ui/app/components/pending-tx/confirm-send-token.js @@ -6,6 +6,7 @@ const tokenAbi = require('human-standard-token-abi') const abiDecoder = require('abi-decoder') abiDecoder.addABI(tokenAbi) const actions = require('../../actions') +const t = require('../../../i18n') const clone = require('clone') const Identicon = require('../identicon') const ethUtil = require('ethereumjs-util') |