From 593dee4ea02971f8932d15fe1ba4dc157a379bac Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marc=20V=C3=A9ron?= Date: Mon, 23 May 2016 14:16:02 +0200 Subject: [PATCH] Bug 16560: Translatability: Issues with "The entered " in opac-memberentry.tt MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This patch fixes two splitted sentences to avoid translation issues: The entered card number is the wrong length. The entered card number is already in use. To test: Apply patch and verify that html in the 2 that are changed is correct and that they are not splitted by a-tags. Note: I could not figure out under which conditions this code displays in the OPAC self registration form. Signed-off-by: Frédéric Demians Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt index 2dc63f5fd6..d55796eb99 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt @@ -73,9 +73,9 @@ [% IF cardnumber_wrong_length || cardnumber_already_exists %]
[% IF cardnumber_wrong_length %] - The entered card number is the wrong length. + The entered card number is the wrong length. [% ELSIF cardnumber_already_exists %] - The entered card number is already in use. + The entered card number is already in use. [% END %] Please correct this and resubmit.
-- 2.20.1