23 lines
784 B
PHP
Executable File
23 lines
784 B
PHP
Executable File
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Password Reminder 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' => '密码必须至少有六个字符,而两次输入的密码也必须匹配。',
|
|
'user' => '无法找到拥有该电邮地址的用戶。',
|
|
'token' => '无效的密码重置令牌。',
|
|
'sent' => '已发送密码重置邮件。',
|
|
'reset' => '成功重置密码。',
|
|
|
|
];
|