From 0b2d077bfce5ca97e388e120400f198a019219ae 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 db0f2068cb..f999b6ee3d 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.11.0