auth.php 805 B

123456789101112131415161718192021222324
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Authentication Language Lines
  6. |--------------------------------------------------------------------------
  7. |
  8. | The following language lines are used during authentication for various
  9. | messages that we need to display to the user. You are free to modify
  10. | these language lines according to your application's requirements.
  11. |
  12. */
  13. /*
  14. * 'failed' => 'These credentials do not match our records.',
  15. * 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
  16. *
  17. * modify by pjh 20180403
  18. */
  19. 'failed' => '非常抱歉!账号与密码不匹配',
  20. 'throttle' => '登录尝试次数太多,请:seconds秒后重试',
  21. ];