2018-03-16 01:29:45 +01:00
|
|
|
// cross-browser connection to extension i18n API
|
|
|
|
const log = require('loglevel')
|
|
|
|
|
|
|
|
const getMessage = (locale, key, substitutions) => {
|
|
|
|
// check locale is loaded
|
|
|
|
if (!locale) {
|
|
|
|
// throw new Error('Translator - has not loaded a locale yet.')
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
// check entry is present
|
2018-03-22 01:41:47 +01:00
|
|
|
const { current, en } = locale
|
|
|
|
const entry = current[key] || en[key]
|
2018-03-16 01:29:45 +01:00
|
|
|
if (!entry) {
|
|
|
|
log.error(`Translator - Unable to find value for "${key}"`)
|
2018-03-19 19:53:54 +01:00
|
|
|
// throw new Error(`Translator - Unable to find value for "${key}"`)
|
2018-03-16 01:29:45 +01:00
|
|
|
}
|
|
|
|
let phrase = entry.message
|
|
|
|
// perform substitutions
|
|
|
|
if (substitutions && substitutions.length) {
|
|
|
|
phrase = phrase.replace(/\$1/g, substitutions[0])
|
|
|
|
if (substitutions.length > 1) {
|
|
|
|
phrase = phrase.replace(/\$2/g, substitutions[1])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return phrase
|
|
|
|
}
|
|
|
|
|
2018-03-23 18:01:15 +01:00
|
|
|
function fetchLocale (localeName) {
|
|
|
|
return new Promise((resolve, reject) => {
|
2018-03-29 06:53:08 +02:00
|
|
|
return fetch(`./_locales/${localeName}/messages.json`)
|
2018-03-23 18:01:15 +01:00
|
|
|
.then(response => response.json())
|
|
|
|
.then(
|
|
|
|
locale => resolve(locale),
|
|
|
|
error => {
|
|
|
|
log.error(`failed to fetch ${localeName} locale because of ${error}`)
|
|
|
|
resolve({})
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
2018-03-16 01:29:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
getMessage,
|
|
|
|
fetchLocale,
|
|
|
|
}
|