diff options
author | kumavis <aaron@kumavis.me> | 2018-03-14 05:49:26 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2018-03-14 05:49:26 +0800 |
commit | e48934dc04f94ef66ebb69a26105ce9bbf5f3842 (patch) | |
tree | ffc35395cfbb2b3dbbe254ec87dc6d1eff708ef7 /ui/app/components/send/gas-tooltip.js | |
parent | a88e436b7d45d9a7f9f4d4a4be58aff5e58e9074 (diff) | |
parent | 239d7106abe39b3a16871442b30edeac54b1bef4 (diff) | |
download | dexon-wallet-e48934dc04f94ef66ebb69a26105ce9bbf5f3842.tar.gz dexon-wallet-e48934dc04f94ef66ebb69a26105ce9bbf5f3842.tar.zst dexon-wallet-e48934dc04f94ef66ebb69a26105ce9bbf5f3842.zip |
Merge branch 'master' of github.com:MetaMask/metamask-extension into i3076-UseStorageLocalInstead
Diffstat (limited to 'ui/app/components/send/gas-tooltip.js')
-rw-r--r-- | ui/app/components/send/gas-tooltip.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/send/gas-tooltip.js b/ui/app/components/send/gas-tooltip.js index 46aff349..d925d3ed 100644 --- a/ui/app/components/send/gas-tooltip.js +++ b/ui/app/components/send/gas-tooltip.js @@ -2,6 +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') module.exports = GasTooltip @@ -81,7 +82,7 @@ GasTooltip.prototype.render = function () { 'marginTop': '81px', }, }, [ - h('span.gas-tooltip-label', {}, ['Gas Limit']), + h('span.gas-tooltip-label', {}, [t('gasLimit')]), h('i.fa.fa-info-circle'), ]), h(InputNumber, { @@ -97,4 +98,3 @@ GasTooltip.prototype.render = function () { ]), ]) } - |