rudeshark.net/locales/index.ts

26 lines
472 B
TypeScript
Raw Normal View History

2017-05-16 17:00:56 +02:00
/**
* Languages Loader
*/
import * as fs from 'fs';
import * as yaml from 'js-yaml';
const loadLang = lang => yaml.safeLoad(
fs.readFileSync(`./locales/${lang}.yml`, 'utf-8'));
const native = loadLang('ja');
2017-12-16 20:02:30 +01:00
const langs = {
2018-04-14 22:57:30 +02:00
'en': loadLang('en'),
2018-04-15 22:59:21 +02:00
'fr': loadLang('fr'),
'ja': native,
'pl': loadLang('pl')
2017-12-16 20:02:30 +01:00
};
2017-05-16 17:00:56 +02:00
2017-12-16 20:02:30 +01:00
Object.entries(langs).map(([, locale]) => {
2017-05-16 17:00:56 +02:00
// Extend native language (Japanese)
locale = Object.assign({}, native, locale);
});
export default langs;