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