From 333cc2b04918fb7fb092312a7eba9ead34536126 Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Thu, 2 Jul 2015 10:37:22 +0200 Subject: [PATCH] Bug 14485 - HTML comment disables translation in cataloguing/addbooks.tt In cataloguing/addbooks.tt, the line : [% total %] result(s) found in catalog, is not present in PO files even after an update. I've found that the cause is the previous HTML comment line. This patch converts HTML comment into TT comment and adds a div to have a more comprehensive string to translate. Test plan : - without patch - go into /misc/translator - run PO update for example in french : translate update fr-FR => the text "result(s) found in catalog" is missing from PO file : fr-FR-staff-prog.po - restore default PO files - apply patch - go into /misc/translator - run PO update for example in french : translate update fr-FR => You find text "result(s) found in catalog" in PO file : fr-FR-staff-prog.po --- koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt index 19e0e1c..affa0fe 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt @@ -101,11 +101,13 @@ No results found [% END %] - +[%# display the search results %] [% IF ( total ) %] -[% total %] result(s) found in catalog, -[% breeding_count %] result(s) found in reservoir +
+ [% total %] result(s) found in catalog, + [% breeding_count %] result(s) found in reservoir +
[% pagination_bar %]
-- 2.1.0