From 9c7ab30c4b713276c289a1f47dbed5f96b352124 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Tue, 30 May 2017 14:27:56 +0200 Subject: [PATCH] Bug 18682 - Translatability: Get rid of [%% in translation for 2 files av-build-dropbox.inc Two files av-build-dropbox.inc has linebreaks inside template directives, exposing internals (comments and tt code) to translations as mentioned in initial comment. Translators should not be confronted with such interal code. This patch fixes it. To test - Verify, that code changes make sense and have no more line breaks insied tt directives. - Run QA tools in newest version (checking for line breaks inside tt directives) - Bonus test: Create a "language" aa-AA (perl translate create aa-AA from folder misc/translator, verify that lines mentioned above do no longer appear in aa-AA-staff-prog.po and in aa-AA-opac-bootstrap.po --- .../prog/en/includes/av-build-dropbox.inc | 21 ++++++++------------- .../bootstrap/en/includes/av-build-dropbox.inc | 19 +++++++------------ 2 files changed, 15 insertions(+), 25 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/av-build-dropbox.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/av-build-dropbox.inc index 8aaf8ef..e2270b8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/av-build-dropbox.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/av-build-dropbox.inc @@ -1,19 +1,14 @@ [% USE AuthorisedValues %] -[%# - Parameters: - name: the name of the select element - category: the authorised value category - default: the default authorised value to select - class: the CSS class of the select element - size: the size to use for the input (generated if the authorised value category does not exist). - all: add a "All" entry -%] +[%# Parameters: %] +[%# name: the name of the select element %] +[%# category: the authorised value category %] +[%# default: the default authorised value to select %] +[%# class: the CSS class of the select element %] +[%# size: the size to use for the input (generated if the authorised value category does not exist). %] +[%# all: add a "All" entry %] [% SET avs = AuthorisedValues.GetAuthValueDropbox( category ) %] -[% DEFAULT - class = '' - size = 20 -%] +[% DEFAULT class = '' size = 20 %] [% IF avs %] -- 2.1.4