summaryrefslogtreecommitdiff
path: root/locales/index.js
blob: b1bc7821660bfc3bc1589f6964c3963fc95de5e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
 * Languages Loader
 */

const fs = require('fs');
const yaml = require('js-yaml');

const loadLang = lang => yaml.safeLoad(
	fs.readFileSync(`${__dirname}/${lang}.yml`, 'utf-8'));

const native = loadLang('ja-JP');

const langs = {
	'de-DE': loadLang('de-DE'),
	'en-US': loadLang('en-US'),
	'fr-FR': loadLang('fr-FR'),
	'ja-JP': native,
	'ja-KS': loadLang('ja-KS'),
	'pl-PL': loadLang('pl-PL'),
	'es-ES': loadLang('es-ES')
};

Object.values(langs).forEach(locale => {
	// Extend native language (Japanese)
	locale = Object.assign({}, native, locale);
});

module.exports = langs;