From 05761491bd4315111c9bece51668474bf1b8af0d 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 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 Signed-off-by: Owen Leonard --- 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 db0f206..f999b6e 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 @@ -43,9 +43,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