From a7cbe495d109669c88f21bba3759ec726a93ca9b Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Wed, 28 Mar 2018 15:08:22 +0200 Subject: [PATCH] Bug 20469: (Follow-up) Make translation of status possible Content-Type: text/plain; charset=utf-8 As Mark noticed, adding a span for each status will allow for translation. Note that the menu options in the block before are inside html tags like .... and will be translated (as long as spaces match). Signed-off-by: Marcel de Rooy --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/article-requests.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/article-requests.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/article-requests.tt index 2a779bd..2f50dd4 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/article-requests.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/article-requests.tt @@ -41,9 +41,9 @@ [% END %] [% BLOCK item_status %][%# pass Koha::Item into myitem %] - [% IF myitem.onloan %]Checked out - [% ELSIF myitem.is_waiting_or_transit %]On hold - [% ELSE %]Available + [% IF myitem.onloan %]Checked out + [% ELSIF myitem.is_waiting_or_transit %]On hold + [% ELSE %]Available [% END %] [% END %] -- 2.1.4