user.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /******************************************************************************
  3. * Each entry of that file can be associated with a comment to indicate its *
  4. * state. When there is no comment, it means the entry is fully translated. *
  5. * The recognized comments are (comment matching is case-insensitive): *
  6. * + TODO: the entry has never been translated. *
  7. * + DIRTY: the entry has been translated but needs to be updated. *
  8. * + IGNORE: the entry does not need to be translated. *
  9. * When a comment is not recognized, it is discarded. *
  10. ******************************************************************************/
  11. return array(
  12. 'email' => array(
  13. 'feedback' => array(
  14. 'invalid' => 'このEメールアドレスは無効です。',
  15. 'required' => 'Eメールアドレスは必要です。',
  16. ),
  17. 'validation' => array(
  18. 'change_email' => 'Eメールアドレスは <a href="%s">プロフィールページで変更できます</a>.',
  19. 'email_sent_to' => 'あなたのメールボックス<strong>%s</strong>にメールを送りました。有効性を確認するためにメールを確かめてください。',
  20. 'feedback' => array(
  21. 'email_failed' => 'サーバー設定にエラーがあるためEメールを送信できませんでした。',
  22. 'email_sent' => 'Eメールはあなたのメールボックスに送信されました',
  23. 'error' => 'Eメールアドレスの確認は失敗しました。',
  24. 'ok' => 'このEメールアドレスは確認されました。',
  25. 'unnecessary' => 'このEメールアドレスは既に確認済みです。',
  26. 'wrong_token' => 'このEメールアドレスのトークンは誤っています。',
  27. ),
  28. 'need_to' => '%s を使うためには、Eメールアドレスの認証が必要です。',
  29. 'resend_email' => 'Eメールの再送',
  30. 'title' => 'Eメールアドレス確認',
  31. ),
  32. ),
  33. 'mailer' => array(
  34. 'email_need_validation' => array(
  35. 'body' => 'あなたは %s で登録されましたが、Eメールアドレスを確認する必要があります。このリンクに従ってください:',
  36. 'title' => 'あなたのアカウントを確認する必要があります',
  37. 'welcome' => 'ようこそ %s さん',
  38. ),
  39. ),
  40. 'password' => array(
  41. 'invalid' => 'このパスワードは無効です',
  42. ),
  43. 'tos' => array(
  44. 'feedback' => array(
  45. 'invalid' => 'あなたが使うには利用規約に同意する必要があります。',
  46. ),
  47. ),
  48. 'username' => array(
  49. 'invalid' => 'このユーザー名は無効です。',
  50. 'taken' => '%s は既に使われているユーザー名です。',
  51. ),
  52. );