Merge branch 'develop' of https://github.com/syuilo/misskey into develop
This commit is contained in:
		
						commit
						29bd4de26a
					
				
					 1 changed files with 4 additions and 19 deletions
				
			
		| 
						 | 
					@ -5,24 +5,9 @@
 | 
				
			||||||
const fs = require('fs');
 | 
					const fs = require('fs');
 | 
				
			||||||
const yaml = require('js-yaml');
 | 
					const yaml = require('js-yaml');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const loadLang = lang => yaml.safeLoad(
 | 
					const langs = ['de-DE', 'en-US', 'fr-FR', 'ja-JP', 'ja-KS', 'pl-PL', 'es-ES'];
 | 
				
			||||||
	fs.readFileSync(`${__dirname}/${lang}.yml`, 'utf-8'));
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
const native = loadLang('ja-JP');
 | 
					const loadLocale = lang => yaml.safeLoad(fs.readFileSync(`${__dirname}/${lang}.yml`, 'utf-8'));
 | 
				
			||||||
 | 
					const locales = langs.map(lang => ({ [lang]: loadLocale(lang) }));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const langs = {
 | 
					module.exports = locales.reduce((a, b) => ({ ...a, ...b }));
 | 
				
			||||||
	'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;
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue