2 // +----------------------------------------------------------------------+
 
   3 // | Anuko Time Tracker
 
   4 // +----------------------------------------------------------------------+
 
   5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
 
   6 // +----------------------------------------------------------------------+
 
   7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
 
   8 // | by anyone for any purpose, and freely redistributed alone or in
 
   9 // | combination with other software, provided that the license is obeyed.
 
  11 // | There are only two ways to violate the license:
 
  13 // | 1. To redistribute this code in source form, with the copyright
 
  14 // |    notice or license removed or altered. (Distributing in compiled
 
  15 // |    forms without embedded copyright notices is permitted).
 
  17 // | 2. To redistribute modified versions of this code in *any* form
 
  18 // |    that bears insufficient indications that the modifications are
 
  19 // |    not the work of the original author(s).
 
  21 // | This license applies to this document only, not any other software
 
  22 // | that it may be combined with.
 
  24 // +----------------------------------------------------------------------+
 
  26 // | https://www.anuko.com/time_tracker/credits.htm
 
  27 // +----------------------------------------------------------------------+
 
  29 // Note: escape apostrophes with THREE backslashes, like here:  choisir l\\\'option.
 
  30 // Other characters (such as double-quotes in http links, etc.) do not have to be escaped.
 
  32 $i18n_language = '簡體中文';
 
  33 $i18n_months = array('一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月');
 
  34 $i18n_weekdays = array('星期天', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六');
 
  35 $i18n_weekdays_short = array('周日', '週一', '週二', '週三', '週四', '週五', '週六');
 
  37 $i18n_holidays = array('01/01', '01/02', '01/25', '01/26', '01/27', '01/28', '01/29', '01/30', '04/04', '09/03');
 
  39 $i18n_key_words = array(
 
  43 'menu.logout' => '登出',
 
  44 // TODO: translate the following.
 
  45 // 'menu.forum' => 'Forum',
 
  47 // Note to translators: menu.create_team needs a more accurate translation.
 
  48 'menu.create_team' => '創建新管理帳號',
 
  49 'menu.profile' => '編輯簡介', // TODO: Improve this, used to be "Edit profile", now just "Profile".
 
  50 'menu.time' => '我的時間記錄', // TODO: Improve this, used to be "My time", now just "Time".
 
  51 // TODO: translate the following.
 
  52 // 'menu.expenses' => 'Expenses',
 
  53 'menu.reports' => '報告',
 
  54 // TODO: translate the following.
 
  55 // 'menu.charts' => 'Charts',
 
  56 'menu.projects' => '項目',
 
  57 // TODO: translate the following.
 
  58 // 'menu.tasks' => 'Tasks',
 
  59 // 'menu.users' => 'Users',
 
  61 'menu.export' => '輸出資料',
 
  62 'menu.clients' => '客戶',
 
  63 'menu.options' => '選項',
 
  65 // Footer - strings on the bottom of most pages.
 
  66 // TODO: translate the following.
 
  67 // 'footer.contribute_msg' => 'You can contribute to Time Tracker in different ways.',
 
  68 // 'footer.credits' => 'Credits',
 
  69 // 'footer.license' => 'License',
 
  70 // 'footer.improve' => 'Contribute', // Translators: this could mean "Improve", if it makes better sense in your language.
 
  71                                      // This is a link to a webpage that describes how to contribute to the project.
 
  74 // TODO: translate the following.
 
  75 // 'error.access_denied' => 'Access denied.',
 
  76 // 'error.sys' => 'System error.',
 
  77 'error.db' => '資料庫錯誤',
 
  78 'error.field' => '不正確的"{0}"資料',
 
  79 'error.empty' => '欄目"{0}"為空',
 
  80 'error.not_equal' => '欄目"{0}"不等於欄目"{1}"',
 
  81 'error.interval' => '不正確的間隔',
 
  82 'error.project' => '選擇項目',
 
  83 'error.activity' => '選擇活動',
 
  84 'error.auth' => '不正確的用戶名或密碼',
 
  85 'error.user_exists' => '該使用者登錄資訊已經存在',
 
  86 'error.project_exists' => '該專案名稱已經存在',
 
  87 'error.activity_exists' => '該活動名稱已經存在',
 
  88 // TODO: translate the following.
 
  89 // 'error.client_exists' => 'Client with this name already exists.',
 
  90 'error.no_login' => '沒有該登錄資訊的使用者',
 
  91 'error.upload' => '上傳文件出錯',
 
  92 // TODO: translate the following.
 
  93 // 'error.range_locked' => 'Date range is locked.',
 
  94 'error.mail_send' => '發送郵件時出錯',
 
  95 'error.no_email' => '沒有電子郵件與該用戶名關聯',
 
  96 // TODO: translate the following.
 
  97 // 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
 
  98 // 'error.goto_uncompleted' => 'Go to uncompleted entry.',
 
  99 // 'error.overlap' => 'Time interval overlaps with existing records.',
 
 100 // 'error.future_date' => 'Date is in future.',
 
 102 // Labels for buttons.
 
 103 'button.login' => '登錄',
 
 104 'button.now' => '當前時間',
 
 105 'button.save' => '保存',
 
 106 'button.delete' => '刪除',
 
 107 'button.cancel' => '取消',
 
 108 'button.submit' => '提交',
 
 109 // TODO: check / improve translation of all button.add... strings.
 
 110 'button.add_user' => '添加新用戶',
 
 111 'button.add_project' => '添加新項目',
 
 112 'button.add_activity' => '添加新活動',
 
 113 'button.add_client' => '添加新客戶',
 
 114 'button.add' => '添加',
 
 115 'button.generate' => '創建',
 
 116 // Note to translators: button.reset_password needs to be translated.
 
 117 // 'button.reset_password' => 'reset password',
 
 118 'button.send' => '發送',
 
 119 'button.send_by_email' => '通過郵件發送',
 
 120 'button.save_as_new' => '另存為',
 
 121 // TODO: improve translation of button.create_team
 
 122 'button.create_team' => '創建新團隊',
 
 123 'button.export' => '輸出團隊資訊',
 
 124 'button.import' => '輸入團隊資訊',
 
 125 'button.apply' => '應用',
 
 127 // labels for controls on various forms
 
 128 // TODO: translate label.team_name
 
 129 // 'label.team_name' => 'team name',
 
 130 'label.currency' => '貨幣',
 
 131 // TODO: translate label.manager_name and label.manager_login.
 
 132 // 'label.manager_name' => 'manager name',
 
 133 // 'label.manager_login' => 'manager login',
 
 134 'label.password' => '密碼',
 
 135 'label.confirm_password' => '確認密碼',
 
 136 'label.email' => '電子郵件',
 
 138 // TODO: translate the following.
 
 139 // 'label.bcc' => 'Bcc',
 
 140 'label.subject' => '主題',
 
 141 'label.total' => '總計',
 
 142 // TODO: translate the following.
 
 143 // 'label.page' => 'Page',
 
 144 // 'label.condition' => 'Condition',
 
 145 // 'label.yes' => 'yes',
 
 146 // 'label.no' => 'no',
 
 149 // TODO: the entire title section is missing here. See the English file.
 
 151 "form.filter.project" => '項目',
 
 152 "form.filter.filter" => '收藏的報告',
 
 153 "form.filter.filter_new" => '保存到我的存檔',
 
 154 "form.filter.filter_confirm_delete" => '您確認要刪除收藏的這個報告嗎?',
 
 156 // login form attributes
 
 157 "form.login.title" => '登錄',
 
 158 "form.login.login" => '登錄',
 
 160 // password reminder form attributes
 
 161 "form.fpass.title" => '重設密碼',
 
 162 "form.fpass.login" => '登錄',
 
 163 "form.fpass.send_pass_str" => '密碼重設請求已經發送',
 
 164 "form.fpass.send_pass_subj" => 'Anuko時間追蹤器密碼重設請求',
 
 165 // Note to translators: the ending of this string below needs to be translated.
 
 166 "form.fpass.send_pass_body" => "親愛的用戶,\n\n有人,也可能是您自己,請求重新設置您的Anuko時間追蹤器密碼。如果您希望重設您的密碼,請訪問下麵的連結:\n\n%s\n\nAnuko Time Tracker is a simple, easy to use, open source time tracking system. Visit https://www.anuko.com for more information.\n\n",
 
 167 "form.fpass.reset_comment" => "要重設密碼,請輸入新密碼並點擊保存按鈕",
 
 169 // administrator form
 
 170 "form.admin.title" => '管理員',
 
 171 "form.admin.duty_text" => '通過創建新的團隊經理帳號來創建新團隊。<br>您也可以從其它的Anuko時間追蹤器伺服器的xml檔導入團隊資料(登錄資訊不能發生衝突)。',
 
 173 "form.admin.change_pass" => '修改管理員帳號的密碼',
 
 174 "form.admin.profile.title" => '團隊',
 
 175 "form.admin.profile.noprofiles" => '您的資料庫沒有任何記錄。請以管理員身份登錄並創建一個新團隊。',
 
 176 "form.admin.profile.comment" => '刪除團隊',
 
 177 "form.admin.profile.th.id" => 'ID號',
 
 178 "form.admin.profile.th.name" => '姓名',
 
 179 "form.admin.profile.th.edit" => '編輯',
 
 180 "form.admin.profile.th.del" => '刪除',
 
 181 "form.admin.profile.th.active" => '啟動',
 
 182 "form.admin.options" => '選項',
 
 183 "form.admin.custom_date_format" => "日期格式",
 
 184 "form.admin.custom_time_format" => "時間格式",
 
 185 "form.admin.start_week" => "每週的第一天",
 
 187 // my time form attributes
 
 188 "form.mytime.title" => '我的時間記錄',
 
 189 "form.mytime.edit_title" => '編輯時間記錄',
 
 190 "form.mytime.del_str" => '刪除時間記錄',
 
 191 "form.mytime.time_form" => ' (時:分)',
 
 192 "form.mytime.date" => '日期',
 
 193 "form.mytime.project" => '項目',
 
 194 "form.mytime.activity" => '活動',
 
 195 "form.mytime.start" => '開始',
 
 196 "form.mytime.finish" => '結束',
 
 197 "form.mytime.duration" => '持續時間',
 
 198 "form.mytime.note" => '備註',
 
 199 "form.mytime.behalf" => '每日工作,執行人員:',
 
 200 "form.mytime.daily" => '每日工作',
 
 201 "form.mytime.total" => '總小時數: ',
 
 202 "form.mytime.th.project" => '項目',
 
 203 "form.mytime.th.activity" => '活動',
 
 204 "form.mytime.th.start" => '開始',
 
 205 "form.mytime.th.finish" => '結束',
 
 206 "form.mytime.th.duration" => '持續時間',
 
 207 "form.mytime.th.note" => '備註',
 
 208 "form.mytime.th.edit" => '編輯',
 
 209 "form.mytime.th.delete" => '刪除',
 
 210 "form.mytime.del_yes" => '成功刪除時間記錄',
 
 211 "form.mytime.no_finished_rec" => '該記錄只保存了開始時間。這不是錯誤。如果需要,請登出。',
 
 212 "form.mytime.billable" => '計費時間',
 
 213 "form.mytime.warn_tozero_rec" => '由於這段時間是鎖定的,該時間記錄必須刪除',
 
 214 "form.mytime.uncompleted" => '未完成',
 
 216 // profile form attributes
 
 217 // Note to translators: we need a more accurate translation of form.profile.create_title
 
 218 "form.profile.create_title" => '創建新管理帳號',
 
 219 "form.profile.edit_title" => '編輯簡介',
 
 220 "form.profile.name" => '名字',
 
 221 "form.profile.login" => '登錄',
 
 223 "form.profile.showchart" => '顯示餅狀圖',
 
 224 "form.profile.lang" => '語言',
 
 225 "form.profile.custom_date_format" => "日期格式",
 
 226 "form.profile.custom_time_format" => "時間格式",
 
 227 "form.profile.default_format" => "(默認)",
 
 228 "form.profile.start_week" => "每週的第一天",
 
 230 // people form attributes
 
 231 "form.people.ppl_str" => '人員',
 
 232 "form.people.createu_str" => '新建用戶',
 
 233 "form.people.edit_str" => '編輯用戶',
 
 234 "form.people.del_str" => '刪除用戶',
 
 235 "form.people.th.name" => '姓名',
 
 236 "form.people.th.login" => '登錄',
 
 237 "form.people.th.role" => '角色',
 
 238 "form.people.th.edit" => '編輯',
 
 239 "form.people.th.del" => '刪除',
 
 240 "form.people.th.status" => '狀態',
 
 241 "form.people.th.project" => '項目',
 
 242 "form.people.th.rate" => '費率',
 
 243 "form.people.manager" => '經理',
 
 244 "form.people.comanager" => '合作經理人',
 
 245 "form.people.empl" => '用戶',
 
 246 "form.people.name" => '姓名',
 
 247 "form.people.login" => '登錄',
 
 249 "form.people.rate" => '默認小時收費',
 
 250 "form.people.comanager" => '合作經理人',
 
 251 "form.people.projects" => '項目',
 
 253 // projects form attributes
 
 254 "form.project.proj_title" => '項目',
 
 255 "form.project.edit_str" => '編輯專案',
 
 256 "form.project.add_str" => '添加新項目',
 
 257 "form.project.del_str" => '刪除項目',
 
 258 "form.project.th.name" => '名稱',
 
 259 "form.project.th.edit" => '編輯',
 
 260 "form.project.th.del" => '刪除',
 
 261 "form.project.name" => '名稱',
 
 263 // activities form attributes
 
 264 "form.activity.act_title" => '活動',
 
 265 "form.activity.add_title" => '新建活動',
 
 266 "form.activity.edit_str" => '編輯活動',
 
 267 "form.activity.del_str" => '刪除活動',
 
 268 "form.activity.name" => '名稱',
 
 269 "form.activity.project" => '項目',
 
 270 "form.activity.th.name" => '名稱',
 
 271 "form.activity.th.project" => '項目',
 
 272 "form.activity.th.edit" => '編輯',
 
 273 "form.activity.th.del" => '刪除',
 
 276 "form.report.title" => '報告',
 
 277 "form.report.from" => '開始日期',
 
 278 "form.report.to" => '結束日期',
 
 279 "form.report.groupby_user" => '用戶',
 
 280 "form.report.groupby_project" => '項目',
 
 281 "form.report.groupby_activity" => '活動',
 
 282 "form.report.duration" => '持續時間',
 
 283 "form.report.start" => '開始',
 
 284 "form.report.activity" => '活動',
 
 285 "form.report.show_idle" => '顯示空閒',
 
 286 "form.report.finish" => '結束',
 
 287 "form.report.note" => '備註',
 
 288 "form.report.project" => '項目',
 
 289 "form.report.totals_only" => '僅僅今天',
 
 290 "form.report.total" => '總計時間',
 
 291 "form.report.th.empllist" => '用戶',
 
 292 "form.report.th.date" => '日期',
 
 293 "form.report.th.project" => '項目',
 
 294 "form.report.th.activity" => '活動',
 
 295 "form.report.th.start" => '開始',
 
 296 "form.report.th.finish" => '結束',
 
 297 "form.report.th.duration" => '持續時間',
 
 298 "form.report.th.note" => '備註',
 
 300 // mail form attributes
 
 301 "form.mail.from" => '從',
 
 302 "form.mail.to" => '到',
 
 303 "form.mail.comment" => '留言',
 
 304 "form.mail.above" => '通過電子郵件發送該報告',
 
 305 // Note to translators: this string needs to be translated.
 
 306 // "form.mail.footer_str" => 'Anuko Time Tracker is a simple, easy to use, open source<br>time tracking system. Visit <a href="https://www.anuko.com">www.anuko.com</a> for more information.',
 
 307 "form.mail.sending_str" => '<b>消息已發送</b>',
 
 309 // invoice attributes
 
 310 "form.invoice.title" => '發票',
 
 311 "form.invoice.caption" => '發票',
 
 312 "form.invoice.above" => '發票附加資訊',
 
 313 "form.invoice.select_cust" => '選擇客戶',
 
 314 "form.invoice.fillform" => '填寫該欄目',
 
 315 "form.invoice.date" => '日期',
 
 316 "form.invoice.number" => '發票號碼',
 
 317 "form.invoice.tax" => '稅',
 
 318 "form.invoice.comment" => '留言',
 
 319 "form.invoice.th.username" => '收費人',
 
 320 "form.invoice.th.time" => '小時數',
 
 321 "form.invoice.th.rate" => '費率',
 
 322 "form.invoice.th.summ" => '帳號',
 
 323 "form.invoice.subtotal" => '共計',
 
 324 "form.invoice.customer" => '客戶',
 
 325 "form.invoice.mailinv_above" => '通過電子郵件發送此發票',
 
 326 "form.invoice.sending_str" => '<b>發票已送出</b>',
 
 328 "form.migration.zip" => '壓縮',
 
 329 "form.migration.file" => '選擇檔',
 
 330 "form.migration.import.title" => '導入數據',
 
 331 "form.migration.import.success" => '成功完成導入',
 
 332 "form.migration.import.text" => '從xml檔導入團隊資料',
 
 333 "form.migration.export.title" => '匯出數據',
 
 334 "form.migration.export.success" => '成功完成匯出',
 
 335 "form.migration.export.text" => '您可以將所有團隊資料匯出到xml檔。如果您要將資料轉移到您自己的伺服器,這項操作很有用。',
 
 336 "form.migration.compression.none" => '不压缩',
 
 337 "form.migration.compression.gzip" => 'gzip格式',
 
 338 "form.migration.compression.bzip" => 'bzip格式',
 
 340 "form.client.title" => '客戶',
 
 341 "form.client.add_title" => '添加客戶',
 
 342 "form.client.edit_title" => '編輯客戶',
 
 343 "form.client.del_title" => '刪除客戶',
 
 344 "form.client.th.name" => '姓名',
 
 345 "form.client.th.edit" => '編輯',
 
 346 "form.client.th.del" => '刪除',
 
 347 "form.client.name" => '姓名',
 
 348 "form.client.tax" => '稅',
 
 349 "form.client.comment" => '備註',
 
 351 // miscellaneous strings
 
 352 "forward.forgot_password" => '忘記密碼?',
 
 353 "forward.edit" => '編輯',
 
 354 "forward.delete" => '刪除',
 
 355 "forward.tocsvfile" => '將資料輸出到.csv文件',
 
 356 "forward.toxmlfile" => '將資料輸出到.xml文件',
 
 357 "forward.geninvoice" => '生成發票',
 
 358 "forward.change" => '客戶設置',
 
 360 // strings inside contols on forms
 
 361 "controls.select.project" => '--- 選擇項目 ---',
 
 362 "controls.select.activity" => '--- 選擇活動 ---',
 
 363 "controls.select.client" => '--- 選擇客戶 ---',
 
 364 "controls.project_bind" => '--- 全部 ---',
 
 365 "controls.all" => '--- 全部 ---',
 
 366 "controls.notbind" => '--- 無 ---',
 
 367 "controls.per_tm" => '本月',
 
 368 "controls.per_lm" => '上個月',
 
 369 "controls.per_tw" => '本周',
 
 370 "controls.per_lw" => '上周',
 
 371 "controls.per_td" => '今天',
 
 372 "controls.per_at" => '全部時間',
 
 373 "controls.per_ty" => '今年',
 
 374 "controls.sel_period" => '--- 選擇時間段 ---',
 
 375 "controls.sel_groupby" => '--- 沒有分組 ---',
 
 376 "controls.inc_billable" => '計費時間',
 
 377 "controls.inc_nbillable" => '非計費時間',
 
 378 "controls.default" => '--- 默認 ---',
 
 381 "label.chart.title1" => '活動用戶',
 
 382 "label.chart.title2" => '項目用戶',
 
 383 "label.chart.period" => '圖表期限',
 
 385 "label.pinfo" => '%s, %s',
 
 386 "label.pinfo2" => '%s',
 
 387 "label.pbehalf_info" => '%s %s <b>代表%s</b>',
 
 388 "label.pminfo" => ' (經理)',
 
 389 "label.pcminfo" => ' (合作經理人)',
 
 390 "label.painfo" => ' (管理員)',
 
 391 "label.time_noentry" => '沒有條目',
 
 392 "label.today" => '今天',
 
 393 "label.req_fields" => '* 必填欄目',
 
 394 "label.sel_project" => '選擇項目',
 
 395 "label.sel_activity" => '選擇活動',
 
 396 "label.sel_tp" => '選擇時間段',
 
 397 "label.set_tp" => '或設定日期',
 
 398 "label.fields" => '顯示欄目',
 
 399 "label.group_title" => '分組方式:',
 
 400 "label.include_title" => '包含記錄',
 
 401 "label.inv_str" => '發票',
 
 402 "label.set_empl" => '選擇用戶',
 
 403 "label.sel_all" => '全部選擇',
 
 404 "label.sel_none" => '全部不選',
 
 406 "label.disable" => '禁用',
 
 407 "label.enable" => '啟用',
 
 408 "label.filter" => '篩檢程式',
 
 409 "label.timeweek" => '一周總計',
 
 411 "label.errors" => '錯誤',
 
 412 "label.ldap_hint" => '在下麵的欄目輸入您的<b>Windows用戶名</b>和<b>密碼</b>。',
 
 413 // Note to translators: string below must be translated.
 
 414 // "label.calendar_today" => 'today',
 
 415 // "label.calendar_close" => 'close',
 
 418 // "login.hello.text" => "Anuko Time Tracker is a simple, easy to use, open source time tracking system.",