commit | author | age
|
fa3a61
|
1 |
<?php |
TB |
2 |
|
|
3 |
/* |
|
4 |
+-----------------------------------------------------------------------+ |
aed581
|
5 |
| plugins/password/localization/<lang>.inc | |
fa3a61
|
6 |
| | |
aed581
|
7 |
| Localization file of the Roundcube Webmail Password plugin | |
TB |
8 |
| Copyright (C) 2012-2013, The Roundcube Dev Team | |
|
9 |
| | |
|
10 |
| Licensed under the GNU General Public License version 3 or | |
|
11 |
| any later version with exceptions for skins & plugins. | |
|
12 |
| See the README file for a full license statement. | |
fa3a61
|
13 |
| | |
TB |
14 |
+-----------------------------------------------------------------------+ |
aed581
|
15 |
|
TB |
16 |
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ |
fa3a61
|
17 |
*/ |
aed581
|
18 |
$labels['changepasswd'] = '修改密码'; |
TB |
19 |
$labels['curpasswd'] = '当前密码:'; |
|
20 |
$labels['newpasswd'] = '新密码:'; |
|
21 |
$labels['confpasswd'] = '确认新密码:'; |
|
22 |
$messages['nopassword'] = '请输入新密码。'; |
3e78fc
|
23 |
$messages['nocurpassword'] = '请输入当前的密码。'; |
aed581
|
24 |
$messages['passwordincorrect'] = '当前密码不正确。'; |
TB |
25 |
$messages['passwordinconsistency'] = '两次输入的密码不一致,请重试。'; |
3e78fc
|
26 |
$messages['crypterror'] = '无法保存新密码,缺少加密功能。'; |
TB |
27 |
$messages['connecterror'] = '无法保存新密码,连接出错。'; |
aed581
|
28 |
$messages['internalerror'] = '无法保存新密码。'; |
3e78fc
|
29 |
$messages['passwordshort'] = '密码至少为 $length 位。'; |
aed581
|
30 |
$messages['passwordweak'] = '密码必须至少包含一个数字和一个标点符号。'; |
TB |
31 |
$messages['passwordforbidden'] = '密码包含禁止使用的字符。'; |
|
32 |
?> |