Bladeren bron

manually mergin PR #551

Serghey Rodin 9 jaren geleden
bovenliggende
commit
a9d8332565
2 gewijzigde bestanden met toevoegingen van 263 en 725 verwijderingen
  1. 47 47
      web/inc/i18n.php
  2. 216 678
      web/inc/i18n/tw.php

+ 47 - 47
web/inc/i18n.php

@@ -1,49 +1,49 @@
-<?php
-// Functions for internationalization
-
-/**
- * Translates string to given language in first parameter, key given in second parameter (dynamically loads required language). Works like spritf from second parameter
- * @global array $LANG Associative array of language pharses
- * @return string Translated string
- */
-function _translate() {
-    global $LANG;
-
-    $args = func_get_args();
-    $l = $args[0];
-
-    if (!$l) return 'NO LANGUAGE DEFINED';
-    $key = $args[1];
-
-    if (!isset($LANG[$l])) {
-        require_once($_SERVER['DOCUMENT_ROOT'].'/inc/i18n/'.$l.'.php');
-    }
-
-    if (!isset($LANG[$l][$key])) {
-        $text=$key;
-    } else {
-        $text=$LANG[$l][$key];
-    }
-
-    array_shift($args);
-    if (count($args)>1) {
-        $args[0] = $text;
-        return call_user_func_array("sprintf",$args);
-    } else {
-        return $text;
-    }
-}
-
-/**
- * Translates string by a given key in first parameter to current session language. Works like sprintf
- * @global array $LANG Associative array of language pharses
- * @return string Translated string
- * @see _translate()
- */
-function __() {
-    $args = func_get_args();
-    array_unshift($args,$_SESSION['language']);
-    return call_user_func_array("_translate",$args);
+<?php
+// Functions for internationalization
+
+/**
+ * Translates string to given language in first parameter, key given in second parameter (dynamically loads required language). Works like spritf from second parameter
+ * @global array $LANG Associative array of language pharses
+ * @return string Translated string
+ */
+function _translate() {
+    global $LANG;
+
+    $args = func_get_args();
+    $l = $args[0];
+
+    if (!$l) return 'NO LANGUAGE DEFINED';
+    $key = $args[1];
+
+    if (!isset($LANG[$l])) {
+        require_once($_SERVER['DOCUMENT_ROOT'].'/inc/i18n/'.$l.'.php');
+    }
+
+    if (!isset($LANG[$l][$key])) {
+        $text=$key;
+    } else {
+        $text=$LANG[$l][$key];
+    }
+
+    array_shift($args);
+    if (count($args)>1) {
+        $args[0] = $text;
+        return call_user_func_array("sprintf",$args);
+    } else {
+        return $text;
+    }
+}
+
+/**
+ * Translates string by a given key in first parameter to current session language. Works like sprintf
+ * @global array $LANG Associative array of language pharses
+ * @return string Translated string
+ * @see _translate()
+ */
+function __() {
+    $args = func_get_args();
+    array_unshift($args,$_SESSION['language']);
+    return call_user_func_array("_translate",$args);
 }
 
 /**
@@ -120,4 +120,4 @@ function detect_user_language($fallback='en') {
 
 function detect_login_language(){
 
-}
+}

+ 216 - 678
web/inc/i18n/tw.php

@@ -1,9 +1,8 @@
 <?php
 /**
  * Vesta language file
- * 吳汝剛 (ak6783@gmail.com)
  * This language file is translate by
- * Clark’s Computer Knowledge Idea Journal (http://www.clark-chen.com)
+ * Clark’s Computer Knowledge Journal (http://www.clark-chen.com)
  * Clark Chen (clark@clark-chen.com)
  * Github - https://github.com/ttcttctw/Vesta-Control-Panel-Traditional-Chinese-Translation/blob/master/tw.php
  * VestaCP Forum - https://forum.vestacp.com/viewtopic.php?f=16&t=8480
@@ -16,6 +15,7 @@ $LANG['tw'] = array(
     'Log'  => '系統紀錄',
     'Services'  => '服務',
     'Firewall' => '防火牆',
+    'Server' => '伺服器',
     'Updates'  => '系統更新',
     'Log in'  => '登入',
     'Log out'  => '登出',
@@ -24,7 +24,7 @@ $LANG['tw'] = array(
     'DNS'  => 'DNS管理',
     'MAIL'  => '信箱管理',
     'DB'  => '資料庫',
-    'CRON'  => 'CRON',
+    'CRON'  => '任務排程',
     'BACKUP'  => '備份',
     'Add User'  => '新增使用者',
     'Add Domain'  => '新增網域',
@@ -34,9 +34,9 @@ $LANG['tw'] = array(
     'Add Mail Domain'  => '新增信箱網域',
     'Add Mail Account'  => '新增信箱帳號',
     'Add Database'  => '新增資料庫',
-    'Add Cron Job'  => '新增Cron Job',
+    'Add Cron Job'  => '新增任務排程',
     'Create Backup'  => '建立備份',
-    'Configure'  => '調整設定',
+    'Configure'  => '配置',
     'Restore All'  => '全部回復',
     'Add Package'  => '新增方案',
     'Add IP'  => '新增IP',
@@ -60,12 +60,12 @@ $LANG['tw'] = array(
     'rebuild dns'  => '重建DNS',
     'rebuild mail'  => '重建信箱',
     'rebuild db'  => '重建資料庫',
-    'rebuild cron'  => '重建 Cron',
+    'rebuild cron'  => '重建任務排程',
     'update counters'  => '更新計數器',
     'suspend'  => '封鎖',
     'unsuspend'  => '解除封鎖',
     'delete'  => '刪除',
-    'show per user'  => 'show per user',
+    'show per user'  => '依照選擇的使用者',
     'login as'  => '登入帳號',
     'logout'  => '登出',
     'edit'  => '編輯',
@@ -80,13 +80,13 @@ $LANG['tw'] = array(
     'open %s'  => '開啟 %s',
     'download'  => '下載',
     'restore'  => '回復',
-    'configure restore settings'  => '調整回復設定',
+    'configure restore settings'  => '配置回復設定',
     'stop'  => '停止',
     'start'  => '啟動',
     'restart'  => '重新啟動',
     'update'  => '更新',
     'generate'  => '產生',
-    'Generate CSR' => '產生 CSR',
+    'Generate CSR' => '產生憑證簽署請求 (CSR)',
     'reread IP' => '重新取得IP',
     'enable autoupdate' => '啟用自動更新',
     'disable autoupdate' => '停用自動更新',
@@ -105,15 +105,15 @@ $LANG['tw'] = array(
     'Adding Mail Account'  => '新增信箱帳號',
     'Editing Mail Account'  => '編輯信箱帳號',
     'Adding database'  => '新增資料庫',
-    'Editing Cron Job'  => '編輯Cron Job',
-    'Adding Cron Job'  => '新增Cron Job',
+    'Editing Cron Job'  => '編輯任務排程',
+    'Adding Cron Job'  => '新增任務排程',
     'Editing Database'  => '編輯資料庫',
     'Adding Package'  => '新增方案',
     'Editing Package'  => '編輯方案',
     'Adding IP address'  => '新增IP',
     'Editing IP Address'  => '編輯IP',
     'Editing Backup Exclusions' => '編輯備份排除項目',
-    'Generating CSR' => '產生CSR檔',
+    'Generating CSR' => '產生憑證簽署請求(CSR)中...',
     'Listing'  => '列出',
     'Search Results'  => '搜尋結果',
     'Adding Firewall Rule' => '新增防火牆規則',
@@ -155,13 +155,12 @@ $LANG['tw'] = array(
     'SSL Domains'  => 'SSL網域',
     'Web Aliases'  => '網站次網域',
     'per domain'  => '(每網域)',
-    'DNS Domains'  => 'DNS網域',
-    'DNS Domains'  => 'DNS網域',
-    'DNS records'   => 'DNS紀錄'  ,
-    'Name Servers'  => 'NS主機',
+    'DNS domains'  => 'DNS網域',
+    'DNS records'   => 'DNS紀錄',
+    'Name Servers'  => '域名服務器',
     'Mail Domains'  => '信箱網域',
     'Mail Accounts'  => '信箱使用者',
-    'Cron Jobs'  => 'Cron Jobs',
+    'Cron Jobs'  => '任務排程',
     'SSH Access'  => 'SSH權限',
     'IP Addresses'  => 'IP位置',
     'Backups'  => '備份',
@@ -191,9 +190,9 @@ $LANG['tw'] = array(
     'User'  => '使用者',
     'Host'  => '主機',
     'Charset'  => '編碼',
-    'Min'  => '分',
-    'Hour'  => '時',
-    'Day'  => '',
+    'Min'  => '分',
+    'Hour'  => '時',
+    'Day'  => '',
     'Month'  => '月',
     'Day of week'  => '星期幾',
     'local'  => '本地',
@@ -208,14 +207,25 @@ $LANG['tw'] = array(
     'Users'  => '使用者',
     'Load Average'  => '平均負載量',
     'Memory Usage'  => '記憶體使用量',
+    'Bandwidth Usage p2p1' => '流量使用量 (p2p1)',
+    'Bandwidth Usage ppp0' => '流量使用量 (ppp0)',
+    'Bandwidth Usage ppp1' => '流量使用量 (ppp1)',
+    'Bandwidth Usage eth0' => '流量使用量 (eth0)',
+    'Bandwidth Usage eth1' => '流量使用量 (eth1)',
+    'Bandwidth Usage sit0' => '流量使用量 (sit0)',
+    'Bandwidth Usage sit1' => '流量使用量 (sit1)',
+    'Bandwidth Usage he-ipv6' => '流量使用量 (he-ipv6)',
     'HTTPD Usage'  => 'Apache使用量',
+    'APACHE2 Usage' => 'Apache2使用量',
     'NGINX Usage'  => 'NGINX使用量',
+    'Exim Usage' => 'Exim使用量',
     'MySQL Usage on localhost'  => 'MySQL使用量 (localhost)',
     'PostgreSQL Usage on localhost'  => 'PostgreSQL使用量 (localhost)',
-    'Bandwidth Usage eth0'  => '網路流量 (eth0)',
     'FTP Usage'  => 'FTP使用量',
     'SSH Usage'  => 'SSH使用量',
-    'reverse proxy'  => '反向Proxy',
+    'ACCEPT' => '允許',
+    'DROP' => '封鎖',
+    'reverse proxy'  => '代理伺服器',
     'web server'  => '網站主機',
     'dns server'  => 'DNS主機',
     'mail server'  => '信箱主機',
@@ -224,16 +234,22 @@ $LANG['tw'] = array(
     'email antispam'  => '信箱防垃圾信',
     'database server'  => '資料庫主機',
     'ftp server'  => 'FTP主機',
-    'job scheduler'  => '定時執行指令',
-    'CPU'  => 'CPU',
+    'job scheduler'  => '任務排程指令',
+    'firewall' => '防火牆',
+    'brute-force monitor' => '防止暴力破解',
+    'LoadAverage' => '平均負載量',
+    'CPU'  => '處理器負載',
+    'MEMORY'  => '記憶體',
+    'DISK' => '磁碟',
+    'NETWORK' => '網路',
     'Memory'  => '記憶體',
     'Uptime'  => '已啟動時間',
     'core package'  => '核心系統',
-    'php interpreter'  => 'PHP讀取',
-    'internal web server'  => '網路網站主機',
+    'php interpreter'  => 'PHP解析',
+    'internal web server'  => '管理系統伺服器',
     'Version'  => '版本',
     'Release'  => '發佈號碼',
-    'Architecture'  => 'Architecture',
+    'Architecture'  => '架構',
     'Object'  => 'Object',
     'Owner'  => '擁有者',
     'Username'  => '使用者名稱',
@@ -245,26 +261,27 @@ $LANG['tw'] = array(
     'Last Name'  => '姓氏',
     'Send login credentials to email address'  => '傳送登入資訊至使用者的信箱',
     'Default Template'  => '預設模板',
-    'Default Name Servers'  => '預設NS主機',
+    'Default Name Servers'  => '預設域名服務器',
     'Domain'  => '網域',
     'DNS Support'  => 'DNS支援',
     'Mail Support'  => '信箱支援',
     'Advanced options'  => '進階選項',
     'Aliases'  => '次網域',
-    'SSL Certificate'  => 'SSL證',
+    'SSL Certificate'  => 'SSL證',
     'SSL Key'  => 'SSL密鑰',
-    'SSL Certificate Authority / Intermediate'  => 'SSL認證機構/中級',
-    'SSL CSR' => 'SSL CSR',
+    'SSL Certificate Authority / Intermediate'  => 'SSL中繼憑證',
+    'SSL CSR' => 'SSL憑證簽署請求 (CSR)',
     'optional'  => '選用',
     'internal' => '內部',
     'Statistics Authorization'  => '統計授權',
     'Statistics Auth'  => '統計驗證',
     'Account'  => '帳號',
     'Prefix will be automaticaly added to username'  => '前綴 %s 將會自動加到使用者名稱',
+    'Path' => '路徑',
     'Send FTP credentials to email'  => '將FTP登入資料傳送到使用者信箱',
     'Expiration Date'  => '到期日期',
     'YYYY-MM-DD'  => 'YYYY-MM-DD',
-    'Name servers'  => 'NS伺服器',
+    'Name servers'  => '域名服務器',
     'Record'  => '紀錄',
     'IP or Value'  => 'IP或值',
     'Priority'  => '優先順序',
@@ -289,11 +306,12 @@ $LANG['tw'] = array(
     'web domains'  => '網站網域',
     'web aliases'  => '網站次網域',
     'dns records'  => 'DNS記錄',
+    'DNS Domains' => 'DNS網域',
     'mail domains'  => '信箱網域',
     'mail accounts'  => '信箱帳號',
     'accounts'  => '帳號',
     'databases'  => '資料庫',
-    'cron jobs'  => 'Cron Jobs',
+    'cron jobs'  => '任務排程',
     'backups'  => '備份',
     'quota'  => '配額',
     'day of week'  => '星期幾',
@@ -302,7 +320,7 @@ $LANG['tw'] = array(
     'domains'  => '網域',
     'aliases'  => '次網域',
     'records'  => '記錄',
-    'jobs'  => 'Jobs',
+    'jobs'  => '任務',
     'username'  => '使用者名稱',
     'password'  => '密碼',
     'type'  => '類型',
@@ -321,7 +339,7 @@ $LANG['tw'] = array(
     'first name'  => '名字',
     'last name'  => '姓氏',
     'account'  => '帳號',
-    'ssl certificate'  => 'SSL 證',
+    'ssl certificate'  => 'SSL 證',
     'ssl key'  => 'SSL密鑰',
     'stats user password'  => '統計使用者帳號密碼',
     'stats username'  => '統計使用者名稱',
@@ -337,14 +355,29 @@ $LANG['tw'] = array(
     'City / Locality' => '市 / 地區',
     'Organization' => '組織名稱',
     'Action' => '動作',
-    'Protocol' => 'Protocol',
-    'Port' => 'Port',
+    'Protocol' => '協議',
+    'Port' => '端口',
+    'Proxy Server' => '代理伺服器',
+    'Web Server' => '網頁伺服器',
+    'DNS Server' => 'DNS伺服器',
+    'MAIL Server' => '郵件伺服器',
+    'Antivirus' => '防毒系統',
+    'AntiSpam' => '防垃圾郵件',
+    'Webmail URL' => '網路信箱網址',
+    'MySQL Support' => 'MySQL支援',
+    'phpMyAdmin URL' => 'phpMyAdmin網址',
+    'Maximum Number Of Databases' => '資料庫最高可使用數量',
+    'Current Number Of Databases' => '資料庫目前已使用數量',
+    'PostgreSQL Support' => 'PostgreSQL支援',
+    'Local backup' => '本機備份',
+    'Compression level' => '壓縮程度',
+    'Directory' => '路徑',
+    'Remote backup' => '異地備份',
     'Comment' => '備註',
     'Banlist' => '黑名單',
     'ranges are acceptable' => '可使用範圍(例如:21-22)',
     'CIDR format is supported' => '支援CIDR格式',
-    'Add one more Name Server' => 'Add one more Name Server',
-
+    'Add one more Name Server' => '新增域名服務器',
     '1 account'  => '1 帳號',
     '%s accounts'  => '%s 帳號',
     '1 domain'  => '1 網域',
@@ -355,10 +388,10 @@ $LANG['tw'] = array(
     '%s mail accounts'  => '%s 信箱帳號',
     '1 database'  => '1 資料庫',
     '%s databases'  => '%s 資料庫',
-    '1 cron job'  => '1 Cron Job',
-    '%s cron jobs'  => '%s Cron Jobs',
-    '1 archive'  => '1 archive',
-    '%s archives'  => '%s archives',
+    '1 cron job'  => '1 任務排程',
+    '%s cron jobs'  => '%s 任務排程',
+    '1 archive'  => '1 壓縮',
+    '%s archives'  => '%s 壓縮',
     '1 package'  => '1 方案',
     '%s packages'  => '%s 方案',
     '1 IP address'  => '1 IP位置',
@@ -380,15 +413,15 @@ $LANG['tw'] = array(
     'MAIL_DOMAIN_CREATED_OK'  => '信箱網域 <a href="/list/mail/?domain=%s"><b>%s</b></a> 已加入成功!',
     'MAIL_ACCOUNT_CREATED_OK'  => '信箱帳號 <a href="/edit/mail/?account=%s&domain=%s"><b>%s@%s</b></a> 已加入成功!',
     'DATABASE_CREATED_OK'  => '資料庫 <a href="/edit/db/?database=%s"><b>%s</b></a> 已加入成功!',
-    'CRON_CREATED_OK'  => 'Cron Job 已加入成功!',
+    'CRON_CREATED_OK'  => '任務排程 已加入成功!',
     'IP_CREATED_OK'  => 'IP位置 <a href="/edit/ip/?ip=%s"><b>%s</b></a> 已加入成功!',
     'PACKAGE_CREATED_OK'  => '方案 <a href="/edit/package/?package=%s"><b>%s</b></a> 已加入成功!',
-    'SSL_GENERATED_OK' => 'SSL證 已加入成功!',
+    'SSL_GENERATED_OK' => 'SSL證 已加入成功!',
     'RULE_CREATED_OK' => 'Rule 已加入成功!',
     'Autoupdate has been successfully enabled' => '自動更新已成功啟動',
     'Autoupdate has been successfully disabled' => '自動更新已成功關閉',
-    'Cronjob email reporting has been successfully enabled' => 'Cron Job 電子郵件回報已成功啟動',
-    'Cronjob email reporting has been successfully disabled' => 'Cron Job 電子郵件回報已成功關閉',
+    'Cronjob email reporting has been successfully enabled' => '任務排程 電子郵件回報已成功啟動',
+    'Cronjob email reporting has been successfully disabled' => '任務排程 電子郵件回報已成功關閉',
     'Changes has been saved.'  => '已儲存更改',
     'Confirmation'  => 'Confirmation',
     'DELETE_USER_CONFIRMATION' => '確定要刪除使用者 %s 嗎?',
@@ -406,9 +439,9 @@ $LANG['tw'] = array(
     'DELETE_DATABASE_CONFIRMATION' => '確定要刪除資料庫 %s 嗎?',
     'SUSPEND_DATABASE_CONFIRMATION' => '確定要封鎖資料庫 %s 嗎?',
     'UNSUSPEND_DATABASE_CONFIRMATION' => '確定要解除封鎖資料庫 %s 嗎?',
-    'DELETE_CRON_CONFIRMATION' => '確定要刪除 Cron Job嗎?',
-    'SUSPEND_CRON_CONFIRMATION' => '確定要封鎖 Cron Job嗎?',
-    'UNSUSPEND_CRON_CONFIRMATION' => '確定要解除封鎖 Cron Job嗎?',
+    'DELETE_CRON_CONFIRMATION' => '確定要刪除 任務排程嗎?',
+    'SUSPEND_CRON_CONFIRMATION' => '確定要封鎖 任務排程嗎?',
+    'UNSUSPEND_CRON_CONFIRMATION' => '確定要解除封鎖 任務排程嗎?',
     'DELETE_BACKUP_CONFIRMATION'  => '確定要刪除 %s 備份嗎?',
     'DELETE_EXCLUSION_CONFIRMATION' => '確定要刪除 %s 例外嗎?',
     'DELETE_PACKAGE_CONFIRMATION'  => '確定要方案 %s 嗎?',
@@ -433,12 +466,12 @@ $LANG['tw'] = array(
     'BACKUP_EXISTS'  => '已經有一個備份正在執行中,請等待備份完成後在操作',
     'RESTORE_SCHEDULED'  => '您的要求已加入隊列中,回復完成後會再以電子郵件通知您',
     'RESTORE_EXISTS'  => '已經有一個回復正在執行中,請等待備份完成後在操作',
-    'WEB_EXCLUSIONS' => "Type domain name, one per line. To exclude all domains use *. To exclude specific dirs use following format: domain.com:public_html/cache:public_html/tmp",
-    'DNS_EXCLUSIONS' => "Type domain name, one per line. To exclude all domains use *",
-    'MAIL_EXCLUSIONS' => "Type domain name, one per line. To exclude all domains use *. To exclude specific accounts use following format: domain.com:info:support:postmaster",
-    'DB_EXCLUSIONS' => "Type full database name, one per line. To exclude all databases use *",
-    'CRON_EXCLUSIONS' => "To exclude all jobs use *",
-    'USER_EXCLUSIONS' => "Type directory name, one per line. To exlude all dirs use *",
+    'WEB_EXCLUSIONS' => "輸入網域名稱,每行一個網域。如要排除備份所有網域請使用*。排除特定的資料夾請依照這個格式: Example.com:public_html/cache:public_html/tmp",
+    'DNS_EXCLUSIONS' => "輸入網域名稱,每行一個網域。如要排除備份所有網域請使用*",
+    'MAIL_EXCLUSIONS' => "輸入網域名稱,每行一個網域。如要排除備份所有網域請使用*。要排除特定使用者請依照這個格式: Example.com:info:support:postmaster",
+    'DB_EXCLUSIONS' => "輸入完整資料庫名城,每行一個資料庫。如要排除備份所有資料庫請使用*",
+    'CRON_EXCLUSIONS' => "要排除備份所有任務排程請使用*",
+    'USER_EXCLUSIONS' => "輸入要排除備份的資料夾名稱,每行一個資料夾。如要排除備份所有資料夾請使用*",
     'Welcome to Vesta Control Panel'  => '歡迎來到 Vesta 管理系統',
     'MAIL_FROM'  => 'Vesta 管理系統 <noreply@%s>',
     'GREETINGS_GORDON_FREEMAN' => "您好, %s %s,\n",
@@ -446,7 +479,7 @@ $LANG['tw'] = array(
     'ACCOUNT_READY' => "您的帳號已成功建立,並可以開始使用了!\n\nhttps://%s/login/\n使用者名稱: %s\n密碼: %s\n\n--\nVesta Control Panel\n",
     'FTP login credentials'  => 'FTP 登入資料',
     'FTP_ACCOUNT_READY' => "FTP帳號已成功建立,並可以開始使用了!\n\n主機名稱: %s\n使用者名稱: %s_%s\n密碼: %s\n\n--\nVesta Control Panel\n",
-    'Database Credentials'  => "Database 登入資料",
+    'Database Credentials'  => "資料庫 登入資料",
     'DATABASE_READY' => "資料庫已加入成功!\n\n資料庫名稱: %s\n使用者名稱: %s\n密碼: %s\n%s\n\n--\nVesta Control Panel\n",
     'forgot password'  => '忘記密碼',
     'Confirm'  => '確認',
@@ -457,625 +490,6 @@ $LANG['tw'] = array(
     'RESET_NOTICE'  => '',
     'RESET_CODE_SENT'  => '密買重設代碼已發送到您的信箱<br>',
     'MAIL_RESET_SUBJECT'  => '密碼重置在 %s',
-    'PASSWORD_RESET_REQUEST' => '重置密碼請點擊連結:\nhttps://%s/reset/?action=confirm&user=%s&code=%s\n\n或者您可以到 https://%s/reset/?action=code&user=%s 輸入密碼重設代碼:\n%s\n\n如果您沒有要求重設密碼,請忽略此郵件\n\n—\nVesta Control Panel\n',
-);
-
-
-
-<?php
-/**
- * Vesta language file
- * 吳汝剛 (ak6783@gmail.com)
- */
-
-$LANG['tw'] = array(
-    'Packages'  => '套件',
-    'IP'  => 'IP',
-    'Graphs'  => '圖表',
-    'Statistics'  => '狀態',
-    'Log'  => '日誌',
-    'Server'  => '服務器',
-    'Services'  => '服務',
-    'Firewall' => '防火牆',
-    'Updates'  => '更新',
-    'Log in'  => '登入',
-    'Log out'  => '登出',
-
-    'USER'  => '使用者',
-    'WEB'  => '網頁',
-    'DNS'  => 'DNS',
-    'MAIL'  => '電子郵件',
-    'DB'  => '資料庫',
-    'CRON'  => '排程',
-    'BACKUP'  => '備份',
-
-    'Add User'  => '新增使用者',
-    'Add Domain'  => '新增網域',
-    'Add Web Domain'  => '新增網頁網域',
-    'Add DNS Domain'  => '新增 DNS 網域',
-    'Add DNS Record'  => '新增 DNS 紀錄',
-    'Add Mail Domain'  => '新增電子郵件網域',
-    'Add Mail Account'  => '新增電子郵件帳號',
-    'Add Database'  => '新增資料庫',
-    'Add Cron Job'  => '新增排程工作',
-    'Create Backup'  => '建立備份',
-    'Configure'  => '設置',
-    'Restore All'  => '全部還原',
-    'Add Package'  => '新增套件',
-    'Add IP'  => '新增 IP 位址',
-    'Add Rule' => '新增規則',
-    'Ban IP Address' => '封鎖 IP 位址',
-    'Search'  => '搜尋',
-    'Add one more FTP Account' => '新增多個 FTP 帳號',
-    'Overall Statistics'  => '整體報告',
-    'Daily'  => '每天',
-    'Weekly'  => '每週',
-    'Monthly'  => '每星期',
-    'Yearly'  => '每年',
-    'Add'  => '新增',
-    'Back'  => '上一頁',
-    'Save'  => '儲存',
-    'Submit'  => '送出',
-
-    'toggle all'  => '全部切換',
-    'apply to selected'  => '套用到所選擇的',
-    'rebuild'  => '重建',
-    'rebuild web'  => '重建網頁',
-    'rebuild dns'  => '重建 dns',
-    'rebuild mail'  => '重建郵件',
-    'rebuild db'  => '重建資料庫',
-    'rebuild cron'  => '重建排程',
-    'update counters'  => '更新計數',
-    'suspend'  => '暫停',
-    'unsuspend'  => '取消暫停',
-    'delete'  => '刪除',
-    'show per user'  => '顯示每一個使用者',
-    'login as'  => '登入成為',
-    'logout'  => '登出',
-    'edit'  => '編輯',
-    'open webstats'  => '開啟網頁狀態',
-    'view logs'  => '檢視日誌',
-    'list records'  => '列出 %s 紀錄',
-    'add record'  => '新增紀錄',
-    'list accounts'  => '列出 %s 帳號',
-    'add account'  => '新增帳號',
-    'open webmail'  => '開啟網頁郵件',
-    'list fail2ban' => '列出 fail2ban',
-    'open %s'  => '開啟 %s',
-    'download'  => '下載',
-    'restore'  => '還原',
-    'configure restore settings'  => '設置還原設定',
-    'stop'  => '停止',
-    'start'  => '啟用',
-    'restart'  => '重啟',
-    'update'  => '更新',
-    'generate'  => '產生',
-    'Generate CSR' => '產生 CSR',
-    'reread IP' => '重讀 IP',
-    'enable autoupdate' => '啟用自動更新',
-    'disable autoupdate' => '停用自動更新',
-    'turn on notifications' => '開啟通知',
-    'turn off notifications' => '關閉通知',
-
-    'Adding User'  => '新增使用者中',
-    'Editing User'  => '編輯使用者中',
-    'Adding Domain'  => '新增網域中',
-    'Editing Domain'  => '編輯網域中',
-    'Adding DNS Domain'  => '新增 DNS 網域中',
-    'Editing DNS Domain'  => '編輯 DNS 網域中',
-    'Adding DNS Record'  => '新增 DNS 紀錄中',
-    'Editing DNS Record'  => '編輯 DNS 紀錄中',
-    'Adding Mail Domain'  => '新增電子郵件網域中',
-    'Editing Mail Domain'  => '編輯電子郵件網域中',
-    'Adding Mail Account'  => '新增電子郵件帳號中',
-    'Editing Mail Account'  => '編輯電子郵件帳號中',
-    'Adding database'  => '新增資料庫中',
-    'Editing Cron Job'  => '編輯排程工作中',
-    'Adding Cron Job'  => '新增排程工作中',
-    'Editing Database'  => '編輯資料庫中',
-    'Adding Package'  => '新增套件中',
-    'Editing Package'  => '編輯套件中',
-    'Adding IP address'  => '新增 IP 位址中',
-    'Editing IP Address'  => '編輯 IP 位址中',
-    'Editing Backup Exclusions' => '編輯備份排除名單中',
-    'Generating CSR' => '產生 CSR 中',
-    'Listing'  => '列出中',
-    'Search Results'  => '搜尋結果',
-    'Adding Firewall Rule' => '新增防火牆規則中',
-    'Editing Firewall Rule' => '編輯防火牆規則中',
-    'Adding IP Address to Banlist' => '新增 IP 位址到封鎖清單中',
-
-    'active'  => '活動',
-    'spnd'  => '暫停',
-    'suspended'  => '暫停',
-    'running'  => '執行中',
-    'stopped'  => '已停止',
-    'outdated'  => '已過期',
-    'updated'  => '已更新',
-
-    'yes'  => '是',
-    'no'  => '否',
-    'none'  => '沒有',
-    'pb'  => 'pb',
-    'tb'  => 'tb',
-    'gb'  => 'gb',
-    'mb'  => 'mb',
-    'minute'  => '分鐘',
-    'hour'  => '小時',
-    'day'  => '天',
-    'days'  => '天',
-    'hours'  => '小時',
-    'minutes'  => '分鐘',
-    'month'  => '月',
-    'package'  => '套件',
-    'Bandwidth'  => '流量',
-    'Disk'  => '磁碟',
-    'Web'  => '網頁',
-    'Mail'  => '郵件',
-    'Databases'  => '資料庫',
-    'User Directories'  => '使用者目錄',
-    'Template'  => '方案',
-    'Web Template'  => '網頁方案',
-    'Backend Template'  => 'Backend 方案',
-    'Proxy Template' =>'Proxy 方案',
-    'DNS Template'  => 'DNS 方案',
-    'Web Domains'  => '網頁網域',
-    'SSL Domains'  => 'SSL 網域',
-    'Web Aliases'  => '網頁別名',
-    'per domain'  => '每個網域',
-    'DNS Domains'  => 'DNS 網域',
-    'DNS Domains'  => 'DNS 網域',
-    'DNS records'   => 'DNS 紀錄'  ,
-    'Name Servers'  => '名稱伺服器(NS)',
-    'Mail Domains'  => '電子郵件網域',
-    'Mail Accounts'  => '電子郵件帳號',
-    'Cron Jobs'  => '排程工作',
-    'SSH Access'  => 'SSH 存取',
-    'IP Addresses'  => 'IP 位址',
-    'Backups'  => '備份',
-    'Backup System'  => '備份系統',
-    'backup exclusions' => '例外備份',
-    'template'  => '方案',
-    'SSL Support'  => 'SSL 功能',
-    'SSL Home Directory'  => 'SSL 家目錄',
-    'Proxy Support'  => 'Proxy 功能',
-    'Proxy Extensions'  => 'Proxy 額外',
-    'Web Statistics'  => '網頁狀態',
-    'Additional FTP Account'  => '其他的 FTP',
-    'SOA'  => 'SOA',
-    'TTL'  => 'TTL',
-    'Expire'  => '過期',
-    'Records'  => '紀錄',
-    'Catchall email'  => '抓取外部郵件',
-    'AntiVirus Support'  => '防毒支援',
-    'AntiSpam Support'  => '防垃圾信支援',
-    'DKIM Support'  => 'DKIM 支援',
-    'Accounts'  => '帳號',
-    'Quota'  => '額度',
-    'Autoreply'  => '自動回覆',
-    'Forward to'  => '轉寄到',
-    'Do not store forwarded mail' => '不要儲存轉寄郵件',
-    'database'  => '資料庫',
-    'User'  => '使用者',
-    'Host'  => '主機',
-    'Charset'  => '字元',
-    'Min'  => '分鐘',
-    'Hour'  => '小時',
-    'Day'  => '天',
-    'Month'  => '月',
-    'Day of week'  => '星期幾',
-    'local'  => '本地',
-    'Run Time'  => '執行時間',
-    'Backup Size'  => '備份大小',
-    'SYS'  => 'SYS',
-    'Domains'  => '網域',
-    'Status'  => '狀態',
-    'shared'  => '已分享',
-    'dedicated'  => '專屬',
-    'Owner' => '擁有者',
-    'Users'  => '使用者',
-    'Load Average'  => '負載平均',
-    'Memory Usage'  => '記憶體使用量',
-    'HTTPD Usage'  => '網頁使用量',
-    'NGINX Usage'  => 'NGINX 使用量',
-    'MySQL Usage on localhost'  => 'MySQL 在本機使用',
-    'PostgreSQL Usage on localhost'  => 'PostgreSQL 在本機使用',
-    'Bandwidth Usage eth0'  => 'eth0 的流量',
-    'FTP Usage'  => 'FTP 使用量',
-    'SSH Usage'  => 'SSH 使用量',
-    'reverse proxy'  => '反向代理',
-    'web server'  => '網頁伺服器',
-    'dns server'  => 'dns 伺服器',
-    'mail server'  => '電子郵件伺服器',
-    'pop/imap server'  => 'pop/imap 伺服器',
-    'email antivirus'  => '郵件防毒',
-    'email antispam'  => '防垃圾信',
-    'database server'  => '資料庫伺服器',
-    'ftp server'  => 'ftp 伺服器',
-    'job scheduler'  => '工作行程',
-    'CPU'  => 'CPU',
-    'Memory'  => '記憶體',
-    'Uptime'  => '上線時間',
-    'core package'  => '核心套件',
-    'php interpreter'  => 'php 編譯器',
-    'internal web server'  => '內部網頁伺服器',
-    'Version'  => '版本',
-    'Release'  => '釋出',
-    'Architecture'  => '架構',
-    'Object'  => 'Object',
-    'Owner'  => '擁有者',
-    'Username'  => '帳號',
-    'Password'  => '密碼',
-    'Email'  => '電子郵件',
-    'Package'  => '套件',
-    'Language'  => '語系',
-    'First Name'  => '名',
-    'Last Name'  => '姓',
-    'Send login credentials to email address'  => '傳送登入憑證到電子郵件地址',
-    'Default Template'  => '預設方案',
-    'Default Name Servers'  => '預設名稱伺服器(NS)',
-    'Domain'  => '網域',
-    'DNS Support'  => 'DNS 功能',
-    'Mail Support'  => '電子郵件功能',
-    'Advanced options'  => '進階選項',
-    'Aliases'  => '別名',
-    'SSL Certificate'  => 'SSL 憑證',
-    'SSL Key'  => 'SSL 金鑰',
-    'SSL Certificate Authority / Intermediate'  => 'SSL 憑證權力 / 中級',
-    'SSL CSR' => 'SSL CSR',
-    'optional'  => '自訂',
-    'internal' => '內部',
-    'Statistics Authorization'  => '授權狀態',
-    'Statistics Auth'  => '授權狀態',
-    'Account'  => '帳號',
-    'Prefix will be automaticaly added to username'  => '字首 %s 將會自動加入到帳號',
-    'Send FTP credentials to email'  => '傳送 FTP 憑證到電子郵件地址',
-    'Expiration Date'  => '到期日',
-    'YYYY-MM-DD'  => 'YYYY-MM-DD',
-    'Name servers'  => '名稱伺服器(NS)',
-    'Record'  => '紀錄',
-    'IP or Value'  => 'IP 或是主機名稱',
-    'Priority'  => '優先權',
-    'Record Number' => '紀錄號碼',
-    'in megabytes'  => '在 MB',
-    'Message'  => '訊息',
-    'use local-part'  => '使用本地部份',
-    'one or more email addresses'  => '一個或多個電子郵件地址',
-    'Prefix will be automaticaly added to database name and database user'  => '字首  %s 將會自動新增到資料庫名稱和資料庫使用者名稱。',
-    'Database'  => '資料庫',
-    'Type'  => '類型',
-    'Minute'  => '分鐘',
-    'Command'  => '指令',
-    'Package Name'  => '套件名稱',
-    'Netmask'  => '子網路遮罩',
-    'Interface'  => '介面',
-    'Shared'  => '已分享',
-    'Assigned user'  => '分配的使用者',
-    'Assigned domain'  => '分配的網域',
-    'NAT IP association' => 'NAT IP 組合',
-    'shell'  => 'shell',
-    'web domains'  => '網頁網域',
-    'web aliases'  => '網頁別名',
-    'dns records'  => 'dns 紀錄',
-    'mail domains'  => '電子郵件網域',
-    'mail accounts'  => '電子郵件帳號',
-    'accounts'  => '帳號',
-    'databases'  => '資料庫',
-    'cron jobs'  => '排程工作',
-    'backups'  => '備份',
-    'quota'  => '額度',
-    'day of week'  => '星期幾',
-    'cmd'  => '指令',
-    'users'  => '使用者',
-    'domains'  => '網域',
-    'aliases'  => '別名',
-    'records'  => '紀錄',
-    'jobs'  => '工作',
-    'username'  => '帳號',
-    'password'  => '密碼',
-    'type'  => '類型',
-    'charset'  => '字元',
-    'domain'  => '網域',
-    'ip'  => 'ip',
-    'ip address'  => 'ip 位址',
-    'IP address'  => 'IP 位址',
-    'netmask'  => '子網路遮罩',
-    'interface'  => '介面',
-    'assigned user'  => '分配使用者',
-    'ns1'  => 'ns1',
-    'ns2'  => 'ns2',
-    'user'  => '使用者',
-    'email'  => '電子郵件',
-    'first name'  => '名',
-    'last name'  => '姓',
-    'account'  => '帳號',
-    'ssl certificate'  => 'ssl 憑證',
-    'ssl key'  => 'ssl 金鑰',
-    'stats user password'  => '統計帳號密碼',
-    'stats username'  => '統計帳號',
-    'stats password'  => '統計密碼',
-    'ftp user password'  => 'ftp 帳號密碼',
-    'ftp user'  => 'ftp 帳號',
-    'Last 70 lines of %s.%s.log' => '%s.%s.log 的最後70行',
-    'Download AccessLog' => '下載 AccessLog',
-    'Download ErrorLog' => '下載 ErrorLog',
-    'Country' => '國家',
-    '2 letter code' => '2個字元',
-    'State / Province' => '州 / 省',
-    'City / Locality' => '城市 / 地方',
-    'Organization' => '組織',
-    'Action' => '動作',
-    'Protocol' => '通訊協定',
-    'Port' => '連接埠',
-    'Comment' => '註解',
-    'Banlist' => '封鎖清單',
-    'ranges are acceptable' => '可使用範圍',
-    'CIDR format is supported' => 'CIDR 格式是支援的',
-    'Add one more Name Server' => 'Add one more Name Server',
-
-    'unlimited'  => 'unlimited',
-    '1 account'  => '1 帳號',
-    '%s accounts'  => '%s 帳號',
-    '1 domain'  => '1 網域',
-    '%s domains'  => '%s 網域',
-    '1 record'  => '1 紀錄',
-    '%s records'  => '%s 紀錄',
-    '1 mail account'  => '1 電子郵件帳號',
-    '%s mail accounts'  => '%s 電子郵件帳號',
-    '1 database'  => '1 資料庫',
-    '%s databases'  => '%s 資料庫',
-    '1 cron job'  => '1 排程工作',
-    '%s cron jobs'  => '%s 排程工作',
-    '1 archive'  => '1 檔案',
-    '%s archives'  => '%s 檔案',
-    '1 package'  => '1 套件',
-    '%s packages'  => '%s 套件',
-    '1 IP address'  => '1 IP 位址',
-    '%s IP addresses'  => '%s IP 位址',
-    '1 month'  => '1 月',
-    '%s months'  => '%s 月',
-    '1 log record'  => '1 日誌紀錄',
-    '%s log records'  => '%s 日誌紀錄',
-    '1 object'  => '1 object',
-    '%s objects'  => '%s objects',
-    'no exclusions' => '沒有排除',
-    '1 rule' => '1 規則',
-    '%s rules' => '%s 規則',
-    'There are no currently banned IP' => '現在沒有被封鎖的 IP',
-
-    'USER_CREATED_OK'  => '使用者 <a href="/edit/user/?user=%s"><b>%s</b></a> 已經建立成功。',
-    'WEB_DOMAIN_CREATED_OK'  => '網域 <a href="/edit/web/?domain=%s"><b>%s</b></a> 已經建立成功。',
-    'DNS_DOMAIN_CREATED_OK'  => 'DNS 網域 <a href="/list/dns/?domain=%s"><b>%s</b></a> 已經建立成功。',
-    'DNS_RECORD_CREATED_OK'  => '紀錄 <b>%s.%s</b> 已經建立成功。',
-    'MAIL_DOMAIN_CREATED_OK'  => '電子郵件網域 <a href="/list/mail/?domain=%s"><b>%s</b></a> 已經建立成功。',
-    'MAIL_ACCOUNT_CREATED_OK'  => '電子郵件帳號 <a href="/edit/mail/?account=%s&domain=%s"><b>%s@%s</b></a> 已經建立成功。',
-    'DATABASE_CREATED_OK'  => '資料庫 <a href="/edit/db/?database=%s"><b>%s</b></a> 已經建立成功。',
-    'CRON_CREATED_OK'  => '排程工作已經建立成功。',
-    'IP_CREATED_OK'  => 'IP 位址 <a href="/edit/ip/?ip=%s"><b>%s</b></a> 已經建立成功。',
-    'PACKAGE_CREATED_OK'  => '套件 <a href="/edit/package/?package=%s"><b>%s</b></a> 已經建立成功。',
-    'SSL_GENERATED_OK' => '憑證已經產生成功。',
-    'RULE_CREATED_OK' => '規則已經建立成功。',
-    'Autoupdate has been successfully enabled' => '自動更新已經成功啟用了。',
-    'Autoupdate has been successfully disabled' => '自動更新已經成功停用了。',
-    'Cronjob email reporting has been successfully enabled' => '排程工作的電子郵件回報已經成功啟用了',
-    'Cronjob email reporting has been successfully disabled' => '排程工作的電子郵件回報已經成功停用了',
-    'Changes has been saved.'  => '變更已經儲存。',
-    'Confirmation'  => '確認',
-    'DELETE_USER_CONFIRMATION' => '您確定要刪除使用者 %s 嗎?',
-    'SUSPEND_USER_CONFIRMATION' => '您確定要暫停使用者 %s 嗎?',
-    'UNSUSPEND_USER_CONFIRMATION' => '您確定要取消暫停使用者 %s 嗎?',
-    'DELETE_DOMAIN_CONFIRMATION' => '您確定要刪除網域 %s 嗎?',
-    'SUSPEND_DOMAIN_CONFIRMATION' => '您確定要暫停網域 %s 嗎?',
-    'UNSUSPEND_DOMAIN_CONFIRMATION' => '您確定要取消暫停網域 %s 嗎?',
-    'DELETE_RECORD_CONFIRMATION' => '您確定要刪除紀錄 %s 嗎?',
-    'SUSPEND_RECORD_CONFIRMATION' => '您確定要暫停紀錄 %s 嗎?',
-    'UNSUSPEND_RECORD_CONFIRMATION' => '您確定要取消暫停紀錄 %s 嗎?',
-    'DELETE_MAIL_ACCOUNT_CONFIRMATION' => '您確定要刪除 %s 嗎?',
-    'SUSPEND_MAIL_ACCOUNT_CONFIRMATION' => '您確定要暫停 %s 嗎?',
-    'UNSUSPEND_MAIL_ACCOUNT_CONFIRMATION' => '您確定要取消暫停 %s 嗎?',
-    'DELETE_DATABASE_CONFIRMATION' => '您確定要刪除資料庫 %s 嗎?',
-    'SUSPEND_DATABASE_CONFIRMATION' => '您確定要暫停資料庫 %s 嗎?',
-    'UNSUSPEND_DATABASE_CONFIRMATION' => '您確定要取消暫停資料庫 %s 嗎?',
-    'DELETE_CRON_CONFIRMATION' => '您確定要刪除排程工作嗎?',
-    'SUSPEND_CRON_CONFIRMATION' => '您確定要暫停排程工作嗎?',
-    'UNSUSPEND_CRON_CONFIRMATION' => '您確定要取消暫停排程工作嗎?',
-    'DELETE_BACKUP_CONFIRMATION'  => '您確定要刪除 %s 備份嗎?',
-    'DELETE_EXCLUSION_CONFIRMATION' => '您確定要刪除 %s 例外清單嗎?',
-    'DELETE_PACKAGE_CONFIRMATION'  => '您確定要刪除套件 %s 嗎?',
-    'DELETE_IP_CONFIRMATION'  => '您確定要刪除 IP 位址 %s 嗎?',
-    'DELETE_RULE_CONFIRMATION' => '您確定要刪除規則 #%s 嗎?',
-    'SUSPEND_RULE_CONFIRMATION' => '您確定要暫停規則  #%s 嗎?',
-    'UNSUSPEND_RULE_CONFIRMATION' => '您確定要取消暫停規則 #%s 嗎?',
-    'LEAVE_PAGE_CONFIRMATION' => 'Leave Page?',
-    'RESTART_CONFIRMATION' => '您確定您要重新啟動 %s 嗎?',
-    'Welcome'  => '歡迎',
-    'LOGGED_IN_AS'  => '登入為使用者 %s',
-    'Error'  => '錯誤',
-    'Invalid username or password'  => '無效的帳號或密碼。',
-    'Invalid username or code'  => '無效的帳號或驗證碼。',
-    'Passwords not match'  => '密碼不符合,',
-    'Please enter valid email address.'  => '請輸入正確的電子郵件地址。',
-    'Field "%s" can not be blank.'  => '欄位 "%s" 不可以空白。',
-    'Password is too short.'  => '密碼太短 (至少6個字元)',
-    'Error code:'  => '錯誤驗證碼: %s',
-    'SERVICE_ACTION_FAILED'  => '"%s" "%s" 失敗',
-    'IP address is in use' => 'IP 位址已被使用',
-    'BACKUP_SCHEDULED'  => '工作已經新增到佇列。當您的備份可以下載時您將會收到一封電子郵件通知。',
-    'BACKUP_EXISTS'  => '存在的備份排程正在執行中。請稍等讓備份完成。',
-    'RESTORE_SCHEDULED'  => '工作已經新增到佇列。當您的還原已經完成時您將會收到一封電子郵件通知。',
-    'RESTORE_EXISTS'  => '存在的還原排程正在執行中。在執行一次之前請稍等讓還原完成。',
-
-    'WEB_EXCLUSIONS' => "輸入網域名稱,一行一個。要排除所有網域請使用 *。要排除指定的目錄請使用以下格式: domain.com:public_html/cache:public_html/tmp",
-    'DNS_EXCLUSIONS' => "輸入網域名稱,一行一個。要排除所有網域請使用 *",
-    'MAIL_EXCLUSIONS' => "輸入網域名稱,一行一個。要排除所有網域請使用 *。要排除指定的帳號請使用以下格式: domain.com:info:support:postmaster",
-    'DB_EXCLUSIONS' => "輸入完整資料庫名稱,一行一個。要排除所有資料庫請使用 *",
-    'CRON_EXCLUSIONS' => "要排除所有工作請使用 *",
-    'USER_EXCLUSIONS' => "輸入目錄名稱,一行一個。要排除所有目錄請使用 *",
-
-    'Welcome to Vesta Control Panel'  => '歡迎來到 Vesta 虛擬主機系統',
-    'MAIL_FROM'  => 'Vesta 虛擬主機系統 <noreply@%s>',
-    'GREETINGS_GORDON_FREEMAN' => "您好, %s %s,\n",
-    'GREETINGS' => "您好,\n",
-    'ACCOUNT_READY' => "您的帳號已建立並可以使用了。\n\nhttps://%s/login/\n帳號: %s\n密碼: %s\n\n--\nVesta 虛擬主機系統\n",
-
-    'FTP login credentials'  => 'FTP 登入資料',
-    'FTP_ACCOUNT_READY' => "FTP 帳號已建立並可以使用了。\n\n主機位址: %s\n帳號: %s_%s\n密碼: %s\n\n--\nVesta 虛擬主機系統\n",
-
-    'Database Credentials'  => '資料庫資料',
-    'DATABASE_READY' => "資料庫已經建立成功。\n\n資料庫: %s\n帳號: %s\n密碼: %s\n%s\n\n--\nVesta 虛擬主機系統\n",
-
-    'forgot password'  => '忘記密碼',
-    'Confirm'  => '確認',
-    'New Password'  => '新的密碼',
-    'Confirm Password'  => '確認密碼',
-    'Reset'  => '重設',
-    'Reset Code'  => '重設驗證碼',
-    'RESET_NOTICE'  => '',
-    'RESET_CODE_SENT'  => '重設密碼的驗證碼已經寄到您的電子郵件地址<br>',
-    'MAIL_RESET_SUBJECT'  => '密碼重設在 %s',
-    'PASSWORD_RESET_REQUEST' => "要重設虛擬主機系統的密碼,請依照這個連結:\nhttps://%s/reset/?action=confirm&user=%s&code=%s\n\n另外,您可以到 https://%s/reset/?action=code&user=%s 並輸入以下的驗證碼:\n%s\n\n假如您沒有要求密碼重設,請忽略這封郵件並接受我們的道歉。\n\n--\nVesta 虛擬主機系統\n",
-
-    'Jan' => 'Jan',
-    'Feb' => 'Feb',
-    'Mar' => 'Mar',
-    'Apr' => 'Apr',
-    'May' => 'May',
-    'Jun' => 'Jun',
-    'Jul' => 'Jul',
-    'Aug' => 'Aug',
-    'Sep' => 'Sep',
-    'Oct' => 'Oct',
-    'Nov' => 'Nov',
-    'Dec' => 'Dec',
-
-    'Configuring Server' => 'Configuring Server',
-    'Hostname' => 'Hostname',
-    'Time Zone' => 'Time Zone',
-    'Default Language' => 'Default Language',
-    'FileSystem Disk Quota' => 'FileSystem Disk Quota',
-    'Vesta Control Panel Plugins' => 'Vesta Control Panel Plugins',
-    'preview' => 'preview',
-    'Reseller Role' => 'Reseller Role',
-    'Web Config Editor' => 'Web Config Editor',
-    'Template Manager' => 'Template Manager',
-    'Backup Migration Manager' => 'Backup Migration Manager',
-    'FileManager' => 'FileManager',
-    'show: CPU / MEM / NET / DISK' => 'show: CPU / MEM / NET / DISK',
-
-    'sort by' => 'sort by',
-    'Date' => 'Date',
-    'Starred' => 'Starred',
-    'Name' => 'Name',
-
-    'File Manager' => 'File Manager',
-    'type' => 'type',
-    'size' => 'size',
-    'date' => 'date',
-    'name' => 'name',
-    'Initializing' => 'Initializing',
-    'UPLOAD' => 'UPLOAD',
-    'NEW FILE' => 'NEW FILE',
-    'NEW DIR' => 'NEW DIR',
-    'DELETE' => 'DELETE',
-    'RENAME' => 'RENAME',
-    'RIGHTS' => 'RIGHTS',
-    'COPY' => 'COPY',
-    'ARCHIVE' => 'ARCHIVE',
-    'EXTRACT' => 'EXTRACT',
-    'DOWNLOAD' => 'DOWNLOAD',
-    'Hit' => 'Hit',
-    'to reload the page' => 'to reload the page',
-    'Directory name cannot be empty' => 'Directory name cannot be empty',
-    'File name cannot be empty' => 'File name cannot be empty',
-    'No file selected' => 'No file selected',
-    'No file or folder selected' => 'No file or folder selected',
-    'File type not supported' => 'File type not supported',
-    'Directory download not available in current version' => 'Directory download not available in current version',
-    'Directory not available' => 'Directory not available',
-    'Done' => 'Done',
-    'Close' => 'Close',
-    'Copy' => 'Copy',
-    'Cancel' => 'Cancel',
-    'Rename' => 'Rename',
-    'Change Rights' => 'Change Rights',
-    'Delete' => 'Delete',
-    'Extract' => 'Extract',
-    'Create' => 'Create',
-    'Compress' => 'Compress',
-    'OK' => 'OK',
-    'Are you sure you want to copy' => 'Are you sure you want to copy',
-    'Are you sure you want to delete' => 'Are you sure you want to delete',
-    'into' => 'into',
-    'existing files will be replaced' => 'existing files will be replaced',
-    'Original name' => 'Original name',
-    'File' => 'File',
-    'already exists' => 'already exists',
-    'Create file' => 'Create file',
-    'Create directory' => 'Create directory',
-    'read by owner' => 'read by owner',
-    'write by owner' => 'write by owner',
-    'execute/search by owner' => 'execute/search by owner',
-    'read by group' => 'read by group',
-    'write by group' => 'write by group',
-    'execute/search by group' => 'execute/search by group',
-    'read by others' => 'read by others',
-    'write by others' => 'write by others',
-    'execute/search by others' => 'execute/search by others',
-
-    'Add New object' => 'Add New object',
-    'Save Form' => 'Save Form',
-    'Cancel saving form' => 'Cancel saving form',
-    'Go to USER list' => 'Go to USER list',
-    'Go to WEB list' => 'Go to WEB list',
-    'Go to DNS list' => 'Go to DNS list',
-    'Go to MAIL list' => 'Go to MAIL list',
-    'Go to DB list' => 'Go to DB list',
-    'Go to CRON list' => 'Go to CRON list',
-    'Go to BACKUP list' => 'Go to BACKUP list',
-    'Focus on search' => 'Focus on search',
-    'Display/Close shortcuts' => 'Display/Close shortcuts',
-    'Move backward through top menu' => 'Move backward through top menu',
-    'Move forward through top menu' => 'Move forward through top menu',
-    'Enter focused element' => 'Enter focused element',
-    'Move up through elements list' => 'Move up through elements list',
-    'Move down through elements list' => 'Move down through elements list',
-
-    'Upload' => 'Upload',
-    'New File' => 'New File',
-    'New Folder' => 'New Folder',
-    'Download' => 'Download',
-    'Rename' => 'Rename',
-    'Copy' => 'Copy',
-    'Archive' => 'Archive',
-    'Delete' => 'Delete',
-    'Save File (in text editor)' => 'Save File (in text editor)',
-    'Close Popup / Cancel' => 'Close Popup / Cancel',
-    'Move Cursor Up' => 'Move Cursor Up',
-    'Move Cursor Dow' => 'Move Cursor Dow',
-    'Switch to Left Tab' => 'Switch to Left Tab',
-    'Switch to Right Tab' => 'Switch to Right Tab',
-    'Switch Tab' => 'Switch Tab',
-    'Go to the Top of File List' => 'Go to the Top of File List',
-    'Go to the Last File' => 'Go to the Last File',
-    'Open File/Enter Directory' => 'Open File/Enter Directory',
-    'Go to Parent Directory' => 'Go to Parent Directory',
-    'Select Current File' => 'Select Current File',
-    'Select Bunch of Files' => 'Select Bunch of Files',
-    'Append File to the Current Selection' => 'Append File to the Current Selection',
-    'Select All Files' => 'Select All Files',
-    'shortcuts are inspired by magnificent GNU <a href="https://www.midnight-commander.org/">Midnight Commander</a> file manager' => 
-        'shortcuts are inspired by magnificent GNU <a href="https://www.midnight-commander.org/">Midnight Commander</a> file manager',
-
-    'Licence Key' => 'Licence Key',
-    'Enter License Key' => 'Enter License Key',
-    'Buy Licence' => 'Buy Licence',
-    'Buy Lifetime License' => 'Buy Lifetime License',
-    'Disable and Cancel Licence' => 'Disable and Cancel Licence',
-    'Licence Activated' => 'Licence Activated',
-    'Licence Deactivated' => 'Licence Deactivated',
-    'Restrict users so that they cannot use SSH and access only their home directory.' => 'Restrict users so that they cannot use SSH and access only their home directory.',
-    'Browse, copy, edit, view, and retrieve all of your web domain files using fully featured File Manager.' => 'Browse, copy, edit, view, and retrieve all of your web domain files using fully featured File Manager.',
-    'This is a commercial module, you would need to purchace license key to enable it.' => 'This is a commercial module, you would need to purchace license key to enable it.',
 
     'Minutes' => 'Minutes',
     'Hourly' => 'Hourly',
@@ -1105,5 +519,129 @@ $LANG['tw'] = array(
     'every' => 'every',
     'Hour' => 'Hour',
     'Minute' => 'Minute'
-
-);
+    'PASSWORD_RESET_REQUEST' => "重置密碼請點擊連結:\nhttps://%s/reset/?action=confirm&user=%s&code=%s\n\n或者您可以到 https://%s/reset/?action=code&user=%s 輸入密碼重設代碼:\n%s\n\n如果您沒有要求重設密碼,請忽略此郵件\n\n—\nVesta Control Panel\n",
+    'Jan' => '1月',
+    'Feb' => '2月',
+    'Mar' => '3月',
+    'Apr' => '4月',
+    'May' => '5月',
+    'Jun' => '6月',
+    'Jul' => '7月',
+    'Aug' => '8月',
+    'Sep' => '9月',
+    'Oct' => '10月',
+    'Nov' => '11月',
+    'Dec' => '12月',
+    'Configuring Server' => '配置主機',
+    'Hostname' => '主機名稱',
+    'Time Zone' => '時區',
+    'Default Language' => '預設語言',
+    'FileSystem Disk Quota' => '檔案系統硬碟配額',
+    'Vesta Control Panel Plugins' => 'Vesta Control Panel 外掛',
+    'preview' => '預覽',
+    'Reseller Role' => '經銷商權限',
+    'Web Config Editor' => '網站配置編輯器',
+    'Template Manager' => '模組管理器',
+    'Backup Migration Manager' => '備份轉移管理器',
+    'FileManager' => '檔案管理器',
+    'show: CPU / MEM / NET / DISK' => '顯示: 處理器 / 記憶體 / 網路 / 硬碟',
+    'sort by' => '排序按照',
+    'Date' => '日期',
+    'Starred' => '加註星號',
+    'Name' => '名稱',
+    'File Manager' => '檔案管理器',
+    'type' => '類型',
+    'size' => '大小',
+    'date' => '日期',
+    'name' => '名稱',
+    'Initializing' => '正在初始化',
+    'UPLOAD' => '上傳',
+    'NEW FILE' => '新增檔案',
+    'NEW DIR' => '新增資料夾',
+    'DELETE' => '刪除',
+    'RENAME' => '重新命名',
+    'COPY' => '複製',
+    'ARCHIVE' => '壓縮',
+    'EXTRACT' => '解壓縮',
+    'DOWNLOAD' => '下載',
+    'Hit' => 'Hit',
+    'to reload the page' => '重新整理頁面',
+    'Directory name cannot be empty' => '資料夾名稱不能為空白',
+    'File name cannot be empty' => '檔案名稱不能為空白',
+    'No file selected' => '還沒選取任何檔案',
+    'No file or folder selected' => '還沒有選取任何檔案或資料夾',
+    'File type not supported' => '尚未支援的檔案類型',
+    'Directory download not available in current version' => '目前的版本尚未支援資料夾下載',
+    'Directory not available' => '資料夾無法使用',
+    'Done' => '完成',
+    'Close' => '關閉',
+    'Copy' => '複製',
+    'Cancel' => '取消',
+    'Rename' => '重新命名',
+    'Delete' => '刪除',
+    'Extract' => '解壓縮',
+    'Create' => '新增',
+    'Compress' => '壓縮',
+    'OK' => '確定',
+    'Are you sure you want to copy' => '確定要複製',
+    'Are you sure you want to delete' => '確定要刪除',
+    'into' => '資訊',
+    'existing files will be replaced' => '原本的檔案會被覆蓋',
+    'Original name' => '原始名稱',
+    'File' => '檔案',
+    'already exists' => '已經存在',
+    'Create file' => '新增檔案',
+    'Create directory' => '新增資料夾',
+    'Add New object' => '新增',
+    'Save Form' => '儲存設定',
+    'Cancel saving form' => '不要儲存設定',
+    'Go to USER list' => '回到使用者列表',
+    'Go to WEB list' => '回到網站列表',
+    'Go to DNS list' => '回到DNS列表',
+    'Go to MAIL list' => '回到郵件列表',
+    'Go to DB list' => '回到資料庫列表',
+    'Go to CRON list' => '回到任務排程列表',
+    'Go to BACKUP list' => '回到備份列表',
+    'Focus on search' => '搜尋',
+    'Display/Close shortcuts' => '顯示/關閉 快捷鍵列表',
+    'Move backward through top menu' => '在頂置選單中向左移動',
+    'Move forward through top menu' => '在頂置選單中向右移動',
+    'Enter focused element' => '進去選擇的選項',
+    'Upload' => '上傳',
+    'New File' => '新增檔案',
+    'New Folder' => '新增資料夾',
+    'Download' => '下載',
+    'Rename' => '重新命名',
+    'Copy' => '複製',
+    'Archive' => '壓縮',
+    'Delete' => '刪除',
+    'Shortcuts' => '快捷鍵',
+    'Save File (in text editor)' => '儲存檔案 (在目前的文字編輯器)',
+    'Close Popup / Cancel' => '關閉快顯視窗 / 取消',
+    'Move Cursor Up' => '選項往上移',
+    'Move Cursor Down' => '選項往下移',
+    'Switch to Left Tab' => '切換到左邊的管理器',
+    'Switch to Right Tab' => '切換到右邊的管理器',
+    'Switch Tab' => '切換到另一邊的管理器',
+    'Go to the Top of the File List' => '回到檔案列表頂端',
+    'Go to the Last File' => '回到上個檔案',
+    'Open File / Enter Directory' => '開啟檔案 或 進入資料夾',
+    'Go to Parent Directory' => '回到上一頁',
+    'Select Current File' => '選取目前的檔案',
+    'Select Bunch of Files' => '選取多個檔案',
+    'Add File to the Current Selection' => '增加檔案到已選取的列表',
+    'Select All Files' => '選取所有檔案',
+    'shortcuts are inspired by magnificent GNU <a href="https://www.midnight-commander.org/">Midnight Commander</a> file manager' => 
+        "快捷鍵是的想法是由 magnificent GNU <a href='https://www.midnight-commander.org/'>Midnight Commander</a> 檔案管理器 啟發的<br> 繁體中文翻譯是由 <a href='https://host.clark-chen.com'>Clark's 虛擬主機服務</a> 總工程師 <a href='https://www.clark-chen.com/'>Clark Chen</a> 提供。",
+    'Save' => '儲存',
+    'Licence Key' => '授權金鑰',
+    'Enter License Key' => '輸入授權金鑰',
+    'Buy Licence' => '購買授權',
+    'Buy Lifetime License' => '購買永久授權',
+    'Disable and Cancel Licence' => '刪除並且取消授權',
+    'Licence Activated' => '授權已啟用',
+    'Licence Deactivated' => '授權已停用',
+    'Restrict users so that they cannot use SSH and access only their home directory.' => '禁止使用者使用SSH,並且只能存取他們自己的資料夾',
+    'Browse, copy, edit, view, and retrieve all of your web domain files using fully featured File Manager.' => '瀏覽、複製、編輯、存取你所有的網站資料使用全能的檔案管理器',
+    'This is a commercial module, you would need to purchace license key to enable it.' => '這是一個付費模組,您需要購買授權金鑰才能啟動它。'
+);