| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- /******************************************************************************
- * Each entry of that file can be associated with a comment to indicate its *
- * state. When there is no comment, it means the entry is fully translated. *
- * The recognized comments are (comment matching is case-insensitive): *
- * + TODO: the entry has never been translated. *
- * + DIRTY: the entry has been translated but needs to be updated. *
- * + IGNORE: the entry does not need to be translated. *
- * When a comment is not recognized, it is discarded. *
- ******************************************************************************/
- return array(
- 'email' => array(
- 'feedback' => array(
- 'invalid' => 'このEメールアドレスは無効です。',
- 'required' => 'Eメールアドレスは必要です。',
- ),
- 'validation' => array(
- 'change_email' => 'Eメールアドレスは <a href="%s">プロフィールページで変更できます</a>.',
- 'email_sent_to' => 'あなたのメールボックス<strong>%s</strong>にメールを送りました。有効性を確認するためにメールを確かめてください。',
- 'feedback' => array(
- 'email_failed' => 'サーバー設定にエラーがあるためEメールを送信できませんでした。',
- 'email_sent' => 'Eメールはあなたのメールボックスに送信されました',
- 'error' => 'Eメールアドレスの確認は失敗しました。',
- 'ok' => 'このEメールアドレスは確認されました。',
- 'unnecessary' => 'このEメールアドレスは既に確認済みです。',
- 'wrong_token' => 'このEメールアドレスのトークンは誤っています。',
- ),
- 'need_to' => '%s を使うためには、Eメールアドレスの認証が必要です。',
- 'resend_email' => 'Eメールの再送',
- 'title' => 'Eメールアドレス確認',
- ),
- ),
- 'mailer' => array(
- 'email_need_validation' => array(
- 'body' => 'あなたは %s で登録されましたが、Eメールアドレスを確認する必要があります。このリンクに従ってください:',
- 'title' => 'あなたのアカウントを確認する必要があります',
- 'welcome' => 'ようこそ %s さん',
- ),
- ),
- 'password' => array(
- 'invalid' => 'このパスワードは無効です',
- ),
- 'tos' => array(
- 'feedback' => array(
- 'invalid' => 'あなたが使うには利用規約に同意する必要があります。',
- ),
- ),
- 'username' => array(
- 'invalid' => 'このユーザー名は無効です。',
- 'taken' => '%s は既に使われているユーザー名です。',
- ),
- );
|