add bilingual labels to recipe components and fix language switcher

- Translate hardcoded German terms in IngredientsPage and InstructionsPage
- Migrate both components to Svelte 5 runes (, , )
- Fix language switcher to use correct short names via shared store
- Add recipeTranslationStore for recipe-specific language switching
This commit is contained in:
2025-12-26 21:35:59 +01:00
parent 6de3d76504
commit 442b2a3145
5 changed files with 82 additions and 22 deletions

View File

@@ -2,6 +2,8 @@
import { onMount } from "svelte";
import { goto } from '$app/navigation';
import { page } from '$app/stores';
import { recipeTranslationStore } from '$lib/stores/recipeTranslation';
let { user, showLanguageSelector = false } = $props();
let currentLang = $state('de');
@@ -42,7 +44,19 @@
// Get the current path directly from window
const path = typeof window !== 'undefined' ? window.location.pathname : currentPath;
// Convert current path to target language
// If we have recipe translation data from store, use the correct short names
const recipeData = $recipeTranslationStore;
if (recipeData) {
if (lang === 'en' && recipeData.englishShortName) {
goto(`/recipes/${recipeData.englishShortName}`);
return;
} else if (lang === 'de' && recipeData.germanShortName) {
goto(`/rezepte/${recipeData.germanShortName}`);
return;
}
}
// Convert current path to target language (for non-recipe pages)
let newPath = path;
if (lang === 'en' && path.startsWith('/rezepte')) {
newPath = path.replace('/rezepte', '/recipes');