user.php 2.2 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. );