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 there is no sentence spliting by a-tags (lines 80/84).

Signed-off-by: Srdjan <srdjan@catalyst.net.nz>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
Marc Véron 2016-05-31 10:17:13 +02:00 committed by Kyle M Hall
parent ec66ff457b
commit b0ba45058a

View file

@ -76,13 +76,12 @@
<p>Sorry, the CAS login failed.</p> <p>Sorry, the CAS login failed.</p>
[% END %] [% END %]
<p>If you have a CAS account,
[% IF ( casServerUrl ) %] [% IF ( casServerUrl ) %]
please <a href="[% casServerUrl %]">click here to login</a>.<p> <p><a href="[% casServerUrl %]">If you have a CAS account, please click here to login</a>.<p>
[% END %] [% END %]
[% IF ( casServersLoop ) %] [% IF ( casServersLoop ) %]
please choose against which one you would like to authenticate: </p> <p>If you have a CAS account, please choose against which one you would like to authenticate:</p>
<ul> <ul>
[% FOREACH casServer IN casServersLoop %] [% FOREACH casServer IN casServersLoop %]
<li><a href="[% casServer.value %]">[% casServer.name %]</a></li> <li><a href="[% casServer.value %]">[% casServer.name %]</a></li>