passport.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. return [
  3. 'auth' => [
  4. 'register' => [
  5. 'verify_incorrect' => '验证码有误',
  6. 'email_suffix_not_in_whitelist' => '邮箱后缀不处于白名单中',
  7. 'no_support_gmail_alias' => '不支持 Gmail 别名邮箱',
  8. 'close_register' => '本站已关闭注册',
  9. 'must_use_invite_code' => '必须使用邀请码才可以注册',
  10. 'email_code_not_empty' => '邮箱验证码不能为空',
  11. 'email_code_incorrect' => '邮箱验证码有误',
  12. 'email_exist_system' => '邮箱已存在系统中',
  13. 'invalid_invite_code' => '邀请码无效',
  14. 'register_failed' => '注册失败'
  15. ],
  16. 'login' => [
  17. 'wrong_email_or_password' => '邮箱或密码错误',
  18. 'account_been_discontinued' => '该账户已被停止使用'
  19. ],
  20. 'getQuickLoginUrl' => [
  21. 'wrong_token' => '令牌有误'
  22. ],
  23. 'forget' => [
  24. 'email_verification_code_incorrect' => '邮箱验证码有误',
  25. 'email_not_exist_system' => '该邮箱不存在系统中',
  26. 'reset_failed' => '重置失败'
  27. ]
  28. ],
  29. 'comm' => [
  30. 'sendEmailVerify' => [
  31. 'verification_code_incorrect' => '验证码有误',
  32. 'code_sent_request_later' => '验证码已发送,请过一会再请求',
  33. 'email_verification_code' => '邮箱验证码'
  34. ]
  35. ]
  36. ];