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', '01/31', '05/01', '05/28', '05/29');
 
  39 $i18n_key_words = array(
 
  43 'menu.logout' => '注销',
 
  46 // Note to translators: menu.create_team needs a more accurate translation.
 
  47 'menu.create_team' => '创建新管理账号',
 
  48 'menu.profile' => '简介',
 
  49 'menu.time' => '时间记录',
 
  50 'menu.expenses' => '费用',
 
  51 'menu.reports' => '报告',
 
  52 'menu.charts' => '图表',
 
  53 'menu.projects' => '项目',
 
  57 'menu.export' => '导出数据',
 
  58 'menu.clients' => '客户',
 
  59 'menu.options' => '选项',
 
  61 // Footer - strings on the bottom of most pages.
 
  62 'footer.contribute_msg' => '你可以以不同的方式为Time Tracker提建议',
 
  63 'footer.credits' => '信用',
 
  64 'footer.license' => '许可证',
 
  65 'footer.improve' => '投稿',
 
  68 'error.access_denied' => '拒绝访问',
 
  69 'error.sys' => '系统错误',
 
  70 'error.db' => '数据库错误',
 
  71 'error.field' => '不正确的"{0}"数据',
 
  72 'error.empty' => '栏目"{0}"为空',
 
  73 'error.not_equal' => '栏目"{0}"不等于栏目"{1}"',
 
  74 'error.interval' => '不正确的间隔',
 
  75 'error.project' => '选择项目',
 
  76 // TODO: translate the following.
 
  77 // 'error.task' => 'Select task.',
 
  78 // 'error.client' => 'Select client.',
 
  79 // 'error.report' => 'Select report.',
 
  80 'error.auth' => '不正确的用户名或密码',
 
  81 'error.user_exists' => '该用户登录信息已经存在',
 
  82 'error.project_exists' => '该项目名称已经存在',
 
  83 // TODO: translate the following.
 
  84 // 'error.task_exists' => 'Task with this name already exists.',
 
  85 'error.client_exists' => '具有此名称的客户端已经存在',
 
  86 // TODO: translate the following.
 
  87 // 'error.invoice_exists' => 'Invoice with this number already exists.',
 
  88 // 'error.no_invoiceable_items' => 'There are no invoiceable items.',
 
  89 'error.no_login' => '没有该登录信息的用户',
 
  90 // TODO: translate the following.
 
  91 // 'error.no_teams' => 'Your database is empty. Login as admin and create a new team.',
 
  92 'error.upload' => '上传文件出错',
 
  93 'error.range_locked' => '日期范围锁定',
 
  94 'error.mail_send' => '发送邮件时出错',
 
  95 'error.no_email' => '没有电子邮件与该用户名关联。',
 
  96 'error.uncompleted_exists' => '未完成的条目已经存在。关闭或删除。',
 
  97 'error.goto_uncompleted' => '进入未完成的条目。',
 
  98 // TODO: translate the following.
 
  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 // TODO: translate the following.
 
 107 // 'button.copy' => 'Copy',
 
 108 'button.cancel' => '取消',
 
 109 'button.submit' => '提交',
 
 112 // TODO: check / improve translation of all button.add... strings.
 
 113 // Concern is that it used to be "add new something", now just "add something".
 
 114 'button.add_user' => '添加新用户',
 
 115 'button.add_project' => '添加新项目',
 
 116 // TODO: translate the following.
 
 117 // 'button.add_task' => 'Add task',
 
 118 'button.add_client' => '添加新客户',
 
 119 // TODO: translate the following.
 
 120 // 'button.add_invoice' => 'Add invoice',
 
 121 // 'button.add_option' => 'Add option',
 
 122 'button.add' => '添加',
 
 123 'button.generate' => '创建',
 
 124 'button.reset_password' => '重置密码',
 
 125 'button.send' => '发送',
 
 126 'button.send_by_email' => '通过邮件发送',
 
 127 // TODO: improve translation of button.create_team (used to be "Create new team", now just "Create team").
 
 128 'button.create_team' => '创建新团队',
 
 129 'button.export' => '导出团队信息',
 
 130 'button.import' => '导入团队信息',
 
 131 // TODO: translate the following.
 
 132 // 'button.close' => 'Close',
 
 133 // 'button.stop' => 'Stop',
 
 135 // Labels for controls on forms. Labels in this section are used on multiple forms.
 
 136 'label.team_name' => '团队名称',
 
 137 // TODO: translate the following.
 
 138 // 'label.address' => 'Address',
 
 139 'label.currency' => '货币',
 
 140 'label.manager_name' => '管理员姓名',
 
 141 'label.manager_login' => '管理员登录',
 
 142 // TODO: translate the following.
 
 143 // 'label.person_name' => 'Name',
 
 144 // 'label.thing_name' => 'Name',
 
 145 // 'label.login' => 'Login',
 
 146 'label.password' => '密码',
 
 147 'label.confirm_password' => '确认密码',
 
 148 'label.email' => '电子邮件',
 
 149 // Translate the following.
 
 150 // 'label.date' => 'Date',
 
 151 // 'label.start_date' => 'Start date',
 
 152 // 'label.end_date' => 'End date',
 
 153 // 'label.user' => 'User',
 
 154 // 'label.users' => 'Users',
 
 155 // 'label.client' => 'Client',
 
 156 // 'label.clients' => 'Clients',
 
 157 // 'label.option' => 'Option',
 
 158 // 'label.invoice' => 'Invoice',
 
 159 // 'label.project' => 'Project',
 
 160 // 'label.projects' => 'Projects',
 
 161 // 'label.task' => 'Task',
 
 162 // 'label.tasks' => 'Tasks',
 
 163 // 'label.description' => 'Description',
 
 164 // 'label.start' => 'Start',
 
 165 // 'label.finish' => 'Finish',
 
 166 // 'label.duration' => 'Duration',
 
 167 // 'label.note' => 'Note',
 
 168 // 'label.item' => 'Item',
 
 169 // 'label.cost' => 'Cost',
 
 170 // 'label.day_total' => 'Day total',
 
 171 // 'label.week_total' => 'Week total',
 
 172 // 'label.month_total' => 'Month total',
 
 173 // 'label.today' => 'Today',
 
 174 // 'label.total_hours' => 'Total hours',
 
 175 // 'label.total_cost' => 'Total cost',
 
 176 // 'label.view' => 'View',
 
 177 // 'label.edit' => 'Edit',
 
 178 'label.delete' => '删除',
 
 179 // TODO: Translate the following.
 
 180 // 'label.configure' => 'Configure',
 
 181 // 'label.select_all' => 'Select all',
 
 182 // 'label.select_none' => 'Deselect all',
 
 183 // 'label.id' => 'ID',
 
 184 // 'label.language' => 'Language',
 
 185 // 'label.decimal_mark' => 'Decimal mark',
 
 186 // 'label.date_format' => 'Date format',
 
 187 // 'label.time_format' => 'Time format',
 
 188 // 'label.week_start' => 'First day of week',
 
 189 // 'label.comment' => 'Comment',
 
 190 // 'label.status' => 'Status',
 
 191 // 'label.tax' => 'Tax',
 
 192 // 'label.subtotal' => 'Subtotal',
 
 193 'label.total' => '总计',
 
 194 // TODO: Translate the following.
 
 195 // 'label.client_name' => 'Client name',
 
 196 // 'label.client_address' => 'Client address',
 
 197 // 'label.or' => 'or',
 
 198 // 'label.error' => 'Error',
 
 199 // 'label.ldap_hint' => 'Type your <b>Windows login</b> and <b>password</b> in the fields below.',
 
 200 // 'label.required_fields' => '* - required fields',
 
 201 // 'label.on_behalf' => 'on behalf of',
 
 202 // 'label.role_manager' => '(manager)',
 
 203 // 'label.role_comanager' => '(co-manager)',
 
 204 // 'label.role_admin' => '(administrator)',
 
 205 'label.page' => '页码',
 
 206 // TODO: translate the following.
 
 207 // 'label.condition' => 'Condition',
 
 208 // Labels for plugins (extensions to Time Tracker that provide additional features).
 
 209 // TODO: Translate the following.
 
 210 'label.custom_fields' => 'Custom fields',
 
 211 'label.monthly_quotas' => 'Monthly quotas',
 
 212 'label.type' => 'Type',
 
 213 'label.type_dropdown' => 'dropdown',
 
 214 'label.type_text' => 'text',
 
 215 'label.required' => 'Required',
 
 216 'label.fav_report' => 'Favorite report',
 
 217 'label.cron_schedule' => 'Cron schedule',
 
 218 'label.what_is_it' => 'What is it?',
 
 219 'label.expense' => 'Expense',
 
 220 'label.quantity' => 'Quantity',
 
 223 // TODO: Translate the following.
 
 224 // 'title.login' => 'Login',
 
 225 // 'title.teams' => 'Teams',
 
 226 // 'title.create_team' => 'Creating Team',
 
 227 // 'title.edit_team' => 'Editing Team',
 
 228 // 'title.delete_team' => 'Deleting Team',
 
 229 // 'title.reset_password' => 'Resetting Password',
 
 230 // 'title.change_password' => 'Changing Password',
 
 231 // 'title.time' => 'Time',
 
 232 // 'title.edit_time_record' => 'Editing Time Record',
 
 233 // 'title.delete_time_record' => 'Deleting Time Record',
 
 234 // 'title.expenses' => 'Expenses',
 
 235 // 'title.edit_expense' => 'Editing Expense Item',
 
 236 // 'title.delete_expense' => 'Deleting Expense Item',
 
 237 // 'title.predefined_expenses' => 'Predefined Expenses',
 
 238 // 'title.add_predefined_expense' => 'Adding Predefined Expense',
 
 239 // 'title.edit_predefined_expense' => 'Editing Predefined Expense',
 
 240 // 'title.delete_predefined_expense' => 'Deleting Predefined Expense',
 
 241 // 'title.reports' => 'Reports',
 
 242 // 'title.report' => 'Report',
 
 243 // 'title.send_report' => 'Sending Report',
 
 244 // 'title.invoice' => 'Invoice',
 
 245 // 'title.send_invoice' => 'Sending Invoice',
 
 246 // 'title.charts' => 'Charts',
 
 247 // 'title.projects' => 'Projects',
 
 248 // 'title.add_project' => 'Adding Project',
 
 249 // 'title.edit_project' => 'Editing Project',
 
 250 // 'title.delete_project' => 'Deleting Project',
 
 251 // 'title.tasks' => 'Tasks',
 
 252 // 'title.add_task' => 'Adding Task',
 
 253 // 'title.edit_task' => 'Editing Task',
 
 254 // 'title.delete_task' => 'Deleting Task',
 
 255 // 'title.users' => 'Users',
 
 256 // 'title.add_user' => 'Adding User',
 
 257 // 'title.edit_user' => 'Editing User',
 
 258 // 'title.delete_user' => 'Deleting User',
 
 259 // 'title.clients' => 'Clients',
 
 260 // 'title.add_client' => 'Adding Client',
 
 261 // 'title.edit_client' => 'Editing Client',
 
 262 // 'title.delete_client' => 'Deleting Client',
 
 263 // 'title.invoices' => 'Invoices',
 
 264 // 'title.add_invoice' => 'Adding Invoice',
 
 265 // 'title.view_invoice' => 'Viewing Invoice',
 
 266 // 'title.delete_invoice' => 'Deleting Invoice',
 
 267 // 'title.notifications' => 'Notifications',
 
 268 // 'title.add_notification' => 'Adding Notification',
 
 269 // 'title.edit_notification' => 'Editing Notification',
 
 270 // 'title.delete_notification' => 'Deleting Notification',
 
 271 //  'title.monthly_quotas' => 'Monthly Quotas',
 
 272 // 'title.export' => 'Exporting Team Data',
 
 273 // 'title.import' => 'Importing Team Data',
 
 274 // 'title.options' => 'Options',
 
 275 // 'title.profile' => 'Profile',
 
 276 // 'title.cf_custom_fields' => 'Custom Fields',
 
 277 // 'title.cf_add_custom_field' => 'Adding Custom Field',
 
 278 // 'title.cf_edit_custom_field' => 'Editing Custom Field',
 
 279 // 'title.cf_delete_custom_field' => 'Deleting Custom Field',
 
 280 // 'title.cf_dropdown_options' => 'Dropdown Options',
 
 281 // 'title.cf_add_dropdown_option' => 'Adding Option',
 
 282 // 'title.cf_edit_dropdown_option' => 'Editing Option',
 
 283 // 'title.cf_delete_dropdown_option' => 'Deleting Option',
 
 284 // // NOTE TO TRANSLATORS: Locking is a feature to lock records from modifications (ex: weekly on Mondays we lock all previous weeks).
 
 285 // // It is also a name for the Locking plugin on the Team profile page.
 
 286 // 'title.locking' => 'Locking',
 
 290 // TODO: everything below needs serious work and be synchronized with the master English file.
 
 291 // For example, form.filter.project property no longer exists, and so on.
 
 293 // If you intend to improve perhaps go in small steps and coordinate with the maintainer if anything is unclear.
 
 294 "form.filter.project" => '项目',
 
 295 "form.filter.filter" => '收藏的报告',
 
 296 "form.filter.filter_new" => '保存到我的收藏夹',
 
 297 "form.filter.filter_confirm_delete" => '您确认要删除收藏的这个报告吗?',
 
 299 // login form attributes
 
 300 "form.login.title" => '登录',
 
 301 "form.login.login" => '登录',
 
 303 // password reminder form attributes
 
 304 "form.fpass.title" => '重设密码',
 
 305 "form.fpass.login" => '登录',
 
 306 "form.fpass.send_pass_str" => '密码重设请求已经发送',
 
 307 "form.fpass.send_pass_subj" => 'Anuko时间追踪器密码重设请求',
 
 308 // Note to translators: the ending of this string below needs to be translated.
 
 309 "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",
 
 310 "form.fpass.reset_comment" => "要重设密码,请输入新密码并点击保存按钮",
 
 312 // administrator form
 
 313 "form.admin.title" => '管理员',
 
 314 "form.admin.duty_text" => '通过创建新的团队经理账号来创建新团队。<br>您也可以从其它的Anuko时间追踪器服务器的xml文件导入团队数据(登录信息不能发生冲突)。',
 
 316 "form.admin.change_pass" => '修改管理员账号的密码',
 
 317 "form.admin.profile.title" => '团队',
 
 318 "form.admin.profile.noprofiles" => '您的数据库没有任何记录。请以管理员身份登录并创建一个新团队。',
 
 319 "form.admin.profile.comment" => '删除团队',
 
 320 "form.admin.profile.th.id" => 'ID号',
 
 321 "form.admin.profile.th.name" => '姓名',
 
 322 "form.admin.profile.th.edit" => '编辑',
 
 323 "form.admin.profile.th.del" => '删除',
 
 324 "form.admin.profile.th.active" => '启用',
 
 325 "form.admin.options" => '选项',
 
 326 "form.admin.custom_date_format" => "日期格式",
 
 327 "form.admin.custom_time_format" => "时间格式",
 
 328 "form.admin.start_week" => "每周的第一天",
 
 330 // my time form attributes
 
 331 "form.mytime.title" => '我的时间记录',
 
 332 "form.mytime.edit_title" => '编辑时间记录',
 
 333 "form.mytime.del_str" => '删除时间记录',
 
 334 "form.mytime.time_form" => ' (时:分)',
 
 335 "form.mytime.date" => '日期',
 
 336 "form.mytime.project" => '项目',
 
 337 "form.mytime.activity" => '活动',
 
 338 "form.mytime.start" => '开始',
 
 339 "form.mytime.finish" => '结束',
 
 340 "form.mytime.duration" => '持续时间',
 
 341 "form.mytime.note" => '备注',
 
 342 "form.mytime.behalf" => '每日工作,人员:',
 
 343 "form.mytime.daily" => '每日工作',
 
 344 "form.mytime.total" => '总小时数: ',
 
 345 "form.mytime.th.project" => '项目',
 
 346 "form.mytime.th.activity" => '活动',
 
 347 "form.mytime.th.start" => '开始',
 
 348 "form.mytime.th.finish" => '结束',
 
 349 "form.mytime.th.duration" => '持续时间',
 
 350 "form.mytime.th.note" => '备注',
 
 351 "form.mytime.th.edit" => '编辑',
 
 352 "form.mytime.th.delete" => '删除',
 
 353 "form.mytime.del_yes" => '成功删除时间记录',
 
 354 "form.mytime.no_finished_rec" => '该记录只保存了开始时间。这不是错误。如果需要,请注销。',
 
 355 "form.mytime.billable" => '计费时间',
 
 356 "form.mytime.warn_tozero_rec" => '由于这段时间是锁定的,该时间记录必须删除',
 
 357 "form.mytime.uncompleted" => '未完成',
 
 359 // profile form attributes
 
 360 // Note to translators: we need a more accurate translation of form.profile.create_title
 
 361 "form.profile.create_title" => '新建管理账号',
 
 362 "form.profile.edit_title" => '编辑简介',
 
 363 "form.profile.name" => '名字',
 
 364 "form.profile.login" => '登录',
 
 366 "form.profile.showchart" => '显示饼状图',
 
 367 "form.profile.lang" => '语言',
 
 368 "form.profile.custom_date_format" => "日期格式",
 
 369 "form.profile.custom_time_format" => "时间格式",
 
 370 "form.profile.default_format" => "(默认)",
 
 371 "form.profile.start_week" => "每周的第一天",
 
 373 // people form attributes
 
 374 "form.people.ppl_str" => '人员',
 
 375 "form.people.createu_str" => '新建用户',
 
 376 "form.people.edit_str" => '编辑用户',
 
 377 "form.people.del_str" => '删除用户',
 
 378 "form.people.th.name" => '姓名',
 
 379 "form.people.th.login" => '登录',
 
 380 "form.people.th.role" => '角色',
 
 381 "form.people.th.edit" => '编辑',
 
 382 "form.people.th.del" => '删除',
 
 383 "form.people.th.status" => '状态',
 
 384 "form.people.th.project" => '项目',
 
 385 "form.people.th.rate" => '费率',
 
 386 "form.people.manager" => '经理',
 
 387 "form.people.comanager" => '合作经理人',
 
 388 "form.people.empl" => '用户',
 
 389 "form.people.name" => '姓名',
 
 390 "form.people.login" => '登录',
 
 392 "form.people.rate" => '默认小时收费',
 
 393 "form.people.comanager" => '合作经理人',
 
 394 "form.people.projects" => '项目',
 
 396 // projects form attributes
 
 397 "form.project.proj_title" => '项目',
 
 398 "form.project.edit_str" => '编辑项目',
 
 399 "form.project.add_str" => '添加新项目',
 
 400 "form.project.del_str" => '删除项目',
 
 401 "form.project.th.name" => '名称',
 
 402 "form.project.th.edit" => '编辑',
 
 403 "form.project.th.del" => '删除',
 
 404 "form.project.name" => '名称',
 
 406 // activities form attributes
 
 407 "form.activity.act_title" => '活动',
 
 408 "form.activity.add_title" => '新建活动',
 
 409 "form.activity.edit_str" => '编辑活动',
 
 410 "form.activity.del_str" => '删除活动',
 
 411 "form.activity.name" => '名称',
 
 412 "form.activity.project" => '项目',
 
 413 "form.activity.th.name" => '名称',
 
 414 "form.activity.th.project" => '项目',
 
 415 "form.activity.th.edit" => '编辑',
 
 416 "form.activity.th.del" => '删除',
 
 419 "form.report.title" => '报告',
 
 420 "form.report.from" => '开始日期',
 
 421 "form.report.to" => '结束日期',
 
 422 "form.report.groupby_user" => '用户',
 
 423 "form.report.groupby_project" => '项目',
 
 424 "form.report.groupby_activity" => '活动',
 
 425 "form.report.duration" => '持续时间',
 
 426 "form.report.start" => '开始',
 
 427 "form.report.activity" => '活动',
 
 428 "form.report.show_idle" => '显示空闲',
 
 429 "form.report.finish" => '结束',
 
 430 "form.report.note" => '备注',
 
 431 "form.report.project" => '项目',
 
 432 "form.report.totals_only" => '仅仅今天',
 
 433 "form.report.total" => '总计时间',
 
 434 "form.report.th.empllist" => '用户',
 
 435 "form.report.th.date" => '日期',
 
 436 "form.report.th.project" => '项目',
 
 437 "form.report.th.activity" => '活动',
 
 438 "form.report.th.start" => '开始',
 
 439 "form.report.th.finish" => '结束',
 
 440 "form.report.th.duration" => '持续时间',
 
 441 "form.report.th.note" => '备注',
 
 443 // mail form attributes
 
 444 "form.mail.from" => '从',
 
 445 "form.mail.to" => '到',
 
 446 "form.mail.cc" => '抄送',
 
 447 "form.mail.subject" => '主题',
 
 448 "form.mail.comment" => '留言',
 
 449 "form.mail.above" => '通过电子邮件发送该报告',
 
 450 // Note to translators: this string needs to be translated.
 
 451  "form.mail.footer_str" => 'anuko时间跟踪器是一种简单、易用、开放源码的时间跟踪系统。 看<a href ="https://www.anuko.com"> www.anuko网</a>更多信息。',
 
 452 "form.mail.sending_str" => '<b>消息已发送</b>',
 
 454 // invoice attributes
 
 455 "form.invoice.title" => '发票',
 
 456 "form.invoice.caption" => '发票',
 
 457 "form.invoice.above" => '发票附加信息',
 
 458 "form.invoice.select_cust" => '选择客户',
 
 459 "form.invoice.fillform" => '填写该栏目',
 
 460 "form.invoice.date" => '日期',
 
 461 "form.invoice.number" => '发票号码',
 
 462 "form.invoice.tax" => '税',
 
 463 "form.invoice.comment" => '留言',
 
 464 "form.invoice.th.username" => '收费人',
 
 465 "form.invoice.th.time" => '小时数',
 
 466 "form.invoice.th.rate" => '费率',
 
 467 "form.invoice.th.summ" => '账号',
 
 468 "form.invoice.subtotal" => '共计',
 
 469 "form.invoice.customer" => '客户',
 
 470 "form.invoice.mailinv_above" => '通过电子邮件发送此发票',
 
 471 "form.invoice.sending_str" => '<b>发票已送出</b>',
 
 473 "form.migration.zip" => '压缩',
 
 474 "form.migration.file" => '选择档',
 
 475 "form.migration.import.title" => '导入数据',
 
 476 "form.migration.import.success" => '成功完成导入',
 
 477 "form.migration.import.text" => '从xml文件导入团队数据',
 
 478 "form.migration.export.title" => '导出数据',
 
 479 "form.migration.export.success" => '导出成功',
 
 480 "form.migration.export.text" => '您可以将所有团队数据导出到xml文件。如果您要将数据转移到您自己的服务器,这项操作很有用。',
 
 481 "form.migration.compression.none" => '不压缩',
 
 482 "form.migration.compression.gzip" => 'gzip格式',
 
 483 "form.migration.compression.bzip" => 'bzip格式',
 
 485 "form.client.title" => '客户',
 
 486 "form.client.add_title" => '添加客户',
 
 487 "form.client.edit_title" => '编辑客户',
 
 488 "form.client.del_title" => '删除客户',
 
 489 "form.client.th.name" => '姓名',
 
 490 "form.client.th.edit" => '编辑',
 
 491 "form.client.th.del" => '删除',
 
 492 "form.client.name" => '姓名',
 
 493 "form.client.tax" => '税',
 
 494 "form.client.comment" => '备注',
 
 496 // miscellaneous strings
 
 497 "forward.forgot_password" => '忘记密码?',
 
 498 "forward.edit" => '编辑',
 
 499 "forward.delete" => '删除',
 
 500 "forward.tocsvfile" => '将数据导出到.csv文件',
 
 501 "forward.toxmlfile" => '将数据导出到.xml文件',
 
 502 "forward.geninvoice" => '生成发票',
 
 503 "forward.change" => '客户设置',
 
 505 // strings inside contols on forms
 
 506 "controls.select.project" => '--- 选择项目 ---',
 
 507 "controls.select.activity" => '--- 选择活动 ---',
 
 508 "controls.select.client" => '--- 选择客户 ---',
 
 509 "controls.project_bind" => '--- 全部 ---',
 
 510 "controls.all" => '--- 全部 ---',
 
 511 "controls.notbind" => '--- 无 ---',
 
 512 "controls.per_tm" => '本月',
 
 513 "controls.per_lm" => '上个月',
 
 514 "controls.per_tw" => '本周',
 
 515 "controls.per_lw" => '上周',
 
 516 "controls.per_td" => '今天',
 
 517 "controls.per_at" => '全部时间',
 
 518 "controls.per_ty" => '今年',
 
 519 "controls.sel_period" => '--- 选择时间段 ---',
 
 520 "controls.sel_groupby" => '--- 没有分组 ---',
 
 521 "controls.inc_billable" => '计费时间',
 
 522 "controls.inc_nbillable" => '非计费时间',
 
 523 "controls.default" => '--- 默认 ---',
 
 526 "label.chart.title1" => '活动用户',
 
 527 "label.chart.title2" => '项目用户',
 
 528 "label.chart.period" => '图表期限',
 
 530 "label.pinfo" => '%s, %s',
 
 531 "label.pinfo2" => '%s',
 
 532 "label.pbehalf_info" => '%s %s <b>代表%s</b>',
 
 533 "label.pminfo" => ' (经理)',
 
 534 "label.pcminfo" => ' (合作经理人)',
 
 535 "label.painfo" => ' (管理员)',
 
 536 "label.time_noentry" => '没有条目',
 
 537 "label.today" => '今天',
 
 538 "label.req_fields" => '* 必填栏目',
 
 539 "label.sel_project" => '选择项目',
 
 540 "label.sel_activity" => '选择活动',
 
 541 "label.sel_tp" => '选择时间段',
 
 542 "label.set_tp" => '或设定日期',
 
 543 "label.fields" => '显示栏目',
 
 544 "label.group_title" => '分组方式:',
 
 545 "label.include_title" => '包含记录',
 
 546 "label.inv_str" => '发票',
 
 547 "label.set_empl" => '选择用户',
 
 548 "label.sel_all" => '全部选择',
 
 549 "label.sel_none" => '全部不选',
 
 551 "label.disable" => '禁用',
 
 552 "label.enable" => '启用',
 
 553 "label.filter" => '过滤器',
 
 554 "label.timeweek" => '一周总计',
 
 556 "label.errors" => '错误',
 
 557 "label.ldap_hint" => '在下面的栏目输入您的<b>Windows用户名</b>和<b>密码</b>。',
 
 558 // Note to translators: strings below must be translated.
 
 559  "label.calendar_today" => '今天',
 
 560  "label.calendar_close" => '关闭',
 
 563  "login.hello.text" => "anuko时间跟踪器是一种简单、易用、开放源代码的实时跟踪系统。",