Added handling of expiration dates.
[timetracker.git] / WEB-INF / resources / zh-cn.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 = 'Chinese (简体中文)';
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', '01/31', '05/01', '05/28', '05/29');
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 'menu.forum' => '论坛',
46 'menu.help' => '帮助',
47 // TODO: translate the following.
48 // 'menu.create_group' => 'Create Group',
49 'menu.profile' => '简介',
50 // TODO: translate the following.
51 // 'menu.group' => 'Group',
52 // 'menu.plugins' => 'Plugins',
53 'menu.time' => '时间记录',
54 'menu.expenses' => '费用',
55 'menu.reports' => '报告',
56 'menu.charts' => '图表',
57 'menu.projects' => '项目',
58 'menu.tasks' => '任务',
59 'menu.users' => '用户',
60 // TODO: translate the following.
61 // 'menu.groups' => 'Groups',
62 // 'menu.subgroups' => 'Subgroups',
63 'menu.export' => '导出数据',
64 'menu.clients' => '客户',
65 'menu.options' => '选项',
66
67 // Footer - strings on the bottom of most pages.
68 'footer.contribute_msg' => '你可以以不同的方式为Time Tracker提建议。',
69 'footer.credits' => '信用',
70 'footer.license' => '许可证',
71 'footer.improve' => '投稿',
72
73 // Error messages.
74 'error.access_denied' => '拒绝访问。',
75 'error.sys' => '系统错误。',
76 'error.db' => '数据库错误。',
77 // TODO: translate the following.
78 // 'error.feature_disabled' => 'Feature is disabled.',
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' => '选择项目。',
85 // TODO: translate the following.
86 // 'error.task' => 'Select task.',
87 'error.client' => '选择客户。',
88 // TODO: translate the following.
89 // 'error.report' => 'Select report.',
90 // 'error.record' => 'Select record.',
91 'error.auth' => '不正确的用户名或密码。',
92 'error.user_exists' => '该用户登录信息已经存在。',
93 // TODO: translate the following.
94 // 'error.object_exists' => 'Object with this name already exists.',
95 // 'error.invoice_exists' => 'Invoice with this number already exists.',
96 // 'error.role_exists' => 'Role with this rank already exists.',
97 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
98 'error.no_login' => '没有该登录信息的用户。',
99 'error.no_groups' => '您的数据库没有任何记录。请以管理员身份登录并创建一个新团队。', // TODO: replace "team" with "group".
100 'error.upload' => '上传文件出错。',
101 'error.range_locked' => '日期范围锁定。',
102 'error.mail_send' => '发送邮件时出错。',
103 // TODO: improve the translation above by adding MAIL_SMTP_DEBUG part.
104 // 'error.mail_send' => 'Error sending mail. Use MAIL_SMTP_DEBUG for diagnostics.',
105 'error.no_email' => '没有电子邮件与该用户名关联。',
106 'error.uncompleted_exists' => '未完成的条目已经存在。关闭或删除。',
107 'error.goto_uncompleted' => '进入未完成的条目。',
108 // TODO: translate the following.
109 // 'error.overlap' => 'Time interval overlaps with existing records.',
110 // 'error.future_date' => 'Date is in future.',
111 // 'error.xml' => 'Error in XML file at line %d: %s.',
112 // 'error.cannot_import' => 'Cannot import: %s.',
113 // 'error.format' => 'Invalid file format.',
114 // 'error.user_count' => 'Limit on user count.',
115 // 'error.expired' => 'Expiration date reached.',
116
117 // Warning messages.
118 // TODO: translate the following.
119 // 'warn.sure' => 'Are you sure?',
120 // 'warn.confirm_save' => 'Date has changed. Confirm saving, not copying this item.',
121
122 // Success messages.
123 // TODO: translate the following.
124 // 'msg.success' => 'Operation completed successfully.',
125
126 // Labels for buttons.
127 'button.login' => '登录',
128 'button.now' => '当前时间',
129 'button.save' => '保存',
130 // TODO: translate the following.
131 // 'button.copy' => 'Copy',
132 'button.cancel' => '取消',
133 'button.submit' => '提交',
134 'button.add' => '添加',
135 'button.delete' => '删除',
136 'button.generate' => '创建',
137 'button.reset_password' => '重置密码',
138 'button.send' => '发送',
139 'button.send_by_email' => '通过邮件发送',
140 // TODO: translate the following.
141 // 'button.create_group' => 'Create group',
142 'button.export' => '导出团队信息', // TODO: replace "team" with "group".
143 'button.import' => '导入团队信息', // TODO: replace "team" with "group".
144 'button.close' => '关闭',
145 // TODO: translate the following.
146 // 'button.stop' => 'Stop',
147
148 // Labels for controls on forms. Labels in this section are used on multiple forms.
149 'label.group_name' => '团队名称', // TODO: replace "team" with "group".
150 // TODO: translate the following.
151 // 'label.address' => 'Address',
152 'label.currency' => '货币',
153 'label.manager_name' => '管理员姓名',
154 'label.manager_login' => '管理员登录',
155 'label.person_name' => '姓名',
156 'label.thing_name' => '名称',
157 'label.login' => '登录',
158 'label.password' => '密码',
159 'label.confirm_password' => '确认密码',
160 'label.email' => '电子邮件',
161 'label.cc' => '抄送',
162 // TODO: translate the following.
163 // 'label.bcc' => 'Bcc',
164 'label.subject' => '主题',
165 'label.date' => '日期',
166 'label.start_date' => '开始日期',
167 'label.end_date' => '结束日期',
168 'label.user' => '用户',
169 'label.users' => '用户',
170 // TODO: translate the following.
171 // 'label.group' => 'Group',
172 // 'label.subgroups' => 'Subgroups',
173 // 'label.roles' => 'Roles',
174 'label.client' => '客户',
175 'label.clients' => '客户',
176 'label.option' => '选项',
177 'label.invoice' => '发票',
178 'label.project' => '项目',
179 'label.projects' => '项目',
180 // TODO: translate the following.
181 // 'label.task' => 'Task',
182 // 'label.tasks' => 'Tasks',
183 // 'label.description' => 'Description',
184 'label.start' => '开始',
185 'label.finish' => '结束',
186 'label.duration' => '持续时间',
187 'label.note' => '备注',
188 'label.notes' => '备注',
189 // TODO: translate the following.
190 // 'label.item' => 'Item',
191 // 'label.cost' => 'Cost',
192 // 'label.ip' => 'IP',
193 // 'label.day_total' => 'Day total',
194 'label.week_total' => '一周总计',
195 // TODO: translate the following.
196 // 'label.month_total' => 'Month total',
197 'label.today' => '今天',
198 // TODO: translate the following.
199 // 'label.view' => 'View',
200 'label.edit' => '编辑',
201 'label.delete' => '删除',
202 // TODO: translate the following.
203 // 'label.configure' => 'Configure',
204 'label.select_all' => '全部选择',
205 'label.select_none' => '全部不选',
206 // TODO: translate the following.
207 // 'label.day_view' => 'Day view',
208 // 'label.week_view' => 'Week view',
209 'label.id' => 'ID号',
210 'label.language' => '语言',
211 // TODO: translate the following.
212 // 'label.decimal_mark' => 'Decimal mark',
213 'label.date_format' => '日期格式',
214 'label.time_format' => '时间格式',
215 'label.week_start' => '每周的第一天',
216 'label.comment' => '留言',
217 'label.status' => '状态',
218 'label.tax' => '税',
219 // TODO: translate the following.
220 // 'label.subtotal' => 'Subtotal',
221 'label.total' => '总计',
222 // TODO: translate the following.
223 // 'label.client_name' => 'Client name',
224 // 'label.client_address' => 'Client address',
225 'label.or' => '或',
226 // TODO: translate the following.
227 // 'label.error' => 'Error',
228 'label.ldap_hint' => '在下面的栏目输入您的<b>Windows用户名</b>和<b>密码</b>。',
229 'label.required_fields' => '* 必填栏目',
230 'label.on_behalf' => '代表',
231 'label.role_manager' => '(经理)',
232 'label.role_comanager' => '(合作经理人)',
233 'label.role_admin' => '(管理员)',
234 'label.page' => '页码',
235 // TODO: translate the following.
236 // 'label.condition' => 'Condition',
237 // 'label.yes' => 'yes',
238 // 'label.no' => 'no',
239 // Labels for plugins (extensions to Time Tracker that provide additional features).
240 // TODO: translate the following.
241 // 'label.custom_fields' => 'Custom fields',
242 // 'label.monthly_quotas' => 'Monthly quotas',
243 // 'label.type' => 'Type',
244 // 'label.type_dropdown' => 'dropdown',
245 // 'label.type_text' => 'text',
246 // 'label.required' => 'Required',
247 'label.fav_report' => '收藏的报告',
248 // TODO: translate the following.
249 // 'label.schedule' => 'Schedule',
250 // 'label.what_is_it' => 'What is it?',
251 // 'label.expense' => 'Expense',
252 // 'label.quantity' => 'Quantity',
253 // 'label.paid_status' => 'Paid status',
254 // 'label.paid' => 'Paid',
255 // 'label.mark_paid' => 'Mark paid',
256 // 'label.week_note' => 'Week note',
257 // 'label.week_list' => 'Week list',
258 // 'label.work_units' => 'Work units',
259 // 'label.work_units_short' => 'Units',
260 // 'label.totals_only' => 'Totals only',
261 // 'label.quota' => 'Quota',
262
263 // Form titles.
264 // TODO: Translate the following.
265 // 'title.error' => 'Error',
266 // 'title.success' => 'Success',
267 'title.login' => '登录',
268 'title.groups' => '团队', // TODO: change "teams" to "groups".
269 // TODO: translate the following.
270 // 'title.subgroups' => 'Subgroups',
271 // 'title.add_group' => 'Adding Group',
272 // 'title.edit_group' => 'Editing Group',
273 'title.delete_group' => '删除团队', // TODO: change "team" to "group".
274 'title.reset_password' => '重设密码',
275 // TODO: translate the following.
276 // 'title.change_password' => 'Changing Password',
277 // 'title.time' => 'Time',
278 'title.edit_time_record' => '编辑时间记录',
279 'title.delete_time_record' => '删除时间记录',
280 // TODO: translate the following.
281 // 'title.expenses' => 'Expenses',
282 // 'title.edit_expense' => 'Editing Expense Item',
283 // 'title.delete_expense' => 'Deleting Expense Item',
284 // 'title.predefined_expenses' => 'Predefined Expenses',
285 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
286 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
287 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
288 'title.reports' => '报告',
289 'title.report' => '报告',
290 // TODO: translate the following.
291 // 'title.send_report' => 'Sending Report',
292 'title.invoice' => '发票',
293 // TODO: translate the following.
294 // 'title.send_invoice' => 'Sending Invoice',
295 // 'title.charts' => 'Charts',
296 'title.projects' => '项目',
297 'title.add_project' => '添加项目',
298 'title.edit_project' => '编辑项目',
299 'title.delete_project' => '删除项目',
300 // TODO: translate the following.
301 // 'title.tasks' => 'Tasks',
302 // 'title.add_task' => 'Adding Task',
303 // 'title.edit_task' => 'Editing Task',
304 // 'title.delete_task' => 'Deleting Task',
305 'title.users' => '用户',
306 'title.add_user' => '添加用户', // TODO: is this correct?
307 'title.edit_user' => '编辑用户',
308 'title.delete_user' => '删除用户',
309 // TODO: translate the following.
310 // 'title.roles' => 'Roles',
311 // 'title.add_role' => 'Adding Role',
312 // 'title.edit_role' => 'Editing Role',
313 // 'title.delete_role' => 'Deleting Role',
314 'title.clients' => '客户',
315 'title.add_client' => '添加客户',
316 'title.edit_client' => '编辑客户',
317 'title.delete_client' => '删除客户',
318 'title.invoices' => '发票',
319 // TODO: translate the following.
320 // 'title.add_invoice' => 'Adding Invoice',
321 // 'title.view_invoice' => 'Viewing Invoice',
322 // 'title.delete_invoice' => 'Deleting Invoice',
323 // 'title.notifications' => 'Notifications',
324 // 'title.add_notification' => 'Adding Notification',
325 // 'title.edit_notification' => 'Editing Notification',
326 // 'title.delete_notification' => 'Deleting Notification',
327 // 'title.monthly_quotas' => 'Monthly Quotas',
328 // 'title.export' => 'Exporting Group Data',
329 // 'title.import' => 'Importing Group Data',
330 'title.options' => '选项',
331 'title.profile' => '简介',
332 // TODO: translate the following.
333 // 'title.plugins' => 'Plugins',
334 // 'title.cf_custom_fields' => 'Custom Fields',
335 // 'title.cf_add_custom_field' => 'Adding Custom Field',
336 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
337 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
338 // 'title.cf_dropdown_options' => 'Dropdown Options',
339 // 'title.cf_add_dropdown_option' => 'Adding Option',
340 // 'title.cf_edit_dropdown_option' => 'Editing Option',
341 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
342 // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
343 // It is also a name for the Locking plugin on the group settings page.
344 // 'title.locking' => 'Locking',
345 // 'title.week_view' => 'Week View',
346 // 'title.swap_roles' => 'Swapping Roles',
347 // 'title.work_units' => 'Work Units',
348
349 // Section for common strings inside combo boxes on forms. Strings shared between forms shall be placed here.
350 // Strings that are used in a single form must go to the specific form section.
351 'dropdown.all' => '--- 全部 ---',
352 'dropdown.no' => '--- 无 ---',
353 'dropdown.current_day' => '今天',
354 'dropdown.previous_day' => '昨天',
355 'dropdown.selected_day' => '天',
356 'dropdown.current_week' => '本周',
357 'dropdown.previous_week' => '上周',
358 'dropdown.selected_week' => '周',
359 'dropdown.current_month' => '本月',
360 'dropdown.previous_month' => '上个月', // TODO: is this correct? Not 上月?
361 'dropdown.selected_month' => '月',
362 'dropdown.current_year' => '今年',
363 // TODO: translate the following.
364 // 'dropdown.previous_year' => 'previous year',
365 // 'dropdown.selected_year' => 'year',
366 'dropdown.all_time' => '全部时间',
367 'dropdown.projects' => '项目',
368 // TODO: translate the following.
369 // 'dropdown.tasks' => 'tasks',
370 'dropdown.clients' => '客户',
371 // TODO: translate the following.
372 // 'dropdown.select' => '--- select ---',
373 // 'dropdown.select_invoice' => '--- select invoice ---',
374 // 'dropdown.status_active' => 'active',
375 // 'dropdown.status_inactive' => 'inactive',
376 // 'dropdown.delete' => 'delete',
377 // 'dropdown.do_not_delete' => 'do not delete',
378 // 'dropdown.paid' => 'paid',
379 // 'dropdown.not_paid' => 'not paid',
380
381 // Login form. See example at https://timetracker.anuko.com/login.php.
382 'form.login.forgot_password' => '忘记密码?',
383 'form.login.about' => 'Anuko <a href="https://www.anuko.com/lp/tt_2.htm" target="_blank">Time Tracker</a> 是一种简单、易用、开放源代码的实时跟踪系统。',
384
385 // Resetting Password form. See example at https://timetracker.anuko.com/password_reset.php.
386 'form.reset_password.message' => '密码重设请求已经发送。', // TODO: Add "by email" to match the English string.
387 'form.reset_password.email_subject' => 'Anuko时间追踪器密码重设请求',
388 // TODO: translate the following.
389 // 'form.reset_password.email_body' => "Dear User,\n\nSomeone from IP %s 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",
390
391 // Changing Password form. See example at https://timetracker.anuko.com/password_change.php?ref=1.
392 // TODO: translate the following.
393 // 'form.change_password.tip' => 'Type new password and click on Save.',
394
395 // Time form. See example at https://timetracker.anuko.com/time.php.
396 'form.time.duration_format' => '(时:分 或 0.0h)',
397 'form.time.billable' => '计费时间',
398 'form.time.uncompleted' => '未完成',
399 // TODO: translate the following.
400 // 'form.time.remaining_quota' => 'Remaining quota',
401 // 'form.time.over_quota' => 'Over quota',
402 // 'form.time.remaining_balance' => 'Remaining balance',
403 // 'form.time.over_balance' => 'Over balance',
404
405 // Editing Time Record form. See example at https://timetracker.anuko.com/time_edit.php (get there by editing an uncompleted time record).
406 'form.time_edit.uncompleted' => '该记录只保存了开始时间。这不是错误。',
407
408 // Week view form. See example at https://timetracker.anuko.com/week.php.
409 // TODO: translate the following.
410 // 'form.week.new_entry' => 'New entry',
411
412 // Reports form. See example at https://timetracker.anuko.com/reports.php
413 'form.reports.save_as_favorite' => '保存到我的收藏夹',
414 'form.reports.confirm_delete' => '您确认要删除收藏的这个报告吗?',
415 'form.reports.include_billable' => '计费时间',
416 'form.reports.include_not_billable' => '非计费时间',
417 // TODO: translate the following.
418 // 'form.reports.include_invoiced' => 'invoiced',
419 // 'form.reports.include_not_invoiced' => 'not invoiced',
420 'form.reports.select_period' => '选择时间段',
421 'form.reports.set_period' => '或设定日期',
422 'form.reports.show_fields' => '显示栏目',
423 'form.reports.group_by' => '分组方式',
424 'form.reports.group_by_no' => '--- 没有分组 ---',
425 'form.reports.group_by_date' => '日期',
426 'form.reports.group_by_user' => '用户',
427 // TODO: translate the following.
428 // 'form.reports.group_by_client' => 'client',
429 'form.reports.group_by_project' => '项目',
430 // TODO: translate the following.
431 // 'form.reports.group_by_task' => 'task',
432
433 // Report form. See example at https://timetracker.anuko.com/report.php
434 // (after generating a report at https://timetracker.anuko.com/reports.php).
435 // TODO: translate the following.
436 // 'form.report.export' => 'Export',
437 // 'form.report.assign_to_invoice' => 'Assign to invoice',
438
439 // Invoice form. See example at https://timetracker.anuko.com/invoice.php
440 // (you can get to this form after generating a report).
441 'form.invoice.number' => '发票号码',
442 'form.invoice.person' => '人', // TODO: is this correct?
443
444 // Deleting Invoice form. See example at https://timetracker.anuko.com/invoice_delete.php
445 // 'form.invoice.invoice_to_delete' => 'Invoice to delete',
446 // 'form.invoice.invoice_entries' => 'Invoice entries',
447 // 'form.invoice.confirm_deleting_entries' => 'Please confirm deleting invoice entries from Time Tracker.',
448
449 // Charts form. See example at https://timetracker.anuko.com/charts.php
450 // TODO: translate the following.
451 // 'form.charts.interval' => 'Interval',
452 // 'form.charts.chart' => 'Chart',
453
454 // Projects form. See example at https://timetracker.anuko.com/projects.php
455 // TODO: translate the following.
456 // 'form.projects.active_projects' => 'Active Projects',
457 // 'form.projects.inactive_projects' => 'Inactive Projects',
458
459 // Tasks form. See example at https://timetracker.anuko.com/tasks.php
460 // TODO: translate the following.
461 // 'form.tasks.active_tasks' => 'Active Tasks',
462 // 'form.tasks.inactive_tasks' => 'Inactive Tasks',
463
464 // Users form. See example at https://timetracker.anuko.com/users.php
465 // TODO: translate the following.
466 // 'form.users.active_users' => 'Active Users',
467 // 'form.users.inactive_users' => 'Inactive Users',
468 // 'form.users.uncompleted_entry' => 'User has an uncompleted time entry',
469 'form.users.role' => '角色',
470 'form.users.manager' => '经理',
471 'form.users.comanager' => '合作经理人',
472 'form.users.rate' => '费率',
473 'form.users.default_rate' => '默认小时收费',
474
475 // Editing User form. See example at https://timetracker.anuko.com/user_edit.php
476 // TODO: translate the following.
477 // 'form.user_edit.swap_roles' => 'Swap roles',
478
479 // Roles form. See example at https://timetracker.anuko.com/roles.php
480 // TODO: translate the following.
481 // 'form.roles.active_roles' => 'Active Roles',
482 // 'form.roles.inactive_roles' => 'Inactive Roles',
483 // 'form.roles.rank' => 'Rank',
484 // 'form.roles.rights' => 'Rights',
485 // 'form.roles.assigned' => 'Assigned',
486 // 'form.roles.not_assigned' => 'Not assigned',
487
488 // Clients form. See example at https://timetracker.anuko.com/clients.php
489 // TODO: translate the following.
490 // 'form.clients.active_clients' => 'Active Clients',
491 // 'form.clients.inactive_clients' => 'Inactive Clients',
492
493 // Deleting Client form. See example at https://timetracker.anuko.com/client_delete.php
494 // TODO: translate the following.
495 // 'form.client.client_to_delete' => 'Client to delete',
496 // 'form.client.client_entries' => 'Client entries',
497
498 // Exporting Group Data form. See example at https://timetracker.anuko.com/export.php
499 // TODO: replace "team" with "group" in the string below.
500 'form.export.hint' => '您可以将所有团队数据导出到xml文件。如果您要将数据转移到您自己的服务器,这项操作很有用。',
501 'form.export.compression' => '压缩',
502 'form.export.compression_none' => '不压缩',
503 'form.export.compression_bzip' => 'bzip格式',
504
505 // Importing Group Data form. See example at https://timetracker.anuko.com/import.php (login as admin first).
506 'form.import.hint' => '从xml文件导入团队数据。', // TODO: replace "team" with "group".
507 'form.import.file' => '选择档',
508 'form.import.success' => '成功完成导入。',
509
510 // Groups form. See example at https://timetracker.anuko.com/admin_groups.php (login as admin first).
511 // TODO: replace "team" with "group" in the string below.
512 'form.groups.hint' => '通过创建新的团队经理账号来创建新团队。<br>您也可以从其它的Anuko时间追踪器服务器的xml文件导入团队数据(登录信息不能发生冲突)。',
513
514 // Group Settings form. See example at https://timetracker.anuko.com/group_edit.php.
515 // TODO: translate the following.
516 // 'form.group_edit.12_hours' => '12 hours',
517 // 'form.group_edit.24_hours' => '24 hours',
518 // 'form.group_edit.show_holidays' => 'Show holidays',
519 // 'form.group_edit.tracking_mode' => 'Tracking mode',
520 // 'form.group_edit.mode_time' => 'time',
521 // 'form.group_edit.mode_projects' => 'projects',
522 // 'form.group_edit.mode_projects_and_tasks' => 'projects and tasks',
523 // 'form.group_edit.record_type' => 'Record type',
524 // 'form.group_edit.type_all' => 'all',
525 // 'form.group_edit.type_start_finish' => 'start and finish',
526 // 'form.group_edit.type_duration' => 'duration',
527 // 'form.group_edit.punch_mode' => 'Punch mode',
528 // 'form.group_edit.allow_overlap' => 'Allow overlap',
529 // 'form.group_edit.future_entries' => 'Future entries',
530 // 'form.group_edit.uncompleted_indicators' => 'Uncompleted indicators',
531 // 'form.group_edit.confirm_save' => 'Confirm saving',
532 // 'form.group_edit.allow_ip' => 'Allow IP',
533
534 // Deleting Group form. See example at https://timetracker.anuko.com/delete_group.php
535 // TODO: translate the following.
536 // 'form.group_delete.hint' => 'Are you sure you want to delete the entire group?',
537
538 // Mail form. See example at https://timetracker.anuko.com/report_send.php when emailing a report.
539 'form.mail.from' => '从',
540 'form.mail.to' => '到',
541 // TODO: translate the following.
542 // 'form.mail.report_subject' => 'Time Tracker Report',
543 // 'form.mail.footer' => '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.',
544 // 'form.mail.report_sent' => 'Report sent.',
545 'form.mail.invoice_sent' => '发票已送出。',
546
547 // Quotas configuration form. See example at https://timetracker.anuko.com/quotas.php after enabling Monthly quotas plugin.
548 // TODO: translate the following.
549 // 'form.quota.year' => 'Year',
550 // 'form.quota.month' => 'Month',
551 // 'form.quota.workday_hours' => 'Hours in work day',
552 // 'form.quota.hint' => 'If values are empty, quotas are calculated automatically based on workday hours and holidays.',
553
554 // Swap roles form. See example at https://timetracker.anuko.com/swap_roles.php.
555 // TODO: translate the following.
556 // 'form.swap.hint' => 'Demote yourself to a lower role by swapping roles with someone else. This cannot be undone.',
557 // 'form.swap.swap_with' => 'Swap roles with',
558
559 // Work Units configuration form. See example at https://timetracker.anuko.com/work_units.php after enabling Work units plugin.
560 // TODO: translate the following.
561 // 'form.work_units.minutes_in_unit' => 'Minutes in unit',
562 // 'form.work_units.1st_unit_threshold' => '1st unit threshold',
563
564 // Roles and rights. These strings are used in multiple places. Grouped here to provide consistent translations.
565 // TODO: translate the following.
566 // 'role.user.label' => 'User',
567 // 'role.user.low_case_label' => 'user',
568 // 'role.user.description' => 'A regular member without management rights.',
569 // 'role.client.label' => 'Client',
570 // 'role.client.low_case_label' => 'client',
571 // 'role.client.description' => 'A client can view its own reports, charts, and invoices.',
572 // 'role.supervisor.label' => 'Supervisor',
573 // 'role.supervisor.low_case_label' => 'supervisor',
574 // 'role.supervisor.description' => 'A person with a small set of management rights.',
575 // 'role.comanager.label' => 'Co-manager',
576 // 'role.comanager.low_case_label' => 'co-manager',
577 // 'role.comanager.description' => 'A person with a big set of management functions.',
578 // 'role.manager.label' => 'Manager',
579 // 'role.manager.low_case_label' => 'manager',
580 // 'role.manager.description' => 'Group manager. Can do most of things for a group.',
581 // 'role.top_manager.label' => 'Top manager',
582 // 'role.top_manager.low_case_label' => 'top manager',
583 // 'role.top_manager.description' => 'Top group manager. Can do everything in a tree of groups.',
584 // 'role.admin.label' => 'Administrator',
585 // 'role.admin.low_case_label' => 'administrator',
586 // 'role.admin.description' => 'Site adminsitrator.',
587 );