1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/helpers/utils/i18n-helper.js

53 lines
1.5 KiB
JavaScript
Raw Normal View History

2018-03-16 01:29:45 +01:00
// cross-browser connection to extension i18n API
const log = require('loglevel')
const warned = {}
/**
* Returns a localized message for the given key
* @param {string} localeCode The code for the current locale
* @param {object} localeMessages The map of messages for the current locale
* @param {string} key The message key
* @param {string[]} substitutions A list of message substitution replacements
* @return {null|string} The localized message
*/
const getMessage = (localeCode, localeMessages, key, substitutions) => {
if (!localeMessages) {
return null
2018-03-16 01:29:45 +01:00
}
if (!localeMessages[key]) {
if (!warned[localeCode] || !warned[localeCode][key]) {
if (!warned[localeCode]) {
warned[localeCode] = {}
}
warned[localeCode][key] = true
log.warn(`Translator - Unable to find value of key "${key}" for locale "${localeCode}"`)
}
return null
2018-03-16 01:29:45 +01:00
}
const entry = localeMessages[key]
2018-03-16 01:29:45 +01:00
let phrase = entry.message
// perform substitutions
if (substitutions && substitutions.length) {
substitutions.forEach((substitution, index) => {
const regex = new RegExp(`\\$${index + 1}`, 'g')
phrase = phrase.replace(regex, substitution)
})
2018-03-16 01:29:45 +01:00
}
return phrase
}
async function fetchLocale (localeCode) {
try {
const response = await fetch(`./_locales/${localeCode}/messages.json`)
return await response.json()
} catch (error) {
log.error(`failed to fetch ${localeCode} locale because of ${error}`)
return {}
}
2018-03-16 01:29:45 +01:00
}
module.exports = {
getMessage,
fetchLocale,
}