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. );