23 lines
705 B
PHP
23 lines
705 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.
|
|
|
|
|
*/
|
|
|
|
'reset' => '密码重置!',
|
|
'sent' => '我们已经将重置密码的链接发送到您邮箱!',
|
|
'throttled' => '请稍后重试。',
|
|
'token' => '此密码重置令牌无效。',
|
|
'user' => "无用户使用此邮箱.",
|
|
|
|
];
|