1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-01 07:35:57 +09:00
cherrypick/locales/index.js

14 lines
421 B
JavaScript
Raw Normal View History

2018-07-06 12:17:38 +09:00
/**
* Languages Loader
*/
const fs = require('fs');
const yaml = require('js-yaml');
2018-11-29 20:38:19 +09:00
const langs = ['de-DE', 'en-US', 'fr-FR', 'ja-JP', 'ja-KS', 'pl-PL', 'es-ES', 'nl-NL', 'zh-CN', 'ko-KR'];
2018-07-06 12:17:38 +09:00
2018-09-01 16:05:10 +09:00
const loadLocale = lang => yaml.safeLoad(fs.readFileSync(`${__dirname}/${lang}.yml`, 'utf-8'));
2018-09-01 16:12:50 +09:00
const locales = langs.map(lang => ({ [lang]: loadLocale(lang) }));
2018-07-06 12:17:38 +09:00
2018-09-01 16:05:10 +09:00
module.exports = locales.reduce((a, b) => ({ ...a, ...b }));