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 = [
|
||||
DEFAULT_LANG,
|
||||
'zh-CN',
|
||||
'eu-ES',
|
||||
'es-ES',
|
||||
'fi-FI',
|
||||
'gl-ES',
|
||||
'de-DE',
|
||||
'zh-CN', // Chinese (Simplified)
|
||||
'eu-ES', // Basque
|
||||
'es-ES', // Spanish
|
||||
'fi-FI', // Finnish
|
||||
'gl-ES', // Galician
|
||||
'de-DE', // German
|
||||
'ca-ES', // Catalan
|
||||
'fr-FR', // French
|
||||
'ko-KR', // Korean
|
||||
];
|
||||
if (import.meta.env.DEV) {
|
||||
locales.push('pseudo-LOCALE');
|
||||
|
|
Loading…
Reference in a new issue