mirror of
https://github.com/wassname/talk.git
synced 2026-07-01 05:59:50 +08:00
92 lines
2.3 KiB
JavaScript
92 lines
2.3 KiB
JavaScript
import ta from 'timeago.js';
|
|
import has from 'lodash/has';
|
|
import get from 'lodash/get';
|
|
import merge from 'lodash/merge';
|
|
|
|
import daTA from 'timeago.js/locales/da';
|
|
import esTA from 'timeago.js/locales/es';
|
|
import frTA from 'timeago.js/locales/fr';
|
|
import pt_BRTA from 'timeago.js/locales/pt_BR';
|
|
|
|
import en from '../../../locales/en.yml';
|
|
import da from '../../../locales/da.yml';
|
|
import es from '../../../locales/es.yml';
|
|
import fr from '../../../locales/fr.yml';
|
|
import pt_BR from '../../../locales/pt_BR.yml';
|
|
|
|
// Translations are happening at https://translate.lingohub.com/the-coral-project/dashboard
|
|
|
|
const defaultLanguage = process.env.TALK_DEFAULT_LANG;
|
|
const translations = {...en, ...da, ...es, ...fr, ...pt_BR};
|
|
|
|
let lang;
|
|
let timeagoInstance;
|
|
|
|
function setLocale(locale) {
|
|
try {
|
|
localStorage.setItem('locale', locale);
|
|
} catch (err) {
|
|
console.error(err);
|
|
}
|
|
}
|
|
|
|
function getLocale() {
|
|
return (localStorage.getItem('locale') || navigator.language || defaultLanguage).split('-')[0];
|
|
}
|
|
|
|
function init() {
|
|
const locale = getLocale();
|
|
setLocale(locale);
|
|
|
|
// Extract language key.
|
|
lang = locale.split('-')[0];
|
|
|
|
// Check if we have a translation in this language.
|
|
if (!(lang in translations)) {
|
|
lang = defaultLanguage;
|
|
}
|
|
|
|
ta.register('es', esTA);
|
|
ta.register('da', daTA);
|
|
ta.register('fr', frTA);
|
|
ta.register('pt_BR', pt_BRTA);
|
|
timeagoInstance = ta();
|
|
}
|
|
|
|
export function loadTranslations(newTranslations) {
|
|
merge(translations, newTranslations);
|
|
}
|
|
|
|
export function timeago(time) {
|
|
return timeagoInstance.format(new Date(time), lang);
|
|
}
|
|
|
|
/**
|
|
* Expose the translation function
|
|
*
|
|
* it takes a string with the translation key and returns
|
|
* the translation value or the key itself if not found
|
|
* it works with nested translations (my.page.title)
|
|
*
|
|
* any extra parameters are optional and replace a variable marked by {0}, {1}, etc in the translation.
|
|
*/
|
|
export function t(key, ...replacements) {
|
|
const fullKey = `${lang}.${key}`;
|
|
if (has(translations, fullKey)) {
|
|
let translation = get(translations, fullKey);
|
|
|
|
// replace any {n} with the arguments passed to this method
|
|
replacements.forEach((str, i) => {
|
|
translation = translation.replace(new RegExp(`\\{${i}\\}`, 'g'), str);
|
|
});
|
|
return translation;
|
|
} else {
|
|
console.warn(`${fullKey} language key not set`);
|
|
return key;
|
|
}
|
|
}
|
|
|
|
export default t;
|
|
|
|
init();
|