aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
authorWhymarrh Whitby <whymarrh.whitby@gmail.com>2018-07-13 02:16:09 +0800
committerGitHub <noreply@github.com>2018-07-13 02:16:09 +0800
commit47d596c090c434e564af157967d303753f8e65e3 (patch)
tree9da136fa9312d3b464eab77b8cefee5f6df00b96 /ui/app
parent55232d80d84dd85d276e906759bf1d8c0ad2399d (diff)
parent9bfcb9c505595cb2e539700433835f30c8bcf049 (diff)
downloadtangerine-wallet-browser-47d596c090c434e564af157967d303753f8e65e3.tar.gz
tangerine-wallet-browser-47d596c090c434e564af157967d303753f8e65e3.tar.zst
tangerine-wallet-browser-47d596c090c434e564af157967d303753f8e65e3.zip
Merge pull request #4766 from whymarrh/null-translations
Rework i18n-helper getMessage function
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/components/pages/home.js2
-rw-r--r--ui/app/i18n-provider.js5
-rw-r--r--ui/app/metamask-connect.js27
3 files changed, 5 insertions, 29 deletions
diff --git a/ui/app/components/pages/home.js b/ui/app/components/pages/home.js
index 86bd32c8a..38aa02dae 100644
--- a/ui/app/components/pages/home.js
+++ b/ui/app/components/pages/home.js
@@ -1,6 +1,6 @@
const { Component } = require('react')
+const { connect } = require('react-redux')
const PropTypes = require('prop-types')
-const connect = require('../../metamask-connect')
const { Redirect, withRouter } = require('react-router-dom')
const { compose } = require('recompose')
const h = require('react-hyperscript')
diff --git a/ui/app/i18n-provider.js b/ui/app/i18n-provider.js
index 2856e0ed6..d46911f7c 100644
--- a/ui/app/i18n-provider.js
+++ b/ui/app/i18n-provider.js
@@ -8,8 +8,11 @@ const t = require('../i18n-helper').getMessage
class I18nProvider extends Component {
getChildContext () {
const { localeMessages } = this.props
+ const { current, en } = localeMessages
return {
- t: t.bind(null, localeMessages),
+ t (key, ...args) {
+ return t(current, key, ...args) || t(en, key, ...args) || `[${key}]`
+ },
}
}
diff --git a/ui/app/metamask-connect.js b/ui/app/metamask-connect.js
deleted file mode 100644
index 81fa7e403..000000000
--- a/ui/app/metamask-connect.js
+++ /dev/null
@@ -1,27 +0,0 @@
-const connect = require('react-redux').connect
-const t = require('../i18n-helper').getMessage
-
-const metamaskConnect = (mapStateToProps, mapDispatchToProps) => {
- return connect(
- _higherOrderMapStateToProps(mapStateToProps),
- mapDispatchToProps
- )
-}
-
-const _higherOrderMapStateToProps = (mapStateToProps) => {
- let _t
- let currentLocale
- return (state, ownProps = {}) => {
- const stateProps = mapStateToProps
- ? mapStateToProps(state, ownProps)
- : ownProps
- if (currentLocale !== state.metamask.currentLocale) {
- currentLocale = state.metamask.currentLocale
- _t = t.bind(null, state.localeMessages)
- }
- stateProps.t = _t
- return stateProps
- }
-}
-
-module.exports = metamaskConnect