aboutsummaryrefslogtreecommitdiffstats
path: root/ui/i18n-helper.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/i18n-helper.js')
-rw-r--r--ui/i18n-helper.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/i18n-helper.js b/ui/i18n-helper.js
index 10147b0f6..70555f239 100644
--- a/ui/i18n-helper.js
+++ b/ui/i18n-helper.js
@@ -2,13 +2,15 @@
const log = require('loglevel')
const getMessage = (locale, key, substitutions) => {
+ console.log(`locale, key, substitutions`, locale, key, substitutions);
// check locale is loaded
if (!locale) {
// throw new Error('Translator - has not loaded a locale yet.')
return ''
}
// check entry is present
- const entry = locale[key]
+ const { current, en } = locale
+ const entry = current[key] || en[key]
if (!entry) {
log.error(`Translator - Unable to find value for "${key}"`)
// throw new Error(`Translator - Unable to find value for "${key}"`)