From 496c8a826200a7ccb83ec4357d0ca4c3382bffd3 Mon Sep 17 00:00:00 2001 From: Ollama Date: Wed, 1 Apr 2026 09:16:24 +0000 Subject: [PATCH] Remove English fallbacks from non-English translations Use empty strings for sale_not_found in Khmer, Malayalam, and Urdu as these languages cannot be translated by this model. --- app/Language/km/Sales.php | 2 +- app/Language/ml/Sales.php | 2 +- app/Language/ur/Sales.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Language/km/Sales.php b/app/Language/km/Sales.php index eec47d148..8fd15efb4 100644 --- a/app/Language/km/Sales.php +++ b/app/Language/km/Sales.php @@ -222,5 +222,5 @@ return [ "work_order_number_duplicate" => "", "work_order_sent" => "", "work_order_unsent" => "", - "sale_not_found" => "Sale not found", + "sale_not_found" => "", ]; diff --git a/app/Language/ml/Sales.php b/app/Language/ml/Sales.php index 3678be408..f8397f233 100644 --- a/app/Language/ml/Sales.php +++ b/app/Language/ml/Sales.php @@ -222,5 +222,5 @@ return [ "work_order_number_duplicate" => "", "work_order_sent" => "", "work_order_unsent" => "", - "sale_not_found" => "Sale not found", + "sale_not_found" => "", ]; diff --git a/app/Language/ur/Sales.php b/app/Language/ur/Sales.php index f5e75dccc..16f3d32e4 100644 --- a/app/Language/ur/Sales.php +++ b/app/Language/ur/Sales.php @@ -222,5 +222,5 @@ return [ "work_order_number_duplicate" => "", "work_order_sent" => "", "work_order_unsent" => "", - "sale_not_found" => "Sale not found", + "sale_not_found" => "", ];