Not fallback to native locale

This commit is contained in:
Aya Morisawa 2018-09-01 16:12:50 +09:00
parent 21da6bd047
commit 2c135fa2f6
No known key found for this signature in database
GPG key ID: 3E64865D70D579F2

View file

@ -6,12 +6,8 @@ const fs = require('fs');
const yaml = require('js-yaml');
const langs = ['de-DE', 'en-US', 'fr-FR', 'ja-JP', 'ja-KS', 'pl-PL', 'es-ES'];
const nativeLang = 'ja-JP';
const loadLocale = lang => yaml.safeLoad(fs.readFileSync(`${__dirname}/${lang}.yml`, 'utf-8'));
const nativeLocale = loadLocale(nativeLang);
const fallbackToNativeLocale = locale => Object.assign({}, nativeLocale, locale);
const makeLocale = lang => lang == nativeLang ? nativeLocale : fallbackToNativeLocale(loadLocale(lang));
const locales = langs.map(lang => ({ [lang]: makeLocale(lang) }));
const locales = langs.map(lang => ({ [lang]: loadLocale(lang) }));
module.exports = locales.reduce((a, b) => ({ ...a, ...b }));