2024-08-14 17:16:56 +08:00
|
|
|
export const DEFAULT_LANG = 'en';
|
|
|
|
|
2024-08-17 11:47:46 +08:00
|
|
|
const locales = [
|
|
|
|
DEFAULT_LANG,
|
2024-08-18 11:11:36 +08:00
|
|
|
'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
|
2024-08-17 11:47:46 +08:00
|
|
|
];
|
2024-08-14 17:16:56 +08:00
|
|
|
if (import.meta.env.DEV) {
|
|
|
|
locales.push('pseudo-LOCALE');
|
|
|
|
}
|
|
|
|
export const LOCALES = locales;
|