Sharkey/locales/index.ts

26 lines
472 B
TypeScript
Raw Normal View History

2017-05-16 18:00:56 +03: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 21:02:30 +02:00
const langs = {
2018-04-14 23:57:30 +03:00
'en': loadLang('en'),
2018-04-15 23:59:21 +03:00
'fr': loadLang('fr'),
'ja': native,
2018-05-17 03:28:31 +03:00
'pl': loadLang('pl')
2017-12-16 21:02:30 +02:00
};
2017-05-16 18:00:56 +03:00
2017-12-16 21:02:30 +02:00
Object.entries(langs).map(([, locale]) => {
2017-05-16 18:00:56 +03:00
// Extend native language (Japanese)
locale = Object.assign({}, native, locale);
});
export default langs;