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