diff options
author | Chi Kei Chan <chikeichan@gmail.com> | 2017-10-24 02:48:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-24 02:48:49 +0800 |
commit | 8de0292d662e2de04f9cd3faf024631fc090c203 (patch) | |
tree | 60fc7986d82e6b09b05659b4bdae0dff8879bb8d /ui | |
parent | 4d968fba1e32ca1ae215fea4a97aae5412a5b8f7 (diff) | |
parent | bef1405a50af219dc02108d7f437654690aec73e (diff) | |
download | tangerine-wallet-browser-8de0292d662e2de04f9cd3faf024631fc090c203.tar tangerine-wallet-browser-8de0292d662e2de04f9cd3faf024631fc090c203.tar.gz tangerine-wallet-browser-8de0292d662e2de04f9cd3faf024631fc090c203.tar.bz2 tangerine-wallet-browser-8de0292d662e2de04f9cd3faf024631fc090c203.tar.lz tangerine-wallet-browser-8de0292d662e2de04f9cd3faf024631fc090c203.tar.xz tangerine-wallet-browser-8de0292d662e2de04f9cd3faf024631fc090c203.tar.zst tangerine-wallet-browser-8de0292d662e2de04f9cd3faf024631fc090c203.zip |
Merge pull request #2431 from alextsg/nu-2406
[NewUI] Change all "Buy" to "Deposit"
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/buy-button-subview.js | 2 | ||||
-rw-r--r-- | ui/app/components/modals/buy-options-modal.js | 4 | ||||
-rw-r--r-- | ui/app/components/tx-view.js | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/components/buy-button-subview.js b/ui/app/components/buy-button-subview.js index a36f41df5..d5958787b 100644 --- a/ui/app/components/buy-button-subview.js +++ b/ui/app/components/buy-button-subview.js @@ -76,7 +76,7 @@ BuyButtonSubview.prototype.headerSubview = function () { paddingTop: '4px', paddingBottom: '4px', }, - }, 'Buy Eth'), + }, 'Deposit Eth'), ]), // loading indication diff --git a/ui/app/components/modals/buy-options-modal.js b/ui/app/components/modals/buy-options-modal.js index f1a5aa9fd..33615c483 100644 --- a/ui/app/components/modals/buy-options-modal.js +++ b/ui/app/components/modals/buy-options-modal.js @@ -42,7 +42,7 @@ BuyOptions.prototype.render = function () { h('div.buy-modal-content-title', { style: {}, }, 'Transfers'), - h('div', {}, 'How would you like to buy Ether?'), + h('div', {}, 'How would you like to deposit Ether?'), ]), h('div.buy-modal-content-options.flex-column.flex-center', {}, [ @@ -54,7 +54,7 @@ BuyOptions.prototype.render = function () { }, }, [ h('div.buy-modal-content-option-title', {}, 'Coinbase'), - h('div.buy-modal-content-option-subtitle', {}, 'Buy with Fiat'), + h('div.buy-modal-content-option-subtitle', {}, 'Deposit with Fiat'), ]), // h('div.buy-modal-content-option', {}, [ diff --git a/ui/app/components/tx-view.js b/ui/app/components/tx-view.js index 59f55d485..d903998c0 100644 --- a/ui/app/components/tx-view.js +++ b/ui/app/components/tx-view.js @@ -73,7 +73,7 @@ TxView.prototype.renderButtons = function () { onClick: () => showModal({ name: 'BUY', }), - }, 'BUY'), + }, 'DEPOSIT'), h('button.btn-clear', { style: { |