1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-01 15:45:58 +09:00
cherrypick/locales/index.ts

24 lines
426 B
TypeScript
Raw Normal View History

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