diff options
-rw-r--r-- | inc/lang/zh-tw/lang.php | 3 | ||||
-rw-r--r-- | lib/plugins/authad/lang/zh-tw/lang.php | 2 | ||||
-rw-r--r-- | lib/plugins/authad/lang/zh-tw/settings.php | 2 | ||||
-rw-r--r-- | lib/plugins/authldap/lang/zh-tw/settings.php | 2 | ||||
-rw-r--r-- | lib/plugins/authpdo/lang/zh-tw/lang.php | 9 |
5 files changed, 18 insertions, 0 deletions
diff --git a/inc/lang/zh-tw/lang.php b/inc/lang/zh-tw/lang.php index acd24b40c..82b283054 100644 --- a/inc/lang/zh-tw/lang.php +++ b/inc/lang/zh-tw/lang.php @@ -3,6 +3,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) * + * @author Peter Dave Hello <hsu@peterdavehello.org> * @author Junting Wu <lance20501@gmail.com> * @author Chun-Chung Chen <cjj@u.washington.edu> * @author GHSRobert Ciang <robertus0617@gmail.com> @@ -366,6 +367,8 @@ $lang['currentns'] = '目前的命名空間'; $lang['searchresult'] = '搜尋結果'; $lang['plainhtml'] = '純 HTML'; $lang['wikimarkup'] = 'Wiki 語法標記'; +$lang['unable_to_parse_date'] = '無法解析參數「%s」。'; $lang['email_signature_text'] = '本信件由以下 DokuWiki 網站產生 @DOKUWIKIURL@'; $lang['log_file_failed_to_open'] = '開啟日誌檔案失敗。'; +$lang['log_file_failed_to_read'] = '讀取日誌時發生錯誤。'; diff --git a/lib/plugins/authad/lang/zh-tw/lang.php b/lib/plugins/authad/lang/zh-tw/lang.php index 285c8aa95..7fd7cd80b 100644 --- a/lib/plugins/authad/lang/zh-tw/lang.php +++ b/lib/plugins/authad/lang/zh-tw/lang.php @@ -3,8 +3,10 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) * + * @author Peter Dave Hello <hsu@peterdavehello.org> * @author June-Hao Hou <junehao@gmail.com> * @author syaoranhinata <syaoranhinata@gmail.com> */ $lang['domain'] = '登入網域'; $lang['authpwdexpire'] = '您的密碼將在 %d 天內到期,請馬上更換新密碼。'; +$lang['connectfail'] = '連線到 Active Directory(Active Directory)伺服器失敗。'; diff --git a/lib/plugins/authad/lang/zh-tw/settings.php b/lib/plugins/authad/lang/zh-tw/settings.php index 4460763f2..3a7889c29 100644 --- a/lib/plugins/authad/lang/zh-tw/settings.php +++ b/lib/plugins/authad/lang/zh-tw/settings.php @@ -3,6 +3,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) * + * @author Peter Dave Hello <hsu@peterdavehello.org> * @author syaoranhinata <syaoranhinata@gmail.com> * @author June-Hao Hou <junehao@gmail.com> */ @@ -19,3 +20,4 @@ $lang['use_tls'] = '使用 TLS 連接嗎?如果要使用,請 $lang['debug'] = '有錯誤時,顯示額外除錯資訊嗎?'; $lang['expirywarn'] = '提前多少天警告使用者密碼即將到期。輸入0表示停用。'; $lang['additional'] = '從使用者數據中取得額外 AD 屬性列表,以供某些附加元件使用。列表以逗號分隔。'; +$lang['update_mail'] = '允許使用者更新電子郵件地址?'; diff --git a/lib/plugins/authldap/lang/zh-tw/settings.php b/lib/plugins/authldap/lang/zh-tw/settings.php index 685322230..249533ee9 100644 --- a/lib/plugins/authldap/lang/zh-tw/settings.php +++ b/lib/plugins/authldap/lang/zh-tw/settings.php @@ -3,6 +3,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) * + * @author Peter Dave Hello <hsu@peterdavehello.org> * @author syaoranhinata <syaoranhinata@gmail.com> */ $lang['server'] = '您的 LDAP 伺服器。填寫主機名稱 (<code>localhost</code>) 或完整的 URL (<code>ldap://server.tld:389</code>)'; @@ -24,3 +25,4 @@ $lang['deref_o_0'] = 'LDAP_DEREF_NEVER'; $lang['deref_o_1'] = 'LDAP_DEREF_SEARCHING'; $lang['deref_o_2'] = 'LDAP_DEREF_FINDING'; $lang['deref_o_3'] = 'LDAP_DEREF_ALWAYS'; +$lang['referrals_o_-1'] = '使用預設值'; diff --git a/lib/plugins/authpdo/lang/zh-tw/lang.php b/lib/plugins/authpdo/lang/zh-tw/lang.php new file mode 100644 index 000000000..b06e846a3 --- /dev/null +++ b/lib/plugins/authpdo/lang/zh-tw/lang.php @@ -0,0 +1,9 @@ +<?php + +/** + * @license GPL 2 (https://www.gnu.org/licenses/gpl.html) + * + * @author Peter Dave Hello <hsu@peterdavehello.org> + */ +$lang['userexists'] = '對不起,已經有使用者使用這個登入名稱。'; +$lang['writefail'] = '無法修改使用者資料。請通知Wiki-管理員'; |