ryxeo-glpi-git / lib / phpcas / languages / english.php @ b67d8923
Historique | Voir | Annoter | Télécharger (927 octets)
1 |
<?php
|
---|---|
2 |
|
3 |
/**
|
4 |
* @file languages/english.php
|
5 |
* @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
|
6 |
* @sa @link internalLang Internationalization @endlink
|
7 |
* @ingroup internalLang
|
8 |
*/
|
9 |
|
10 |
$this->_strings = array( |
11 |
CAS_STR_USING_SERVER
|
12 |
=> 'using server',
|
13 |
CAS_STR_AUTHENTICATION_WANTED
|
14 |
=> 'CAS Authentication wanted!',
|
15 |
CAS_STR_LOGOUT
|
16 |
=> 'CAS logout wanted!',
|
17 |
CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED
|
18 |
=> 'You should already have been redirected to the CAS server. Click <a href="%s">here</a> to continue.',
|
19 |
CAS_STR_AUTHENTICATION_FAILED
|
20 |
=> 'CAS Authentication failed!',
|
21 |
CAS_STR_YOU_WERE_NOT_AUTHENTICATED
|
22 |
=> '<p>You were not authenticated.</p><p>You may submit your request again by clicking <a href="%s">here</a>.</p><p>If the problem persists, you may contact <a href="mailto:%s">the administrator of this site</a>.</p>',
|
23 |
CAS_STR_SERVICE_UNAVAILABLE
|
24 |
=> 'The service `<b>%s</b>\' is not available (<b>%s</b>).'
|
25 |
); |
26 |
|
27 |
?>
|