jormungandr-bite/locales/index.js

29 lines
552 B
JavaScript
Raw Normal View History

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