32 lines
996 B
PHP
32 lines
996 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Cachet HQ <support@cachethq.io>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
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' => '成功重置密碼。',
|
|
|
|
];
|