yumechi-no-kuni/locales/index.js

29 lines
585 B
JavaScript
Raw Normal View History

2018-07-05 22:17:38 -05:00
/**
* Languages Loader
*/
const fs = require('fs');
const yaml = require('js-yaml');
const loadLang = lang => yaml.safeLoad(
2018-07-11 00:19:55 -05:00
fs.readFileSync(`${__dirname}/${lang}.yml`, 'utf-8'));
2018-07-05 22:17:38 -05:00
2018-08-21 11:46:10 -05:00
const native = loadLang('ja-JP');
2018-07-05 22:17:38 -05:00
const langs = {
2018-08-22 11:37:05 -05:00
'de-DE': loadLang('de-DE'),
'en-US': loadLang('en-US'),
'fr-FR': loadLang('fr-FR'),
'ja-JP': native,
2018-08-21 11:52:13 -05:00
'ja-KS': loadLang('ja-KS'),
2018-08-22 11:37:05 -05:00
'pl-PL': loadLang('pl-PL'),
'es-ES': loadLang('es-ES')
2018-07-05 22:17:38 -05:00
};
2018-07-23 00:04:53 -05:00
Object.values(langs).forEach(locale => {
2018-07-05 22:17:38 -05:00
// Extend native language (Japanese)
2018-07-26 17:05:12 -05:00
locale = Object.assign({}, native, locale);
2018-07-05 22:17:38 -05:00
});
module.exports = langs;