user.php 2.1 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' => '已存在此用戶名',
  51. ),
  52. );