misskey/locales/index.js

29 lines
549 B
JavaScript
Raw Normal View History

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