1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 16:48:04 +02:00
onion/js/utils/lang.js
2016-06-14 17:57:59 +02:00

36 lines
1.3 KiB
JavaScript

import { getBrowserLang } from 'js-utility-belt/es6/lang';
import languages from '../constants/languages';
import { formatText } from './text';
/**
* Is used to translate strings to another language. Basically can be used with C's string format method.
* @param {string} s The string you want to translate
* @param {array} args An array of arguments (essentially JavaScript's this.arguments)
* that can be used to substitute digits and other strings
* @return {string} The formated string
*/
export function getLangText(s, ...args) {
const lang = getBrowserLang();
let str = s;
try {
// Default to english if the language isn't found
const language = languages[lang in languages ? lang : 'en-US'];
// Default to the original string if no match is found
str = language[s] || s;
} catch (err) {
// TODO: turn the warning back on when our localization is on point
if (false && process.env.NODE_ENV !== 'production') {
// eslint-disable-next-line no-console
console.warn(`Language-string is not in constants file. Add: "${s}" to the "${lang}"` +
'language file. Defaulting to keyname');
}
}
return formatText(str, ...args);
}