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' => "您的電子郵件不存在。",
|
|
|
|
];
|