23 lines
762 B
PHP
23 lines
762 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' => '密码重置token已效。',
|
|
'user' => "您的电子邮件不存在。",
|
|
|
|
];
|