From 28dea45cc36787d6dcbb9bc9aa37a1a88abee68b Mon Sep 17 00:00:00 2001 From: Marcel Date: Fri, 20 Mar 2026 12:33:55 +0100 Subject: [PATCH] fix(i18n): remove trailing comma from all three message files Standard JSON does not allow trailing commas. The comma after the last key in de/en/es.json caused paraglide to fail compilation, which meant messages.js was never generated and all component tests crashed on import. Co-Authored-By: Claude Sonnet 4.6 --- frontend/messages/de.json | 2 +- frontend/messages/en.json | 2 +- frontend/messages/es.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/messages/de.json b/frontend/messages/de.json index a9182b44..1c2d4843 100644 --- a/frontend/messages/de.json +++ b/frontend/messages/de.json @@ -188,5 +188,5 @@ "comp_taginput_placeholder_create": "Schlagworte hinzufügen...", "comp_taginput_placeholder_filter": "Nach Schlagworten filtern...", "comp_taginput_remove": "Schlagwort entfernen", - "comp_taginput_create_hint": "Enter drücken um Schlagwort zu erstellen.", + "comp_taginput_create_hint": "Enter drücken um Schlagwort zu erstellen." } diff --git a/frontend/messages/en.json b/frontend/messages/en.json index 011a6361..1a340e11 100644 --- a/frontend/messages/en.json +++ b/frontend/messages/en.json @@ -188,5 +188,5 @@ "comp_taginput_placeholder_create": "Add tags...", "comp_taginput_placeholder_filter": "Filter by tags...", "comp_taginput_remove": "Remove tag", - "comp_taginput_create_hint": "Press Enter to create tag.", + "comp_taginput_create_hint": "Press Enter to create tag." } diff --git a/frontend/messages/es.json b/frontend/messages/es.json index cd813d8b..2ca24a72 100644 --- a/frontend/messages/es.json +++ b/frontend/messages/es.json @@ -188,5 +188,5 @@ "comp_taginput_placeholder_create": "Añadir etiquetas...", "comp_taginput_placeholder_filter": "Filtrar por etiquetas...", "comp_taginput_remove": "Eliminar etiqueta", - "comp_taginput_create_hint": "Pulse Enter para crear etiqueta.", + "comp_taginput_create_hint": "Pulse Enter para crear etiqueta." }