passwords.php 756 B

12345678910111213141516171819202122
  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. 'password' => '密码必须至少小于8位,并且和重输密码一致',
  14. 'reset' => '你的密码已经被重设!',
  15. 'sent' => '我们已经重设密码用Email发送给您',
  16. 'token' => '密码重设Token是无效的',
  17. 'user' => "该Email地址下找不到用户",
  18. ];