From d66af34bebdd5b82db08fdefe3749b755f994b94 Mon Sep 17 00:00:00 2001 From: roswitina Date: Wed, 11 Feb 2026 08:56:01 +0100 Subject: [PATCH] feat(i18n): add Deutsch(de) to language list --- static/js/auth.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/static/js/auth.js b/static/js/auth.js index 184f932e..f97d5d4c 100644 --- a/static/js/auth.js +++ b/static/js/auth.js @@ -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'; -} \ No newline at end of file +}