aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2018-03-15 07:31:45 +0800
committerkumavis <aaron@kumavis.me>2018-03-15 07:32:35 +0800
commit34aeef50a0519576da64f23d65afdfbfa278273d (patch)
treea2cdfc8e11630a2077fe2c1903894e433f977c7e /ui/app/components/send
parente2efc91aee64072c408ab509219dcbfb389c7609 (diff)
downloadtangerine-wallet-browser-34aeef50a0519576da64f23d65afdfbfa278273d.tar
tangerine-wallet-browser-34aeef50a0519576da64f23d65afdfbfa278273d.tar.gz
tangerine-wallet-browser-34aeef50a0519576da64f23d65afdfbfa278273d.tar.bz2
tangerine-wallet-browser-34aeef50a0519576da64f23d65afdfbfa278273d.tar.lz
tangerine-wallet-browser-34aeef50a0519576da64f23d65afdfbfa278273d.tar.xz
tangerine-wallet-browser-34aeef50a0519576da64f23d65afdfbfa278273d.tar.zst
tangerine-wallet-browser-34aeef50a0519576da64f23d65afdfbfa278273d.zip
i18n - load locales manually
Diffstat (limited to 'ui/app/components/send')
-rw-r--r--ui/app/components/send/gas-fee-display-v2.js2
-rw-r--r--ui/app/components/send/gas-tooltip.js2
-rw-r--r--ui/app/components/send/to-autocomplete.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/components/send/gas-fee-display-v2.js b/ui/app/components/send/gas-fee-display-v2.js
index 0c6f76303..2aaa43350 100644
--- a/ui/app/components/send/gas-fee-display-v2.js
+++ b/ui/app/components/send/gas-fee-display-v2.js
@@ -2,7 +2,7 @@ const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const CurrencyDisplay = require('./currency-display')
-const t = require('../../../i18n')
+const t = global.getMessage
module.exports = GasFeeDisplay
diff --git a/ui/app/components/send/gas-tooltip.js b/ui/app/components/send/gas-tooltip.js
index d925d3ed8..246c25152 100644
--- a/ui/app/components/send/gas-tooltip.js
+++ b/ui/app/components/send/gas-tooltip.js
@@ -2,7 +2,7 @@ const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const InputNumber = require('../input-number.js')
-const t = require('../../../i18n')
+const t = global.getMessage
module.exports = GasTooltip
diff --git a/ui/app/components/send/to-autocomplete.js b/ui/app/components/send/to-autocomplete.js
index 72074229e..1b0a1064a 100644
--- a/ui/app/components/send/to-autocomplete.js
+++ b/ui/app/components/send/to-autocomplete.js
@@ -2,7 +2,7 @@ const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const AccountListItem = require('./account-list-item')
-const t = require('../../../i18n')
+const t = global.getMessage
module.exports = ToAutoComplete