user.php 2.6 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' => 'このメールアドレスは無効です。',
  15. 'required' => 'メールアドレスが必要です。',
  16. ),
  17. 'validation' => array(
  18. 'change_email' => 'メールアドレスは <a href="%s">プロフィールページ</a>で変更できます。',
  19. 'email_sent_to' => '<strong>%s</strong>宛てにメールを送信しました。メールの案内に従ってアドレスを確認してください。',
  20. 'feedback' => array(
  21. 'email_failed' => 'サーバー設定にエラーがあるため、メールを送信できませんでした。',
  22. 'email_sent' => '確認メールを送信しました。',
  23. 'error' => 'メールアドレスの確認に失敗しました。',
  24. 'ok' => 'メールアドレスを確認しました。',
  25. 'unnecessary' => 'このメールアドレスは既に確認済みです。',
  26. 'wrong_token' => 'トークンが正しくないため、メールアドレスを確認できませんでした。',
  27. ),
  28. 'need_to' => '%sを利用するにはメールアドレスの確認が必要です。',
  29. 'resend_email' => 'メールを再送信',
  30. 'title' => 'メールアドレス確認',
  31. ),
  32. ),
  33. 'mailer' => array(
  34. 'email_need_validation' => array(
  35. 'body' => '%sへの登録を完了するには、メールアドレスの確認が必要です。次のリンクを開いてください:',
  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. );