Bug 18778 - Translatability: Get rid of tt directive in translation for item-status.inc
authorMarc Véron <veron@veron.ch>
Mon, 12 Jun 2017 05:48:57 +0000 (07:48 +0200)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 30 Aug 2017 19:43:37 +0000 (16:43 -0300)
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)

NOTE: Followed test plan similar to bug 18776 comment 3.

Signed-off-by: Mark Tompsett <mtompset@hotmail.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
koha-tmpl/opac-tmpl/bootstrap/en/includes/item-status.inc

index 81d3658..408de46 100644 (file)
@@ -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 %]