From 2495f04e482ed93e8459c1b78cb9fba40ebe0fc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Mon, 12 Jun 2017 07:48:57 +0200 Subject: [PATCH] Bug 18778 - Translatability: Get rid of tt directive in translation for item-status.inc The file opac-tmpl/bootstrap/en/includes/item-status.inc exposes a template directive where translators should not be confronted with. "%s %s [%%#- This include takes two parameters: an item structure and an " "optional loan (issue) structure. The issue structure is used by course " "reserves pages, which do not use an API to fetch items that populates item." "datedue. -%%] %s %s %s %s " This patch fixes new lines inside a tt directive (comment). It is merely a string patch. To test: Verify that the code changes make sense. (Bonus test: create a new language 'aa-AA', verify that line above does not show up in aa-AA-opac-bootstrap.po) --- koha-tmpl/opac-tmpl/bootstrap/en/includes/item-status.inc | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/item-status.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/item-status.inc index 843fcf6..f078463 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/item-status.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/item-status.inc @@ -1,12 +1,10 @@ [% USE AuthorisedValues %] [% SET itemavailable = 1 %] -[%#- -This include takes two parameters: an item structure -and an optional loan (issue) structure. The issue -structure is used by course reserves pages, which do -not use an API to fetch items that populates item.datedue. --%] +[%#- This include takes two parameters: an item structure -%] +[%#- and an optional loan (issue) structure. The issue -%] +[%#- structure is used by course reserves pages, which do -%] +[%#- not use an API to fetch items that populates item.datedue. -%] [% IF ( item.itemlost ) %] [% SET itemavailable = 0 %] -- 2.1.4