passport.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. return [
  3. 'auth' => [
  4. 'register' => [
  5. 'verify_incorrect' => 'Invalid code is incorrect',
  6. 'email_suffix_not_in_whitelist' => 'Email suffix is not in the Whitelist',
  7. 'no_support_gmail_alias' => 'Gmail alias is not supported',
  8. 'close_register' => 'Registration has closed',
  9. 'must_use_invite_code' => 'You must use the invitation code to register',
  10. 'email_code_not_empty' => 'Email verification code cannot be empty',
  11. 'email_code_incorrect' => 'Incorrect email verification code',
  12. 'email_exist_system' => 'Email already exists',
  13. 'invalid_invite_code' => 'Invalid invitation code',
  14. 'register_failed' => 'Register failed'
  15. ],
  16. 'login' => [
  17. 'wrong_email_or_password' => 'Incorrect email or password',
  18. 'account_been_discontinued' => 'Your account has been suspended'
  19. ],
  20. 'getQuickLoginUrl' => [
  21. 'wrong_token' => 'Token error'
  22. ],
  23. 'forget' => [
  24. 'email_verification_code_incorrect' => 'Incorrect email verification code',
  25. 'email_not_exist_system' => 'This email is not registered in the system',
  26. 'reset_failed' => 'Reset failed'
  27. ]
  28. ],
  29. 'comm' => [
  30. 'sendEmailVerify' => [
  31. 'verification_code_incorrect' => 'Incorrect email verification code',
  32. 'code_sent_request_later' => 'Email verification code has been sent, please request again later',
  33. 'email_verification_code' => 'Email verification code'
  34. ]
  35. ]
  36. ];