diff --git a/apps/questions/apps/web/src/routes/(auth)/forgot-password/+page.svelte b/apps/questions/apps/web/src/routes/(auth)/forgot-password/+page.svelte index 189c0a2e4..35d484f8b 100644 --- a/apps/questions/apps/web/src/routes/(auth)/forgot-password/+page.svelte +++ b/apps/questions/apps/web/src/routes/(auth)/forgot-password/+page.svelte @@ -8,7 +8,7 @@ import '$lib/i18n'; // Get translations based on current locale - const translations = $derived(getForgotPasswordTranslations($locale || 'en')); + const translations = $derived(getForgotPasswordTranslations($locale || 'de')); async function handleForgotPassword(email: string) { return authStore.resetPassword(email); diff --git a/apps/questions/apps/web/src/routes/(auth)/login/+page.svelte b/apps/questions/apps/web/src/routes/(auth)/login/+page.svelte index 1fac51690..75c7a72f4 100644 --- a/apps/questions/apps/web/src/routes/(auth)/login/+page.svelte +++ b/apps/questions/apps/web/src/routes/(auth)/login/+page.svelte @@ -27,7 +27,7 @@ }); // Get translations based on current locale - const translations = $derived(getLoginTranslations($locale || 'en')); + const translations = $derived(getLoginTranslations($locale || 'de')); // Read verification status from query params const verified = $derived($page.url.searchParams.get('verified') === 'true'); diff --git a/apps/questions/apps/web/src/routes/(auth)/register/+page.svelte b/apps/questions/apps/web/src/routes/(auth)/register/+page.svelte index 5895b1e06..11d61100a 100644 --- a/apps/questions/apps/web/src/routes/(auth)/register/+page.svelte +++ b/apps/questions/apps/web/src/routes/(auth)/register/+page.svelte @@ -21,7 +21,7 @@ }); // Get translations based on current locale - const translations = $derived(getRegisterTranslations($locale || 'en')); + const translations = $derived(getRegisterTranslations($locale || 'de')); async function handleSignUp(email: string, password: string) { return authStore.signUp(email, password);