diff options
author | 03-26 <37808790+03-26@users.noreply.github.com> | 2018-06-07 02:38:57 +0800 |
---|---|---|
committer | kumavis <kumavis@users.noreply.github.com> | 2018-06-07 02:38:57 +0800 |
commit | ccd4884db112a5440e7f482f644e6729e638dc49 (patch) | |
tree | 682f8b5398451dc680c5414f09ed5e28948113ec /ui/app/components/pages/settings | |
parent | 00f24339524850f7aa3a587914a9d33a10ccc539 (diff) | |
download | tangerine-wallet-browser-ccd4884db112a5440e7f482f644e6729e638dc49.tar tangerine-wallet-browser-ccd4884db112a5440e7f482f644e6729e638dc49.tar.gz tangerine-wallet-browser-ccd4884db112a5440e7f482f644e6729e638dc49.tar.bz2 tangerine-wallet-browser-ccd4884db112a5440e7f482f644e6729e638dc49.tar.lz tangerine-wallet-browser-ccd4884db112a5440e7f482f644e6729e638dc49.tar.xz tangerine-wallet-browser-ccd4884db112a5440e7f482f644e6729e638dc49.tar.zst tangerine-wallet-browser-ccd4884db112a5440e7f482f644e6729e638dc49.zip |
i18n - ja improvements
Diffstat (limited to 'ui/app/components/pages/settings')
-rw-r--r-- | ui/app/components/pages/settings/index.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ui/app/components/pages/settings/index.js b/ui/app/components/pages/settings/index.js index 384ae4b41..aee17e0e8 100644 --- a/ui/app/components/pages/settings/index.js +++ b/ui/app/components/pages/settings/index.js @@ -14,8 +14,8 @@ class Config extends Component { return h('div.settings__tabs', [ h(TabBar, { tabs: [ - { content: 'Settings', key: SETTINGS_ROUTE }, - { content: 'Info', key: INFO_ROUTE }, + { content: this.context.t('settings'), key: SETTINGS_ROUTE }, + { content: this.context.t('info'), key: INFO_ROUTE }, ], isActive: key => matchPath(location.pathname, { path: key, exact: true }), onSelect: key => history.push(key), @@ -54,6 +54,11 @@ class Config extends Component { Config.propTypes = { location: PropTypes.object, history: PropTypes.object, + t: PropTypes.func, +} + +Config.contextTypes = { + t: PropTypes.func, } module.exports = Config |