3. Editing text & menus
All copy lives in one file: demo/translations.ts. It exports two objects:
UI— short interface strings (nav labels, section titles, form labels), each with an es and en version.MENUS— the tasting-menu dishes, grouped by language and then by tab (alborada / fisterra / bodega).
// demo/translations.ts
export const MENUS = {
es: {
alborada: {
price: "£125",
dishes: [
["Vieiras de la Isla de Skye", "Entrante", "Láminas finas..."],
// add or edit dishes here ↑
],
},
},
en: { /* same structure, English copy */ },
};Edit a dish in both the es and en blocks, or it will only show correctly in one language.