From 0ef6ca469803bb6cf99e8f2ead87b8de355584d0 Mon Sep 17 00:00:00 2001 From: Alexander Bocken Date: Sat, 27 Dec 2025 10:16:37 +0100 Subject: [PATCH] shorten English header labels to match German compact style Update English navigation labels for consistency: - "In Season" to "Season" (matches "Saison") - "Keywords" to "Tags" (same in both languages) --- src/routes/[recipeLang=recipeLang]/+layout.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/[recipeLang=recipeLang]/+layout.svelte b/src/routes/[recipeLang=recipeLang]/+layout.svelte index 73923d6..d3725f3 100644 --- a/src/routes/[recipeLang=recipeLang]/+layout.svelte +++ b/src/routes/[recipeLang=recipeLang]/+layout.svelte @@ -11,10 +11,10 @@ const isEnglish = $derived(data.lang === 'en'); const labels = $derived({ allRecipes: isEnglish ? 'All Recipes' : 'Alle Rezepte', favorites: isEnglish ? 'Favorites' : 'Favoriten', - inSeason: isEnglish ? 'In Season' : 'Saison', + inSeason: isEnglish ? 'Season' : 'Saison', category: isEnglish ? 'Category' : 'Kategorie', icon: 'Icon', - keywords: isEnglish ? 'Keywords' : 'Tags' + keywords: 'Tags' }); function isActive(path) {