A bit more cleanup.
[timetracker.git] / WEB-INF / resources / zh-tw.lang.php
1 <?php
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.
10 // |
11 // | There are only two ways to violate the license:
12 // |
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).
16 // |
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).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
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.
31
32 $i18n_language = '簡體中文';
33 $i18n_months = array('一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月');
34 $i18n_weekdays = array('星期天', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六');
35 $i18n_weekdays_short = array('周日', '週一', '週二', '週三', '週四', '週五', '週六');
36 // format mm/dd
37 $i18n_holidays = array('01/01', '01/02', '01/25', '01/26', '01/27', '01/28', '01/29', '01/30', '04/04', '09/03');
38
39 $i18n_key_words = array(
40
41 // Menus - short selection strings that are displayed on top of application web pages.
42 // Example: https://timetracker.anuko.com (black menu on top).
43 'menu.login' => '登錄',
44 'menu.logout' => '登出',
45 // TODO: translate the following.
46 // 'menu.forum' => 'Forum',
47 'menu.help' => '幫助',
48 // TODO: translate the following.
49 // 'menu.create_team' => 'Create Team',
50 // 'menu.profile' => 'Profile',
51 // 'menu.time' => 'Time',
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',
60 'menu.teams' => '團隊',
61 'menu.export' => '輸出資料',
62 'menu.clients' => '客戶',
63 'menu.options' => '選項',
64
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.
72
73 // Error messages.
74 // TODO: All error messages should be complete sentences with a period (full stop) in the end. Put them there.
75 // TODO: translate the following.
76 // 'error.access_denied' => 'Access denied.',
77 // 'error.sys' => 'System error.',
78 'error.db' => '資料庫錯誤',
79 'error.field' => '不正確的"{0}"資料',
80 'error.empty' => '欄目"{0}"為空',
81 'error.not_equal' => '欄目"{0}"不等於欄目"{1}"',
82 // TODO: translate the following.
83 // 'error.interval' => 'Field "{0}" must be greater than "{1}".',
84 // 'error.project' => 'Select project.',
85 // 'error.task' => 'Select task.',
86 // 'error.client' => 'Select client.',
87 // 'error.report' => 'Select report.',
88 // 'error.record' => 'Select record.',
89 'error.auth' => '不正確的用戶名或密碼',
90 'error.user_exists' => '該使用者登錄資訊已經存在',
91 'error.project_exists' => '該專案名稱已經存在',
92 // TODO: translate the following.
93 // 'error.task_exists' => 'Task with this name already exists.',
94 // 'error.client_exists' => 'Client with this name already exists.',
95 // 'error.invoice_exists' => 'Invoice with this number already exists.',
96 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
97 'error.no_login' => '沒有該登錄資訊的使用者',
98 // TODO: translate the following.
99 // 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
100 'error.upload' => '上傳文件出錯',
101 // TODO: translate the following.
102 // 'error.range_locked' => 'Date range is locked.',
103 'error.mail_send' => '發送郵件時出錯',
104 'error.no_email' => '沒有電子郵件與該用戶名關聯',
105 // TODO: translate the following.
106 // 'error.uncompleted_exists' => 'Uncompleted entry already exists. Close or delete it.',
107 // 'error.goto_uncompleted' => 'Go to uncompleted entry.',
108 // 'error.overlap' => 'Time interval overlaps with existing records.',
109 // 'error.future_date' => 'Date is in future.',
110
111 // Labels for buttons.
112 'button.login' => '登錄',
113 'button.now' => '當前時間',
114 'button.save' => '保存',
115 // TODO: translate the following.
116 // 'button.copy' => 'Copy',
117 'button.cancel' => '取消',
118 'button.submit' => '提交',
119 // TODO: translate the following.
120 // 'button.add_user' => 'Add user',
121 // 'button.add_project' => 'Add project',
122 // 'button.add_task' => 'Add task',
123 // 'button.add_client' => 'Add client',
124 // 'button.add_invoice' => 'Add invoice',
125 // 'button.add_option' => 'Add option',
126 'button.add' => '添加',
127 'button.generate' => '創建',
128 // TODO: translate the following.
129 // 'button.reset_password' => 'Reset password',
130 'button.send' => '發送',
131 'button.send_by_email' => '通過郵件發送',
132 // TODO: translate the following.
133 // 'button.create_team' => 'Create team',
134 'button.export' => '輸出團隊資訊',
135 'button.import' => '輸入團隊資訊',
136 // TODO: translate the following.
137 // 'button.close' => 'Close',
138 // 'button.stop' => 'Stop',
139
140 // Labels for controls on forms. Labels in this section are used on multiple forms.
141 // TODO: translate the following.
142 // 'label.team_name' => 'Team name',
143 // 'label.address' => 'Address',
144 'label.currency' => '貨幣',
145 // TODO: translate the following.
146 // 'label.manager_name' => 'Manager name',
147 // 'label.manager_login' => 'Manager login',
148 // 'label.person_name' => 'Name',
149 // 'label.thing_name' => 'Name',
150 'label.login' => '登錄',
151 'label.password' => '密碼',
152 'label.confirm_password' => '確認密碼',
153 'label.email' => '電子郵件',
154 'label.cc' => '抄送',
155 // TODO: translate the following.
156 // 'label.bcc' => 'Bcc',
157 'label.subject' => '主題',
158 // TODO: translate the following.
159 // 'label.date' => 'Date',
160 // 'label.start_date' => 'Start date',
161 // 'label.end_date' => 'End date',
162 // 'label.user' => 'User',
163 // 'label.users' => 'Users',
164 // 'label.client' => 'Client',
165 // 'label.clients' => 'Clients',
166 // 'label.option' => 'Option',
167 // 'label.invoice' => 'Invoice',
168 // 'label.project' => 'Project',
169 // 'label.projects' => 'Projects',
170 // 'label.task' => 'Task',
171 // 'label.tasks' => 'Tasks',
172 // 'label.description' => 'Description',
173 // 'label.start' => 'Start',
174 // 'label.finish' => 'Finish',
175 // 'label.duration' => 'Duration',
176 // 'label.note' => 'Note',
177 // 'label.notes' => 'Notes',
178 // 'label.item' => 'Item',
179 // 'label.cost' => 'Cost',
180 // 'label.day_total' => 'Day total',
181 // 'label.week_total' => 'Week total',
182 // 'label.month_total' => 'Month total',
183 'label.today' => '今天',
184 // TODO: translate the following.
185 // 'label.total_hours' => 'Total hours',
186 // 'label.total_cost' => 'Total cost',
187 // 'label.view' => 'View',
188 // 'label.edit' => 'Edit',
189 'label.delete' => '刪除',
190 // TODO: translate the following.
191 // 'label.configure' => 'Configure',
192 // 'label.select_all' => 'Select all',
193 // 'label.select_none' => 'Deselect all',
194 // 'label.day_view' => 'Day view',
195 // 'label.week_view' => 'Week view',
196 // 'label.id' => 'ID',
197 // 'label.language' => 'Language',
198 // 'label.decimal_mark' => 'Decimal mark',
199 // 'label.date_format' => 'Date format',
200 // 'label.time_format' => 'Time format',
201 // 'label.week_start' => 'First day of week',
202 // 'label.comment' => 'Comment',
203 // 'label.status' => 'Status',
204 // 'label.tax' => 'Tax',
205 // 'label.subtotal' => 'Subtotal',
206 'label.total' => '總計',
207 // TODO: translate the following.
208 // 'label.client_name' => 'Client name',
209 // 'label.client_address' => 'Client address',
210 // 'label.or' => 'or',
211 // 'label.error' => 'Error',
212 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
213 // 'label.required_fields' => '* - required fields',
214 // 'label.on_behalf' => 'on behalf of',
215 'label.role_manager' => '(經理)',
216 'label.role_comanager' => '(合作經理人)',
217 'label.role_admin' => '(管理員)',
218 // TODO: translate the following.
219 // 'label.page' => 'Page',
220 // 'label.condition' => 'Condition',
221 // 'label.yes' => 'yes',
222 // 'label.no' => 'no',
223 // Labels for plugins (extensions to Time Tracker that provide additional features).
224 // TODO: translate the following.
225 // 'label.custom_fields' => 'Custom fields',
226 // 'label.monthly_quotas' => 'Monthly quotas',
227 // 'label.type' => 'Type',
228 // 'label.type_dropdown' => 'dropdown',
229 // 'label.type_text' => 'text',
230 // 'label.required' => 'Required',
231 // 'label.fav_report' => 'Favorite report',
232 // 'label.cron_schedule' => 'Cron schedule',
233 // 'label.what_is_it' => 'What is it?',
234 // 'label.expense' => 'Expense',
235 // 'label.quantity' => 'Quantity',
236 // 'label.paid_status' => 'Paid status',
237 // 'label.paid' => 'Paid',
238 // 'label.mark_paid' => 'Mark paid',
239 // 'label.week_note' => 'Week note',
240 // 'label.week_list' => 'Week list',
241
242 // Form titles.
243 'title.login' => '登錄',
244 // TODO: translate the following.
245 // 'title.teams' => 'Teams',
246 // 'title.create_team' => 'Creating Team',
247 // 'title.edit_team' => 'Editing Team',
248 // 'title.delete_team' => 'Deleting Team',
249 'title.reset_password' => '重設密碼',
250 // TODO: translate the following.
251 // 'title.change_password' => 'Changing Password',
252 // 'title.time' => 'Time',
253 // 'title.edit_time_record' => 'Editing Time Record',
254 // 'title.delete_time_record' => 'Deleting Time Record',
255 // 'title.expenses' => 'Expenses',
256 // 'title.edit_expense' => 'Editing Expense Item',
257 // 'title.delete_expense' => 'Deleting Expense Item',
258 // 'title.predefined_expenses' => 'Predefined Expenses',
259 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
260 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
261 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
262 // 'title.reports' => 'Reports',
263 // 'title.report' => 'Report',
264 // 'title.send_report' => 'Sending Report',
265 // 'title.invoice' => 'Invoice',
266 // 'title.send_invoice' => 'Sending Invoice',
267 // 'title.charts' => 'Charts',
268 // 'title.projects' => 'Projects',
269 // 'title.add_project' => 'Adding Project',
270 // 'title.edit_project' => 'Editing Project',
271 // 'title.delete_project' => 'Deleting Project',
272 // 'title.tasks' => 'Tasks',
273 // 'title.add_task' => 'Adding Task',
274 // 'title.edit_task' => 'Editing Task',
275 // 'title.delete_task' => 'Deleting Task',
276 // 'title.users' => 'Users',
277 // 'title.add_user' => 'Adding User',
278 // 'title.edit_user' => 'Editing User',
279 // 'title.delete_user' => 'Deleting User',
280 // 'title.clients' => 'Clients',
281 // 'title.add_client' => 'Adding Client',
282 // 'title.edit_client' => 'Editing Client',
283 // 'title.delete_client' => 'Deleting Client',
284 // 'title.invoices' => 'Invoices',
285 // 'title.add_invoice' => 'Adding Invoice',
286 // 'title.view_invoice' => 'Viewing Invoice',
287 // 'title.delete_invoice' => 'Deleting Invoice',
288 // 'title.notifications' => 'Notifications',
289 // 'title.add_notification' => 'Adding Notification',
290 // 'title.edit_notification' => 'Editing Notification',
291 // 'title.delete_notification' => 'Deleting Notification',
292 // 'title.monthly_quotas' => 'Monthly Quotas',
293 // 'title.export' => 'Exporting Team Data',
294 // 'title.import' => 'Importing Team Data',
295 // 'title.options' => 'Options',
296 // 'title.profile' => 'Profile',
297 // 'title.cf_custom_fields' => 'Custom Fields',
298 // 'title.cf_add_custom_field' => 'Adding Custom Field',
299 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
300 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
301 // 'title.cf_dropdown_options' => 'Dropdown Options',
302 // 'title.cf_add_dropdown_option' => 'Adding Option',
303 // 'title.cf_edit_dropdown_option' => 'Editing Option',
304 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
305 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
306 // It is also a name for the Locking plugin on the Team profile page.
307 // 'title.locking' => 'Locking',
308 // 'title.week_view' => 'Week View',
309
310 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
311 // Strings that are used in a single form must go to the specific form section.
312 // TODO: translate the following.
313 // 'dropdown.all' => '--- all ---',
314 // 'dropdown.no' => '--- no ---',
315 // 'dropdown.current_day' => 'today',
316 // 'dropdown.previous_day' => 'yesterday',
317 // 'dropdown.selected_day' => 'day',
318 // 'dropdown.current_week' => 'this week',
319 // 'dropdown.previous_week' => 'previous week',
320 // 'dropdown.selected_week' => 'week',
321 // 'dropdown.current_month' => 'this month',
322 // 'dropdown.previous_month' => 'previous month',
323 // 'dropdown.selected_month' => 'month',
324 // 'dropdown.current_year' => 'this year',
325 // 'dropdown.previous_year' => 'previous year',
326 // 'dropdown.selected_year' => 'year',
327 // 'dropdown.all_time' => 'all time',
328 // 'dropdown.projects' => 'projects',
329 // 'dropdown.tasks' => 'tasks',
330 // 'dropdown.clients' => 'clients',
331 // 'dropdown.select' => '--- select ---',
332 // 'dropdown.select_invoice' => '--- select invoice ---',
333 // 'dropdown.status_active' => 'active',
334 // 'dropdown.status_inactive' => 'inactive',
335 // 'dropdown.delete'=>'delete',
336 // 'dropdown.do_not_delete'=>'do not delete',
337 // 'dropdown.paid' => 'paid',
338 // 'dropdown.not_paid' => 'not paid',
339
340 // Login form. See example at https://timetracker.anuko.com/login.php.
341 // TODO: translate the following.
342 // 'form.login.forgot_password' => 'Forgot password?',
343 // 'form.login.about' =>'Anuko <a href="https://www.anuko.com/lp/tt_2.htm" target="_blank">Time Tracker</a> is a simple, easy to use, open source time tracking system.',
344
345 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
346 // TODO: translate the following.
347 // 'form.reset_password.message' => 'Password reset request sent by email.',
348 // 'form.reset_password.email_subject' => 'Anuko Time Tracker password reset request',
349 // 'form.reset_password.email_body' => "Dear User,\n\nSomeone, possibly you, requested your Anuko Time Tracker password reset. Please visit this link if you want to reset your password.\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",
350
351
352
353 // TODO: refactoring ongoing down from here.
354
355 "form.filter.project" => '項目',
356 "form.filter.filter" => '收藏的報告',
357 "form.filter.filter_new" => '保存到我的存檔',
358 "form.filter.filter_confirm_delete" => '您確認要刪除收藏的這個報告嗎?',
359
360 // password reminder form attributes
361 "form.fpass.login" => '登錄',
362 "form.fpass.send_pass_str" => '密碼重設請求已經發送',
363 "form.fpass.send_pass_subj" => 'Anuko時間追蹤器密碼重設請求',
364 // Note to translators: the ending of this string below needs to be translated.
365 "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",
366 "form.fpass.reset_comment" => "要重設密碼,請輸入新密碼並點擊保存按鈕",
367
368 // administrator form
369 "form.admin.title" => '管理員',
370 "form.admin.duty_text" => '通過創建新的團隊經理帳號來創建新團隊。<br>您也可以從其它的Anuko時間追蹤器伺服器的xml檔導入團隊資料(登錄資訊不能發生衝突)。',
371
372 "form.admin.change_pass" => '修改管理員帳號的密碼',
373 "form.admin.profile.title" => '團隊',
374 "form.admin.profile.noprofiles" => '您的資料庫沒有任何記錄。請以管理員身份登錄並創建一個新團隊。',
375 "form.admin.profile.comment" => '刪除團隊',
376 "form.admin.profile.th.id" => 'ID號',
377 "form.admin.profile.th.name" => '姓名',
378 "form.admin.profile.th.edit" => '編輯',
379 "form.admin.profile.th.del" => '刪除',
380 "form.admin.profile.th.active" => '啟動',
381 "form.admin.options" => '選項',
382 "form.admin.custom_date_format" => "日期格式",
383 "form.admin.custom_time_format" => "時間格式",
384 "form.admin.start_week" => "每週的第一天",
385
386 // my time form attributes
387 "form.mytime.title" => '我的時間記錄',
388 "form.mytime.edit_title" => '編輯時間記錄',
389 "form.mytime.del_str" => '刪除時間記錄',
390 "form.mytime.time_form" => ' (時:分)',
391 "form.mytime.date" => '日期',
392 "form.mytime.project" => '項目',
393 "form.mytime.activity" => '活動',
394 "form.mytime.start" => '開始',
395 "form.mytime.finish" => '結束',
396 "form.mytime.duration" => '持續時間',
397 "form.mytime.note" => '備註',
398 "form.mytime.behalf" => '每日工作,執行人員:',
399 "form.mytime.daily" => '每日工作',
400 "form.mytime.total" => '總小時數: ',
401 "form.mytime.th.project" => '項目',
402 "form.mytime.th.start" => '開始',
403 "form.mytime.th.finish" => '結束',
404 "form.mytime.th.duration" => '持續時間',
405 "form.mytime.th.note" => '備註',
406 "form.mytime.th.edit" => '編輯',
407 "form.mytime.th.delete" => '刪除',
408 "form.mytime.del_yes" => '成功刪除時間記錄',
409 "form.mytime.no_finished_rec" => '該記錄只保存了開始時間。這不是錯誤。如果需要,請登出。',
410 "form.mytime.billable" => '計費時間',
411 "form.mytime.warn_tozero_rec" => '由於這段時間是鎖定的,該時間記錄必須刪除',
412 "form.mytime.uncompleted" => '未完成',
413
414 // profile form attributes
415 // Note to translators: we need a more accurate translation of form.profile.create_title
416 "form.profile.create_title" => '創建新管理帳號',
417 "form.profile.edit_title" => '編輯簡介',
418 "form.profile.name" => '名字',
419 "form.profile.login" => '登錄',
420
421 "form.profile.showchart" => '顯示餅狀圖',
422 "form.profile.lang" => '語言',
423 "form.profile.custom_date_format" => "日期格式",
424 "form.profile.custom_time_format" => "時間格式",
425 "form.profile.default_format" => "(默認)",
426 "form.profile.start_week" => "每週的第一天",
427
428 // people form attributes
429 "form.people.ppl_str" => '人員',
430 "form.people.createu_str" => '新建用戶',
431 "form.people.edit_str" => '編輯用戶',
432 "form.people.del_str" => '刪除用戶',
433 "form.people.th.name" => '姓名',
434 "form.people.th.login" => '登錄',
435 "form.people.th.role" => '角色',
436 "form.people.th.edit" => '編輯',
437 "form.people.th.del" => '刪除',
438 "form.people.th.status" => '狀態',
439 "form.people.th.project" => '項目',
440 "form.people.th.rate" => '費率',
441 "form.people.manager" => '經理',
442 "form.people.comanager" => '合作經理人',
443 "form.people.empl" => '用戶',
444 "form.people.name" => '姓名',
445 "form.people.login" => '登錄',
446
447 "form.people.rate" => '默認小時收費',
448 "form.people.comanager" => '合作經理人',
449 "form.people.projects" => '項目',
450
451 // projects form attributes
452 "form.project.proj_title" => '項目',
453 "form.project.edit_str" => '編輯專案',
454 "form.project.add_str" => '添加新項目',
455 "form.project.del_str" => '刪除項目',
456 "form.project.th.name" => '名稱',
457 "form.project.th.edit" => '編輯',
458 "form.project.th.del" => '刪除',
459 "form.project.name" => '名稱',
460
461 // activities form attributes
462 "form.activity.act_title" => '活動',
463 "form.activity.add_title" => '新建活動',
464 "form.activity.edit_str" => '編輯活動',
465 "form.activity.del_str" => '刪除活動',
466 "form.activity.name" => '名稱',
467 "form.activity.project" => '項目',
468 "form.activity.th.name" => '名稱',
469 "form.activity.th.project" => '項目',
470 "form.activity.th.edit" => '編輯',
471 "form.activity.th.del" => '刪除',
472
473 // report attributes
474 "form.report.title" => '報告',
475 "form.report.from" => '開始日期',
476 "form.report.to" => '結束日期',
477 "form.report.groupby_user" => '用戶',
478 "form.report.groupby_project" => '項目',
479 "form.report.duration" => '持續時間',
480 "form.report.start" => '開始',
481 "form.report.finish" => '結束',
482 "form.report.note" => '備註',
483 "form.report.project" => '項目',
484 "form.report.totals_only" => '僅僅今天',
485 "form.report.total" => '總計時間',
486 "form.report.th.empllist" => '用戶',
487 "form.report.th.date" => '日期',
488 "form.report.th.project" => '項目',
489 "form.report.th.start" => '開始',
490 "form.report.th.finish" => '結束',
491 "form.report.th.duration" => '持續時間',
492 "form.report.th.note" => '備註',
493
494 // mail form attributes
495 "form.mail.from" => '從',
496 "form.mail.to" => '到',
497 "form.mail.comment" => '留言',
498 "form.mail.above" => '通過電子郵件發送該報告',
499 // Note to translators: this string needs to be translated.
500 // "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.',
501 "form.mail.sending_str" => '<b>消息已發送</b>',
502
503 // invoice attributes
504 "form.invoice.title" => '發票',
505 "form.invoice.caption" => '發票',
506 "form.invoice.above" => '發票附加資訊',
507 "form.invoice.select_cust" => '選擇客戶',
508 "form.invoice.fillform" => '填寫該欄目',
509 "form.invoice.date" => '日期',
510 "form.invoice.number" => '發票號碼',
511 "form.invoice.tax" => '稅',
512 "form.invoice.comment" => '留言',
513 "form.invoice.th.username" => '收費人',
514 "form.invoice.th.time" => '小時數',
515 "form.invoice.th.rate" => '費率',
516 "form.invoice.th.summ" => '帳號',
517 "form.invoice.subtotal" => '共計',
518 "form.invoice.customer" => '客戶',
519 "form.invoice.mailinv_above" => '通過電子郵件發送此發票',
520 "form.invoice.sending_str" => '<b>發票已送出</b>',
521
522 "form.migration.zip" => '壓縮',
523 "form.migration.file" => '選擇檔',
524 "form.migration.import.title" => '導入數據',
525 "form.migration.import.success" => '成功完成導入',
526 "form.migration.import.text" => '從xml檔導入團隊資料',
527 "form.migration.export.title" => '匯出數據',
528 "form.migration.export.success" => '成功完成匯出',
529 "form.migration.export.text" => '您可以將所有團隊資料匯出到xml檔。如果您要將資料轉移到您自己的伺服器,這項操作很有用。',
530 "form.migration.compression.none" => '不压缩',
531 "form.migration.compression.gzip" => 'gzip格式',
532 "form.migration.compression.bzip" => 'bzip格式',
533
534 "form.client.title" => '客戶',
535 "form.client.add_title" => '添加客戶',
536 "form.client.edit_title" => '編輯客戶',
537 "form.client.del_title" => '刪除客戶',
538 "form.client.th.name" => '姓名',
539 "form.client.th.edit" => '編輯',
540 "form.client.th.del" => '刪除',
541 "form.client.name" => '姓名',
542 "form.client.tax" => '稅',
543 "form.client.comment" => '備註',
544
545 // miscellaneous strings
546 "forward.forgot_password" => '忘記密碼?',
547 "forward.edit" => '編輯',
548 "forward.delete" => '刪除',
549 "forward.tocsvfile" => '將資料輸出到.csv文件',
550 "forward.toxmlfile" => '將資料輸出到.xml文件',
551 "forward.geninvoice" => '生成發票',
552 "forward.change" => '客戶設置',
553
554 // strings inside contols on forms
555 "controls.select.project" => '--- 選擇項目 ---',
556 "controls.select.activity" => '--- 選擇活動 ---',
557 "controls.select.client" => '--- 選擇客戶 ---',
558 "controls.project_bind" => '--- 全部 ---',
559 "controls.all" => '--- 全部 ---',
560 "controls.notbind" => '--- 無 ---',
561 "controls.per_tm" => '本月',
562 "controls.per_lm" => '上個月',
563 "controls.per_tw" => '本周',
564 "controls.per_lw" => '上周',
565 "controls.per_td" => '今天',
566 "controls.per_at" => '全部時間',
567 "controls.per_ty" => '今年',
568 "controls.sel_period" => '--- 選擇時間段 ---',
569 "controls.sel_groupby" => '--- 沒有分組 ---',
570 "controls.inc_billable" => '計費時間',
571 "controls.inc_nbillable" => '非計費時間',
572 "controls.default" => '--- 默認 ---',
573
574 // labels
575 "label.chart.title1" => '活動用戶',
576 "label.chart.title2" => '項目用戶',
577 "label.chart.period" => '圖表期限',
578
579 "label.pbehalf_info" => '%s %s <b>代表%s</b>',
580 "label.today" => '今天',
581 "label.req_fields" => '* 必填欄目',
582 "label.sel_project" => '選擇項目',
583 "label.sel_activity" => '選擇活動',
584 "label.sel_tp" => '選擇時間段',
585 "label.set_tp" => '或設定日期',
586 "label.fields" => '顯示欄目',
587 "label.group_title" => '分組方式:',
588 "label.include_title" => '包含記錄',
589 "label.inv_str" => '發票',
590 "label.set_empl" => '選擇用戶',
591 "label.sel_all" => '全部選擇',
592 "label.sel_none" => '全部不選',
593 "label.or" => '或',
594 "label.disable" => '禁用',
595 "label.enable" => '啟用',
596 "label.filter" => '篩檢程式',
597 "label.timeweek" => '一周總計',
598 "label.hrs" => '小時',
599 "label.errors" => '錯誤',
600 "label.ldap_hint" => '在下麵的欄目輸入您的<b>Windows用戶名</b>和<b>密碼</b>。',
601 );