@@ -, +, @@ are not translatable - 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." --- .../intranet-tmpl/prog/en/modules/offline_circ/list.tt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/offline_circ/list.tt +++ a/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 %] --