feat: display Guetzli category as "Biscuits" in English
All checks were successful
CI / update (push) Successful in 1m9s

Changed the English display name for the Guetzli category from "Cookie"
to "Biscuits" on the main recipes page.
This commit is contained in:
2026-01-02 18:52:17 +01:00
parent f22b8d86be
commit f6258ae518

View File

@@ -22,7 +22,7 @@
const isEnglish = $derived(data.lang === 'en');
const categories = $derived(isEnglish
? ["Main course", "Noodle", "Bread", "Dessert", "Soup", "Side dish", "Salad", "Cake", "Breakfast", "Sauce", "Ingredient", "Drink", "Spread", "Cookie", "Snack"]
? ["Main course", "Noodle", "Bread", "Dessert", "Soup", "Side dish", "Salad", "Cake", "Breakfast", "Sauce", "Ingredient", "Drink", "Spread", "Biscuits", "Snack"]
: ["Hauptspeise", "Nudel", "Brot", "Dessert", "Suppe", "Beilage", "Salat", "Kuchen", "Frühstück", "Sauce", "Zutat", "Getränk", "Aufstrich", "Guetzli", "Snack"]);
// Pre-compute category-to-recipes Map for O(1) lookups