english.php 953 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * @file languages/english.php
  4. * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
  5. * @sa @link internalLang Internationalization @endlink
  6. * @ingroup internalLang
  7. */
  8. $this->_strings = array(
  9. CAS_STR_USING_SERVER
  10. => 'using server',
  11. CAS_STR_AUTHENTICATION_WANTED
  12. => 'CAS Authentication wanted!',
  13. CAS_STR_LOGOUT
  14. => 'CAS logout wanted!',
  15. CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED
  16. => 'You should already have been redirected to the CAS server. Click <a href="%s">here</a> to continue.',
  17. CAS_STR_AUTHENTICATION_FAILED
  18. => 'CAS Authentication failed!',
  19. CAS_STR_YOU_WERE_NOT_AUTHENTICATED
  20. => '<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>',
  21. CAS_STR_SERVICE_UNAVAILABLE
  22. => 'The service `<b>%s</b>\' is not available (<b>%s</b>).'
  23. );
  24. ?>