feat(i18n): add Deutsch(de) to language list

This commit is contained in:
roswitina
2026-02-11 08:56:01 +01:00
committed by GitHub
parent ccd071911d
commit d66af34beb
+10 -1
View File
@@ -56,6 +56,15 @@ const LANGUAGE_TEXTS = {
modalTitle: 'انتخاب زبان',
searchPlaceholder: 'جستجوی زبان...'
}
de: {
title: 'Willkommen bei OxiCloud',
subtitle: 'Bitte wählen Sie Ihre Sprache',
continue: 'Fortfahren',
autodetected: 'Wir haben Ihre Sprache automatisch erkannt',
moreLanguages: 'Weitere Sprachen...',
modalTitle: 'Sprache auswählen',
searchPlaceholder: 'Sprache suchen...'
}
};
// Complete language registry — add new languages here, they'll appear automatically
@@ -1167,4 +1176,4 @@ function logout() {
localStorage.removeItem(TOKEN_EXPIRY_KEY);
localStorage.removeItem(USER_DATA_KEY);
window.location.href = '/login.html';
}
}