aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals/hide-token-confirmation-modal.js
diff options
context:
space:
mode:
authorFrankie <frankie.diamond@gmail.com>2018-03-14 06:23:46 +0800
committerGitHub <noreply@github.com>2018-03-14 06:23:46 +0800
commitc83a9ceb04a485149fe65fbb2b44f0adeda696b1 (patch)
treec655ef0d88734a55ade8451ffe5e3032582f3ed3 /ui/app/components/modals/hide-token-confirmation-modal.js
parentd7bf6e36b1f40068eec1d6c3d30207f3fae5cfde (diff)
parent578139be4a048d1709de5c2b4b8db0a8c631d31c (diff)
downloadtangerine-wallet-browser-c83a9ceb04a485149fe65fbb2b44f0adeda696b1.tar
tangerine-wallet-browser-c83a9ceb04a485149fe65fbb2b44f0adeda696b1.tar.gz
tangerine-wallet-browser-c83a9ceb04a485149fe65fbb2b44f0adeda696b1.tar.bz2
tangerine-wallet-browser-c83a9ceb04a485149fe65fbb2b44f0adeda696b1.tar.lz
tangerine-wallet-browser-c83a9ceb04a485149fe65fbb2b44f0adeda696b1.tar.xz
tangerine-wallet-browser-c83a9ceb04a485149fe65fbb2b44f0adeda696b1.tar.zst
tangerine-wallet-browser-c83a9ceb04a485149fe65fbb2b44f0adeda696b1.zip
Merge branch 'master' into i#3509
Diffstat (limited to 'ui/app/components/modals/hide-token-confirmation-modal.js')
-rw-r--r--ui/app/components/modals/hide-token-confirmation-modal.js13
1 files changed, 7 insertions, 6 deletions
diff --git a/ui/app/components/modals/hide-token-confirmation-modal.js b/ui/app/components/modals/hide-token-confirmation-modal.js
index 56c7ba299..33d8062c6 100644
--- a/ui/app/components/modals/hide-token-confirmation-modal.js
+++ b/ui/app/components/modals/hide-token-confirmation-modal.js
@@ -4,6 +4,7 @@ const inherits = require('util').inherits
const connect = require('react-redux').connect
const actions = require('../../actions')
const Identicon = require('../identicon')
+const t = require('../../../i18n')
function mapStateToProps (state) {
return {
@@ -41,7 +42,7 @@ HideTokenConfirmationModal.prototype.render = function () {
h('div.hide-token-confirmation__container', {
}, [
h('div.hide-token-confirmation__title', {}, [
- 'Hide Token?',
+ t('hideTokenPrompt'),
]),
h(Identicon, {
@@ -54,19 +55,19 @@ HideTokenConfirmationModal.prototype.render = function () {
h('div.hide-token-confirmation__symbol', {}, symbol),
h('div.hide-token-confirmation__copy', {}, [
- 'You can add this token back in the future by going go to “Add token” in your accounts options menu.',
+ t('readdToken'),
]),
h('div.hide-token-confirmation__buttons', {}, [
- h('button.btn-cancel.hide-token-confirmation__button', {
+ h('button.btn-cancel.hide-token-confirmation__button.allcaps', {
onClick: () => hideModal(),
}, [
- 'CANCEL',
+ t('cancel'),
]),
- h('button.btn-clear.hide-token-confirmation__button', {
+ h('button.btn-clear.hide-token-confirmation__button.allcaps', {
onClick: () => hideToken(address),
}, [
- 'HIDE',
+ t('hide'),
]),
]),
]),