fix dutch language selection

This commit is contained in:
zjean
2026-02-21 20:44:05 +00:00
parent ef15fe85cb
commit 1cf69d439d
3 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ let currentLocale =
// Supported locales (languages that have locale files on the server)
// When a locale file is not found, the system gracefully falls back to English
const supportedLocales = ['en', 'es', 'zh', 'fa', 'fr', 'de', 'pt'];
const supportedLocales = ['en', 'es', 'zh', 'fa', 'fr', 'de', 'pt', 'nl'];
// Fallback to English if locale is not supported
if (!supportedLocales.includes(currentLocale)) {
+1
View File
@@ -18,6 +18,7 @@ function getAvailableLanguages() {
{ code: 'de', name: 'Deutsch', flag: '🇩🇪' },
{ code: 'pt', name: 'Português', flag: '🇧🇷' },
{ code: 'it', name: 'Italiano', flag: '🇮🇹' }
{ code: 'nl', name: 'Nederlands', flag: '🇳🇱' }
];
}