Thomas Bruederli
2012-08-06 20825920e3f723c1a2a962beaa72a33e82cd14da
commit | author | age
48e9c1 1 <?php
T 2
208259 3 /*
TB 4  +-----------------------------------------------------------------------+
5  | localization/zh_TW/labels.inc                                         |
6  |                                                                       |
7  | Language file of the Roundcube Webmail client                         |
8  | Copyright (C) 2012, The Roundcube Dev Team                            |
9  | Licensed under the GNU General Public License                         |
10  |                                                                       |
11  +-----------------------------------------------------------------------+
12  | Author: Thomas                                                        |
13  +-----------------------------------------------------------------------+
14 */
15
48e9c1 16 $labels = array();
208259 17 $labels['changepasswd'] = '更改密碼';
TB 18 $labels['curpasswd'] = '目前的密碼';
19 $labels['newpasswd'] = '新密碼';
20 $labels['confpasswd'] = '確認新密碼';
21 $labels['nopassword'] = '請輸入新密碼';
22 $labels['nocurpassword'] = '請輸入目前的密碼';
23 $labels['passwordincorrect'] = '目前的密碼錯誤';
24 $labels['passwordinconsistency'] = '密碼不相符,請重新輸入';
25 $labels['crypterror'] = '無法更新密碼:無加密機制';
26 $labels['connecterror'] = '無法更新密碼:連線失敗';
27 $labels['internalerror'] = '無法更新密碼';
28 $labels['passwordshort'] = '您的密碼至少需 $length 個字元長';
29 $labels['passwordweak'] = '您的新密碼至少需含有一個數字與一個標點符號';
30 $labels['passwordforbidden'] = '您的密碼含有禁用字元';
48e9c1 31