@limetech/lime-elements
Version:
36 lines (35 loc) • 870 B
JavaScript
import da from '../translations/da';
import de from '../translations/de';
import en from '../translations/en';
import fi from '../translations/fi';
import fr from '../translations/fr';
import nl from '../translations/nl';
import no from '../translations/no';
import sv from '../translations/sv';
const allTranslations = {
da: da,
de: de,
en: en,
fi: fi,
fr: fr,
no: no,
nl: nl,
sv: sv,
};
const REGEX = /\{\s*(\w+)\s*\}/g;
export class Translations {
get(key, language = 'en', params) {
const translation = allTranslations[language][key];
if (!translation) {
return key;
}
return translation.replaceAll(REGEX, (match, mergeCodeKey) => {
return params[mergeCodeKey] || match;
});
}
}
const translations = new Translations();
export default (() => {
return translations;
})();
//# sourceMappingURL=translations.js.map