mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-22 01:05:34 +03:00
Add new languages: Catalan, French, Korean
This commit is contained in:
parent
1fde4c6730
commit
0f41d46c52
1 changed files with 9 additions and 6 deletions
|
@ -2,12 +2,15 @@ export const DEFAULT_LANG = 'en';
|
||||||
|
|
||||||
const locales = [
|
const locales = [
|
||||||
DEFAULT_LANG,
|
DEFAULT_LANG,
|
||||||
'zh-CN',
|
'zh-CN', // Chinese (Simplified)
|
||||||
'eu-ES',
|
'eu-ES', // Basque
|
||||||
'es-ES',
|
'es-ES', // Spanish
|
||||||
'fi-FI',
|
'fi-FI', // Finnish
|
||||||
'gl-ES',
|
'gl-ES', // Galician
|
||||||
'de-DE',
|
'de-DE', // German
|
||||||
|
'ca-ES', // Catalan
|
||||||
|
'fr-FR', // French
|
||||||
|
'ko-KR', // Korean
|
||||||
];
|
];
|
||||||
if (import.meta.env.DEV) {
|
if (import.meta.env.DEV) {
|
||||||
locales.push('pseudo-LOCALE');
|
locales.push('pseudo-LOCALE');
|
||||||
|
|
Loading…
Reference in a new issue