aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/accounts/import/index.js
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2018-03-21 03:40:16 +0800
committerGitHub <noreply@github.com>2018-03-21 03:40:16 +0800
commitfd3e240dd934c0938a57344a6ae09a213aaa8e37 (patch)
tree78be594fe96a2ed2d1adc814049487433543dd0c /ui/app/accounts/import/index.js
parent3ee6cad87b44949f80f5c01d9f89dd69a6e9f767 (diff)
parentdd19a934475cfa8cc31495b351b69a7d8d1f8d5e (diff)
downloadtangerine-wallet-browser-fd3e240dd934c0938a57344a6ae09a213aaa8e37.tar.gz
tangerine-wallet-browser-fd3e240dd934c0938a57344a6ae09a213aaa8e37.tar.zst
tangerine-wallet-browser-fd3e240dd934c0938a57344a6ae09a213aaa8e37.zip
Merge pull request #3635 from MetaMask/i3571-CompleteI18nTemplates
I3571 complete i18n templates
Diffstat (limited to 'ui/app/accounts/import/index.js')
-rw-r--r--ui/app/accounts/import/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/accounts/import/index.js b/ui/app/accounts/import/index.js
index c1b190e3d..fc9031a65 100644
--- a/ui/app/accounts/import/index.js
+++ b/ui/app/accounts/import/index.js
@@ -37,7 +37,7 @@ AccountImportSubview.prototype.render = function () {
h('div.new-account-import-form', [
h('.new-account-import-disclaimer', [
- h('span', 'Imported accounts will not be associated with your originally created MetaMask account seedphrase. Learn more about imported accounts '),
+ h('span', t('importAccountMsg')),
h('span', {
style: {
cursor: 'pointer',
@@ -48,12 +48,12 @@ AccountImportSubview.prototype.render = function () {
url: 'https://metamask.helpscoutdocs.com/article/17-what-are-loose-accounts',
})
},
- }, 'here'),
+ }, t('here')),
]),
h('div.new-account-import-form__select-section', [
- h('div.new-account-import-form__select-label', 'Select Type'),
+ h('div.new-account-import-form__select-label', t('selectType')),
h(Select, {
className: 'new-account-import-form__select',