From 1d05864971b6ae2d478f7c3ff527c858348c63cf Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 26 May 2016 12:29:38 -0400 Subject: [PATCH] Bug 15676 - Actions in pending offline circulation actions are not translatable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch modifies the offline circulation transaction processing page so that English strings describing actions are processed in the template rather than being output directly from the script. To test, apply the patch and create an offline circulation file containing at least one checkout, one check-in, and one payment. - Upload the file and choose 'Add to offline circulation queue.' - View pending offline circulation actions - In the list of pending actions, the actions column should show "Check out" instead of "issue," "Check in" instead of "return," and "Payment" instead of "payment." Strings appear as expected. Signed-off-by: Marc VĂ©ron --- .../intranet-tmpl/prog/en/modules/offline_circ/list.tt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt index 033c61b..2500456 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt @@ -86,7 +86,18 @@ [% operation.timestamp %] - [% operation.action %] + + [% SWITCH ( operation.action ) -%] + [% CASE "issue" -%] + Check out + [% CASE "return" -%] + Check in + [% CASE "payment" -%] + Payment + [% CASE # default case -%] + [% operation.action %] + [% END -%] + [% IF ( biblionumber ) %] [% operation.barcode %] -- 1.7.10.4