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:
parent
ec66ff457b
commit
b0ba45058a
1 changed files with 2 additions and 3 deletions
|
@ -76,13 +76,12 @@
|
|||
<p>Sorry, the CAS login failed.</p>
|
||||
[% END %]
|
||||
|
||||
<p>If you have a CAS account,
|
||||
[% 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 %]
|
||||
|
||||
[% 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>
|
||||
[% FOREACH casServer IN casServersLoop %]
|
||||
<li><a href="[% casServer.value %]">[% casServer.name %]</a></li>
|
||||
|
|
Loading…
Reference in a new issue