From 59bc46f09ed9140a9d0e3930d8e3ee820c0662e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?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=UTF-8 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 --- 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 2dc63f5..d55796e 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.8.0