FoundKey/locales/index.js

29 lines
585 B
JavaScript
Raw Normal View History

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