diff options
author | Nick Doiron <ndoiron@mapmeld.com> | 2018-01-23 17:48:03 +0800 |
---|---|---|
committer | Nick Doiron <ndoiron@mapmeld.com> | 2018-01-23 17:48:03 +0800 |
commit | bad70eb1b328aa911a2523ccab642d7607161b4b (patch) | |
tree | d99970c6f35333563ee0a4a390055aa73e93ea21 /ui/app/components/buy-button-subview.js | |
parent | 338ebe5f402ff50dc8d1a91b7b69cd8e262cc789 (diff) | |
download | tangerine-wallet-browser-bad70eb1b328aa911a2523ccab642d7607161b4b.tar tangerine-wallet-browser-bad70eb1b328aa911a2523ccab642d7607161b4b.tar.gz tangerine-wallet-browser-bad70eb1b328aa911a2523ccab642d7607161b4b.tar.bz2 tangerine-wallet-browser-bad70eb1b328aa911a2523ccab642d7607161b4b.tar.lz tangerine-wallet-browser-bad70eb1b328aa911a2523ccab642d7607161b4b.tar.xz tangerine-wallet-browser-bad70eb1b328aa911a2523ccab642d7607161b4b.tar.zst tangerine-wallet-browser-bad70eb1b328aa911a2523ccab642d7607161b4b.zip |
first steps to i18n
Diffstat (limited to 'ui/app/components/buy-button-subview.js')
-rw-r--r-- | ui/app/components/buy-button-subview.js | 8 |
1 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 d5958787b..76da4fc9d 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', }, - }, 'Deposit Eth'), + }, t('depositEth')), ]), // loading indication @@ -118,7 +118,7 @@ BuyButtonSubview.prototype.headerSubview = function () { paddingTop: '4px', paddingBottom: '4px', }, - }, 'Select Service'), + }, t('selectService')), ]), ]) @@ -164,14 +164,14 @@ BuyButtonSubview.prototype.primarySubview = function () { style: { marginTop: '15px', }, - }, 'Borrow With Dharma (Beta)') + }, t('borrowDharma')) ) : null, ]) ) default: return ( - h('h2.error', 'Unknown network ID') + h('h2.error', t('unknownNetworkId')) ) } |