passwords.php 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Password Reset Language Lines
  6. |--------------------------------------------------------------------------
  7. |
  8. | The following language lines are the default lines which match reasons
  9. | that are given by the password broker for a password update attempt
  10. | has failed, such as for an invalid token or invalid new password.
  11. |
  12. */
  13. /*
  14. * 'password' => 'Passwords must be at least six characters and match the confirmation.',
  15. * 'reset' => 'Your password has been reset!',
  16. * 'sent' => 'We have e-mailed your password reset link!',
  17. * 'token' => 'This password reset token is invalid.',
  18. * 'user' => "We can't find a user with that e-mail address.",
  19. *
  20. * modify by pjh 20180403
  21. */
  22. 'password' => '密码必须至少有六个字符,并与确认密码相符',
  23. 'reset' => '您的密码已重置',
  24. 'sent' => '密码重置链接已经发送到您的电子邮箱',
  25. 'token' => '此密码重置令牌无效',
  26. 'user' => "非常抱歉!找不到对应用户!",
  27. ];