FoundKey/locales/index.ts

24 lines
426 B
TypeScript
Raw Normal View History

2017-05-16 15:00:56 +00: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 19:02:30 +00:00
const langs = {
2018-02-22 19:30:42 +00:00
'en': loadLang('en'),
2017-05-16 15:00:56 +00:00
'ja': native
2017-12-16 19:02:30 +00:00
};
2017-05-16 15:00:56 +00:00
2017-12-16 19:02:30 +00:00
Object.entries(langs).map(([, locale]) => {
2017-05-16 15:00:56 +00:00
// Extend native language (Japanese)
locale = Object.assign({}, native, locale);
});
export default langs;