diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-12-22 17:53:24 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-12-22 17:53:24 -0500 |
commit | 6549e4779a55a650582fdafd5f9c81d374222497 (patch) | |
tree | e12971f719a583dd4a181f894eb60a3d06eaf052 /plugins/CasAuthentication/extlib/CAS/languages/catalan.php | |
parent | c9c316db7f003e018202e6c9f39770c208aecc05 (diff) |
First version of a CAS authentication plugin
Diffstat (limited to 'plugins/CasAuthentication/extlib/CAS/languages/catalan.php')
-rw-r--r-- | plugins/CasAuthentication/extlib/CAS/languages/catalan.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/plugins/CasAuthentication/extlib/CAS/languages/catalan.php b/plugins/CasAuthentication/extlib/CAS/languages/catalan.php new file mode 100644 index 000000000..3d67473d9 --- /dev/null +++ b/plugins/CasAuthentication/extlib/CAS/languages/catalan.php @@ -0,0 +1,27 @@ +<?php
+
+/**
+ * @file languages/spanish.php
+ * @author Iván-Benjamín García Torà <ivaniclixx AT gmail DOT com>
+ * @sa @link internalLang Internationalization @endlink
+ * @ingroup internalLang
+ */
+
+$this->_strings = array(
+ CAS_STR_USING_SERVER
+ => 'usant servidor',
+ CAS_STR_AUTHENTICATION_WANTED
+ => 'Autentificació CAS necessària!',
+ CAS_STR_LOGOUT
+ => 'Sortida de CAS necessària!',
+ CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED
+ => 'Ja hauria d\ haver estat redireccionat al servidor CAS. Feu click <a href="%s">aquí</a> per a continuar.',
+ CAS_STR_AUTHENTICATION_FAILED
+ => 'Autentificació CAS fallida!',
+ CAS_STR_YOU_WERE_NOT_AUTHENTICATED
+ => '<p>No estàs autentificat.</p><p>Pots tornar a intentar-ho fent click <a href="%s">aquí</a>.</p><p>Si el problema persisteix hauría de contactar amb l\'<a href="mailto:%s">administrador d\'aquest llocc</a>.</p>',
+ CAS_STR_SERVICE_UNAVAILABLE
+ => 'El servei `<b>%s</b>\' no està disponible (<b>%s</b>).'
+);
+
+?>
|