From 1f64c74a8ef235d4a7b83ad1bf6c93cffc2a5b11 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 29 Dec 2014 11:12:13 +0100 Subject: [PATCH] [PASSED QA] Bug 12944: Fix regression on translating This patch fixes the translation for the "Remove" button. Signed-off-by: Jonathan Druart Signed-off-by: Katrin Fischer Tested: - acq history search with different searches - patron lists patron search Passes all tests and QA script. --- koha-tmpl/intranet-tmpl/js/autocomplete/patrons.js | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tt | 1 + koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/js/autocomplete/patrons.js b/koha-tmpl/intranet-tmpl/js/autocomplete/patrons.js index fa041b0..909162b 100644 --- a/koha-tmpl/intranet-tmpl/js/autocomplete/patrons.js +++ b/koha-tmpl/intranet-tmpl/js/autocomplete/patrons.js @@ -33,7 +33,7 @@ function patron_autocomplete(params) { } function AddPatron( patron_name, value, container, input_name ) { - div = "
" + patron_name + " ( " + _("Remove") + " )
"; + div = "
" + patron_name + " ( " + MSG_REMOVE_PATRON + " )
"; $(container).append( div ); $(container).parent().show( 800 ); diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tt index 4266530..ebb9f74 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tt @@ -9,6 +9,7 @@