20 lines
771 B
PHP
20 lines
771 B
PHP
<?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' => '密码长度至少包含6个字符并且两次输入密码要一致',
|
|
'reset' => '密码已经被重置!',
|
|
'sent' => '我们已经发送密码重置链接到您的邮箱',
|
|
'token' => '密码重置令牌无效',
|
|
'user' => '抱歉,该邮箱对应的用户不存在!',
|
|
];
|