From 9ebf5074b696fa532234393187fd071785ec298d Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Tue, 6 Feb 2018 12:19:17 +0200 Subject: [PATCH] Bug 20141: Untranslatable string in transport cost matrix Make the "Disable" checkboxes in transport cost matrix translatable Test plan: 1) Go to Home -> Administration -> Transport cost matrix 2) Click on any cell 3) Note the "Disable" checkbox text 4) Install patch, add a language, translate the text, etc 5) Repeat 1-3, the "Disable" text should now be translated Signed-off-by: Pasi Kallinen Signed-off-by: Jonathan Druart Conflicts: koha-tmpl/intranet-tmpl/prog/en/modules/admin/transport-cost-matrix.tt --- .../prog/en/modules/admin/transport-cost-matrix.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/transport-cost-matrix.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/transport-cost-matrix.tt index 7c6ee3f9ef..c24ead1535 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/transport-cost-matrix.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/transport-cost-matrix.tt @@ -32,7 +32,7 @@ function enable_cost_input(cost_id) { $('#celldiv_'+cost_id).html( ''+ - '
Disable ' + '
' + _("Disable ") + '' ); disable_transport_cost(cost_id, disabled); } -- 2.39.5