[Koha-patches] [PATCH] Bug 5983 minor fix in html to improve translatability

Chris Cormack chrisc at catalyst.net.nz
Tue Mar 29 04:23:39 CEST 2011


From: Paul POULAIN <paul.poulain at biblibre.com>

put <acronym> tag on the phrase, not just on CAS word
---
 koha-tmpl/opac-tmpl/prog/en/modules/opac-auth.tmpl |   14 +++++++++++++-
 1 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-auth.tmpl b/koha-tmpl/opac-tmpl/prog/en/modules/opac-auth.tmpl
index bef863d..969baeb 100644
--- a/koha-tmpl/opac-tmpl/prog/en/modules/opac-auth.tmpl
+++ b/koha-tmpl/opac-tmpl/prog/en/modules/opac-auth.tmpl
@@ -53,7 +53,19 @@
 <p>Sorry, the CAS login failed.</p>
 <!-- /TMPL_IF -->
 
-<p>If you have a <acronym title="Central Authentication Service">CAS</acronym> account, please <a href="<!-- TMPL_VAR NAME="casServerUrl" -->">click here to login</a>.<p>
+<p><acronym title="Central Authentication Service">If you have a CAS account</acronym>, 
+<!-- TMPL_IF name="casServerUrl" -->
+    please <a href="<!-- TMPL_VAR NAME="casServerUrl" -->">click here to login</a>.<p>
+<!-- /TMPL_IF -->
+
+<!-- TMPL_IF name="casServersLoop" -->
+please choose against which one you would like to authenticate: </p>
+<ul>
+    <!-- TMPL_LOOP name="casServersLoop" -->
+	<li><a href="<!-- TMPL_VAR name="value" -->"><!-- TMPL_VAR name="name" --></a></li>
+    <!-- /TMPL_LOOP -->
+<!-- /TMPL_IF -->
+</ul>
 
 <h4>Local Login</h4>
 <p>If you do not have a CAS account, but a local account, you can still log in : </p>
-- 
1.7.1



More information about the Koha-patches mailing list