32 lines
974 B
PHP
32 lines
974 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
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' => '密碼至少應有六個字符 並且與“確認密碼”相匹配',
|
|
'user' => '未找到使用該郵箱地址的用戶',
|
|
'token' => '該密碼重置憑據無效',
|
|
'sent' => '已經發送密碼重置提示信息!',
|
|
'reset' => '密碼已重置!',
|
|
|
|
];
|