From bdb8204502ed1b536a6fe0d1293eeae80ed911ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Tue, 31 May 2016 10:17:13 +0200 Subject: [PATCH] Bug 16620: Translatability: Fix problem with isolated word "please" in auth.tt This patch fixes a translatability problem (syntax in different languages) with a tag-isolated word "please" in koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt To test: - Verify in code that in line 81 the word "please" is inside the a-tag. --- koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt index 8887812..ce74747 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt @@ -78,7 +78,7 @@

If you have a CAS account, [% IF ( casServerUrl ) %] - please click here to login.

+ please click here to login.

[% END %] [% IF ( casServersLoop ) %] -- 1.7.10.4