diff options
author | Nick Doiron <ndoiron@mapmeld.com> | 2018-01-30 04:29:01 +0800 |
---|---|---|
committer | Nick Doiron <ndoiron@mapmeld.com> | 2018-01-30 04:29:01 +0800 |
commit | abfa74f09a0119345165a32090d88a1d95df6c80 (patch) | |
tree | 0b826ccd552f3c31524d2dc1c970ea0ddcb1083b /ui/app/components/customize-gas-modal | |
parent | 1698541bcdce6c2933c8b3b4e1c89e2f391c3a68 (diff) | |
download | tangerine-wallet-browser-abfa74f09a0119345165a32090d88a1d95df6c80.tar tangerine-wallet-browser-abfa74f09a0119345165a32090d88a1d95df6c80.tar.gz tangerine-wallet-browser-abfa74f09a0119345165a32090d88a1d95df6c80.tar.bz2 tangerine-wallet-browser-abfa74f09a0119345165a32090d88a1d95df6c80.tar.lz tangerine-wallet-browser-abfa74f09a0119345165a32090d88a1d95df6c80.tar.xz tangerine-wallet-browser-abfa74f09a0119345165a32090d88a1d95df6c80.tar.zst tangerine-wallet-browser-abfa74f09a0119345165a32090d88a1d95df6c80.zip |
complete i18n across new UI
Diffstat (limited to 'ui/app/components/customize-gas-modal')
-rw-r--r-- | ui/app/components/customize-gas-modal/index.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/components/customize-gas-modal/index.js b/ui/app/components/customize-gas-modal/index.js index 1c6036867..920dfeab6 100644 --- a/ui/app/components/customize-gas-modal/index.js +++ b/ui/app/components/customize-gas-modal/index.js @@ -283,13 +283,13 @@ CustomizeGasModal.prototype.render = function () { }, [t('revert')]), h('div.send-v2__customize-gas__buttons', [ - h('div.send-v2__customize-gas__cancel', { + h('div.send-v2__customize-gas__cancel.allcaps', { onClick: this.props.hideModal, - }, [t('cancelCaps')]), + }, [t('cancel')]), - h(`div.send-v2__customize-gas__save${error ? '__error' : ''}`, { + h(`div.send-v2__customize-gas__save${error ? '__error' : ''}.allcaps`, { onClick: () => !error && this.save(gasPrice, gasLimit, gasTotal), - }, [t('saveCaps')]), + }, [t('save')]), ]), ]), |