mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 09:57:29 -07:00
Not fallback to native locale
This commit is contained in:
parent
7dd8def711
commit
617eba1c8c
1 changed files with 1 additions and 5 deletions
|
@ -6,12 +6,8 @@ const fs = require('fs');
|
||||||
const yaml = require('js-yaml');
|
const yaml = require('js-yaml');
|
||||||
|
|
||||||
const langs = ['de-DE', 'en-US', 'fr-FR', 'ja-JP', 'ja-KS', 'pl-PL', 'es-ES'];
|
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 loadLocale = lang => yaml.safeLoad(fs.readFileSync(`${__dirname}/${lang}.yml`, 'utf-8'));
|
||||||
const nativeLocale = loadLocale(nativeLang);
|
const locales = langs.map(lang => ({ [lang]: loadLocale(lang) }));
|
||||||
const fallbackToNativeLocale = locale => Object.assign({}, nativeLocale, locale);
|
|
||||||
const makeLocale = lang => lang == nativeLang ? nativeLocale : fallbackToNativeLocale(loadLocale(lang));
|
|
||||||
const locales = langs.map(lang => ({ [lang]: makeLocale(lang) }));
|
|
||||||
|
|
||||||
module.exports = locales.reduce((a, b) => ({ ...a, ...b }));
|
module.exports = locales.reduce((a, b) => ({ ...a, ...b }));
|
||||||
|
|
Loading…
Reference in a new issue