2023-07-24 17:22:14 -03:00
|
|
|
import English from './languages/Eng';
|
|
|
|
|
import Chinese from './languages/Zh';
|
2023-08-01 04:38:38 +02:00
|
|
|
import Italian from './languages/It';
|
2023-07-24 17:22:14 -03:00
|
|
|
import Portuguese from './languages/Br';
|
|
|
|
|
import Spanish from './languages/Es';
|
|
|
|
|
// === import additional language files here === //
|
|
|
|
|
|
|
|
|
|
// New method on String allow using "{\d}" placeholder for
|
|
|
|
|
// loading value dynamically.
|
|
|
|
|
interface String {
|
|
|
|
|
format(...replacements: string[]): string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!String.prototype.format) {
|
|
|
|
|
String.prototype.format = function () {
|
|
|
|
|
var args = arguments;
|
|
|
|
|
return this.replace(/{(\d+)}/g, function (match, number) {
|
|
|
|
|
return typeof args[number] != 'undefined' ? args[number] : match;
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// input: language code in string
|
|
|
|
|
// returns an object of translated strings in the language
|
|
|
|
|
export const getTranslations = (langCode: string) => {
|
|
|
|
|
if (langCode === 'en') {
|
|
|
|
|
return English;
|
|
|
|
|
}
|
|
|
|
|
if (langCode === 'cn') {
|
|
|
|
|
return Chinese;
|
|
|
|
|
}
|
|
|
|
|
if (langCode === 'it') {
|
2023-08-01 04:38:38 +02:00
|
|
|
return Italian;
|
2023-07-24 17:22:14 -03:00
|
|
|
}
|
2023-07-31 11:47:14 -04:00
|
|
|
if (langCode === 'br') {
|
2023-07-24 17:22:14 -03:00
|
|
|
return Portuguese;
|
|
|
|
|
}
|
2023-07-31 11:47:14 -04:00
|
|
|
if (langCode === 'es') {
|
2023-07-24 17:22:14 -03:00
|
|
|
return Spanish;
|
|
|
|
|
}
|
|
|
|
|
// === add conditionals here for additional languages here === //
|
|
|
|
|
return English; // default to English
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// input: language code in string & phrase key in string
|
|
|
|
|
// returns an corresponding phrase value in string
|
|
|
|
|
export const localize = (langCode: string, phraseKey: string, ...values: string[]) => {
|
|
|
|
|
const lang = getTranslations(langCode);
|
|
|
|
|
if (phraseKey in lang) {
|
|
|
|
|
return lang[phraseKey].format(...values);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (phraseKey in English) {
|
|
|
|
|
// Fall back logic to cover untranslated phrases
|
|
|
|
|
return English[phraseKey].format(...values);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// In case the key is not defined, return empty instead of throw errors.
|
|
|
|
|
return '';
|
2023-07-27 10:25:35 -04:00
|
|
|
};
|