* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://wiki.jasig.org/display/CASC/phpCAS */ /** * Japanese language class. Now Encoding is UTF-8. * * @class CAS_Languages_Japanese * @category Authentication * @package PhpCAS * @author fnorif * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://wiki.jasig.org/display/CASC/phpCAS * **/ class CAS_Languages_Japanese implements CAS_Languages_LanguageInterface { /** * Get the using server string * * @return string using server */ public function getUsingServer() { return 'サーバーを使っています。'; } /** * Get authentication wanted string * * @return string authentication wanted */ public function getAuthenticationWanted() { return 'CASによる認証を行います。'; } /** * Get logout string * * @return string logout */ public function getLogout() { return 'CASからログアウトします!'; } /** * Get the should have been redirected string * * @return string should habe been redirected */ public function getShouldHaveBeenRedirected() { return 'CASサーバに行く必要があります。自動的に転送されない場合は こちら をクリックして続行します。'; } /** * Get authentication failed string * * @return string authentication failed */ public function getAuthenticationFailed() { return 'CASによる認証に失敗しました。'; } /** * Get the your were not authenticated string * * @return string not authenticated */ public function getYouWereNotAuthenticated() { return '

認証できませんでした。

もう一度リクエストを送信する場合はこちらをクリック。

問題が解決しない場合は このサイトの管理者に問い合わせてください。

'; } /** * Get the service unavailable string * * @return string service unavailable */ public function getServiceUnavailable() { return 'サービス `%s\' は利用できません (%s)。'; } } ?>