From 5a877d4e7660ef4194b39e581e4f96d4083fce28 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 7 Nov 2025 23:00:36 +0000 Subject: [PATCH] fix: Repair broken JSON syntax in Basque reasoning.json translation file Error: Build failed with JSON parse error at position 171 File: frontend/src/locales/eu/reasoning.json line 3 The string value for 'low_stock_detection' had a line break in the middle: '...egunetan amaitu\n\nko da.' Fixed by joining into single line: '...egunetan amaituko da.' This was preventing the frontend from building. --- frontend/src/locales/eu/reasoning.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frontend/src/locales/eu/reasoning.json b/frontend/src/locales/eu/reasoning.json index 4f51c2cd..17a6dcb8 100644 --- a/frontend/src/locales/eu/reasoning.json +++ b/frontend/src/locales/eu/reasoning.json @@ -1,8 +1,6 @@ { "purchaseOrder": { - "low_stock_detection": "{{supplier_name}}-rentzat stock baxua. {{product_names_joined}}-ren egungo stocka {{days_until_stockout}} egunetan amaitu - -ko da.", + "low_stock_detection": "{{supplier_name}}-rentzat stock baxua. {{product_names_joined}}-ren egungo stocka {{days_until_stockout}} egunetan amaituko da.", "forecast_demand": "{{supplier_name}}-ren {{product_names_joined}}-rentzat {{forecast_period_days}} eguneko eskaera aurreikuspenean oinarritutako eskaera programatua.", "safety_stock_replenishment": "{{supplier_name}}-ren {{product_names_joined}}-rentzat segurtasun stockaren birjartzea.", "supplier_contract": "{{supplier_name}}-rekin kontratuaren arabera programatutako eskaera.",