comparison config/locales/zh.yml @ 441:cbce1fd3b1b7 redmine-1.2

Update to Redmine 1.2-stable branch (Redmine SVN rev 6000)
author Chris Cannam
date Mon, 06 Jun 2011 14:24:13 +0100
parents 051f544170fe
children 753f1380d6bc cbb26bc654de
comparison
equal deleted inserted replaced
245:051f544170fe 441:cbce1fd3b1b7
1 # Chinese (China) translations for Ruby on Rails 1 # Chinese (China) translations for Ruby on Rails
2 # by tsechingho (http://github.com/tsechingho) 2 # by tsechingho (http://github.com/tsechingho)
3
4 zh: 3 zh:
4 # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl)
5 direction: ltr 5 direction: ltr
6 date: 6 date:
7 formats: 7 formats:
8 # Use the strftime parameters for formats.
9 # When no format has been given, it uses default.
10 # You can provide other formats here if you like!
8 default: "%Y-%m-%d" 11 default: "%Y-%m-%d"
9 short: "%b%d日" 12 short: "%b%d日"
10 long: "%Y年%b%d日" 13 long: "%Y年%b%d日"
14
11 day_names: [星期天, 星期一, 星期二, 星期三, 星期四, 星期五, 星期六] 15 day_names: [星期天, 星期一, 星期二, 星期三, 星期四, 星期五, 星期六]
12 abbr_day_names: [日, 一, 二, 三, 四, 五, 六] 16 abbr_day_names: [日, 一, 二, 三, 四, 五, 六]
17
18 # Don't forget the nil at the beginning; there's no such thing as a 0th month
13 month_names: [~, 一月, 二月, 三月, 四月, 五月, 六月, 七月, 八月, 九月, 十月, 十一月, 十二月] 19 month_names: [~, 一月, 二月, 三月, 四月, 五月, 六月, 七月, 八月, 九月, 十月, 十一月, 十二月]
14 abbr_month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月] 20 abbr_month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月]
15 order: [ :year, :month, :day ] 21 # Used in date_select and datime_select.
16 22 order:
23 - :year
24 - :month
25 - :day
26
17 time: 27 time:
18 formats: 28 formats:
19 default: "%Y年%b%d日 %A %H:%M:%S" 29 default: "%Y年%b%d日 %A %H:%M:%S"
20 time: "%H:%M"
21 time: "%H:%M" 30 time: "%H:%M"
22 short: "%b%d日 %H:%M" 31 short: "%b%d日 %H:%M"
23 long: "%Y年%b%d日 %H:%M" 32 long: "%Y年%b%d日 %H:%M"
24 am: "上午" 33 am: "上午"
25 pm: "下午" 34 pm: "下午"
26 35
27 datetime: 36 datetime:
28 distance_in_words: 37 distance_in_words:
29 half_a_minute: "半分钟" 38 half_a_minute: "半分钟"
30 less_than_x_seconds: 39 less_than_x_seconds:
31 one: "一秒内" 40 one: "一秒内"
58 one: "一年以上" 67 one: "一年以上"
59 other: "%{count} 年以上" 68 other: "%{count} 年以上"
60 almost_x_years: 69 almost_x_years:
61 one: "将近 1 年" 70 one: "将近 1 年"
62 other: "将近 %{count} 年" 71 other: "将近 %{count} 年"
63 prompts: 72
64 year: "年"
65 month: "月"
66 day: "日"
67 hour: "时"
68 minute: "分"
69 second: "秒"
70
71 number: 73 number:
74 # Default format for numbers
72 format: 75 format:
73 separator: "." 76 separator: "."
74 delimiter: "," 77 delimiter: ""
75 precision: 3 78 precision: 3
76 currency:
77 format:
78 format: "%n %u"
79 unit: "元"
80 separator: "."
81 delimiter: ","
82 precision: 2
83 percentage:
84 format:
85 delimiter: ""
86 precision:
87 format:
88 delimiter: ""
89 human: 79 human:
90 format: 80 format:
91 delimiter: "" 81 delimiter: ""
92 precision: 1 82 precision: 1
93 storage_units: 83 storage_units:
94 format: "%n %u" 84 format: "%n %u"
95 units: 85 units:
96 byte: 86 byte:
97 one: "Byte" 87 one: "Byte"
98 other: "Bytes" 88 other: "Bytes"
99 kb: "KB" 89 kb: "kB"
100 mb: "MB" 90 mb: "MB"
101 gb: "GB" 91 gb: "GB"
102 tb: "TB" 92 tb: "TB"
103 93
94
95 # Used in array.to_sentence.
104 support: 96 support:
105 array: 97 array:
106 words_connector: ", " 98 sentence_connector: "和"
107 two_words_connector: " 和 " 99 skip_last_comma: false
108 last_word_connector: ", 和 " 100
109
110 activerecord: 101 activerecord:
111 errors: 102 errors:
112 template: 103 template:
113 header: 104 header:
114 one: "有 1 个错误发生导致「%{model}」无法被保存。" 105 one: "由于发生了一个错误 %{model} 无法保存"
115 other: "有 %{count} 个错误发生导致「%{model}」无法被保存。" 106 other: "%{count} 个错误使得 %{model} 无法保存"
116 body: "如下字段出现错误:"
117 messages: 107 messages:
118 inclusion: "不包含于列表中" 108 inclusion: "不包含于列表中"
119 exclusion: "是保留关键字" 109 exclusion: "是保留关键字"
120 invalid: "是无效的" 110 invalid: "是无效的"
121 confirmation: "与确认值不匹配" 111 confirmation: "与确认值不匹配"
125 too_long: "过长(最长为 %{count} 个字符)" 115 too_long: "过长(最长为 %{count} 个字符)"
126 too_short: "过短(最短为 %{count} 个字符)" 116 too_short: "过短(最短为 %{count} 个字符)"
127 wrong_length: "长度非法(必须为 %{count} 个字符)" 117 wrong_length: "长度非法(必须为 %{count} 个字符)"
128 taken: "已经被使用" 118 taken: "已经被使用"
129 not_a_number: "不是数字" 119 not_a_number: "不是数字"
120 not_a_date: "不是合法日期"
130 greater_than: "必须大于 %{count}" 121 greater_than: "必须大于 %{count}"
131 greater_than_or_equal_to: "必须大于或等于 %{count}" 122 greater_than_or_equal_to: "必须大于或等于 %{count}"
132 equal_to: "必须等于 %{count}" 123 equal_to: "必须等于 %{count}"
133 less_than: "必须小于 %{count}" 124 less_than: "必须小于 %{count}"
134 less_than_or_equal_to: "必须小于或等于 %{count}" 125 less_than_or_equal_to: "必须小于或等于 %{count}"
135 odd: "必须为单数" 126 odd: "必须为单数"
136 even: "必须为双数" 127 even: "必须为双数"
137 greater_than_start_date: "必须在起始日期之后" 128 greater_than_start_date: "必须在起始日期之后"
138 not_same_project: "不属于同一个项目" 129 not_same_project: "不属于同一个项目"
139 circular_dependency: "此关联将导致循环依赖" 130 circular_dependency: "此关联将导致循环依赖"
140 cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" 131 cant_link_an_issue_with_a_descendant: "问题不能关联到它的子任务"
141 132
142 actionview_instancetag_blank_option: 请选择 133 actionview_instancetag_blank_option: 请选择
143 134
144 general_text_No: '否' 135 general_text_No: '否'
145 general_text_Yes: '是' 136 general_text_Yes: '是'
166 notice_successful_delete: 删除成功 157 notice_successful_delete: 删除成功
167 notice_successful_connection: 连接成功 158 notice_successful_connection: 连接成功
168 notice_file_not_found: 您访问的页面不存在或已被删除。 159 notice_file_not_found: 您访问的页面不存在或已被删除。
169 notice_locking_conflict: 数据已被另一位用户更新 160 notice_locking_conflict: 数据已被另一位用户更新
170 notice_not_authorized: 对不起,您无权访问此页面。 161 notice_not_authorized: 对不起,您无权访问此页面。
171 notice_email_sent: "邮件已成功发送到 %{value}" 162 notice_not_authorized_archived_project: 要访问的项目已经归档。
163 notice_email_sent: "邮件已发送至 %{value}"
172 notice_email_error: "发送邮件时发生错误 (%{value})" 164 notice_email_error: "发送邮件时发生错误 (%{value})"
173 notice_feeds_access_key_reseted: 您的RSS存取键已被重置。 165 notice_feeds_access_key_reseted: 您的RSS存取键已被重置。
174 notice_api_access_key_reseted: 您的API访问键已被重置。 166 notice_api_access_key_reseted: 您的API访问键已被重置。
175 notice_failed_to_save_issues: "%{count} 个问题保存失败(共选择 %{total} 个问题):%{ids}." 167 notice_failed_to_save_issues: "%{count} 个问题保存失败(共选择 %{total} 个问题):%{ids}."
168 notice_failed_to_save_members: "成员保存失败: %{errors}."
176 notice_no_issue_selected: "未选择任何问题!请选择您要编辑的问题。" 169 notice_no_issue_selected: "未选择任何问题!请选择您要编辑的问题。"
177 notice_account_pending: "您的帐号已被成功创建,正在等待管理员的审核。" 170 notice_account_pending: "您的帐号已被成功创建,正在等待管理员的审核。"
178 notice_default_data_loaded: 成功载入默认设置。 171 notice_default_data_loaded: 成功载入默认设置。
179 notice_unable_delete_version: 无法删除版本 172 notice_unable_delete_version: 无法删除版本
173 notice_unable_delete_time_entry: 无法删除工时
180 notice_issue_done_ratios_updated: 问题完成度已更新。 174 notice_issue_done_ratios_updated: 问题完成度已更新。
181 175 notice_gantt_chart_truncated: "The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})"
176
182 error_can_t_load_default_data: "无法载入默认设置:%{value}" 177 error_can_t_load_default_data: "无法载入默认设置:%{value}"
183 error_scm_not_found: "版本库中不存在该条目和(或)其修订版本。" 178 error_scm_not_found: "版本库中不存在该条目和(或)其修订版本。"
184 error_scm_command_failed: "访问版本库时发生错误:%{value}" 179 error_scm_command_failed: "访问版本库时发生错误:%{value}"
185 error_scm_annotate: "该条目不存在或无法追溯。" 180 error_scm_annotate: "该条目不存在或无法追溯。"
186 error_issue_not_found_in_project: '问题不存在或不属于此项目' 181 error_issue_not_found_in_project: '问题不存在或不属于此项目'
187 error_no_tracker_in_project: 该项目未设定跟踪标签,请检查项目配置。 182 error_no_tracker_in_project: 该项目未设定跟踪标签,请检查项目配置。
188 error_no_default_issue_status: 未设置默认的问题状态。请检查系统设置("管理" -> "问题状态")。 183 error_no_default_issue_status: 未设置默认的问题状态。请检查系统设置("管理" -> "问题状态")。
184 error_can_not_delete_custom_field: 无法删除自定义属性
185 error_can_not_delete_tracker: "该跟踪标签已包含问题,无法删除"
186 error_can_not_remove_role: "该角色正在使用中,无法删除"
189 error_can_not_reopen_issue_on_closed_version: 该问题被关联到一个已经关闭的版本,因此无法重新打开。 187 error_can_not_reopen_issue_on_closed_version: 该问题被关联到一个已经关闭的版本,因此无法重新打开。
190 error_can_not_archive_project: 该项目无法被存档 188 error_can_not_archive_project: 该项目无法被存档
191 error_issue_done_ratios_not_updated: 问题完成度未能被更新。 189 error_issue_done_ratios_not_updated: 问题完成度未能被更新。
192 error_workflow_copy_source: 请选择一个源跟踪标签或者角色 190 error_workflow_copy_source: 请选择一个源跟踪标签或者角色
193 error_workflow_copy_target: 请选择目标跟踪标签和角色 191 error_workflow_copy_target: 请选择目标跟踪标签和角色
194 192 error_unable_delete_issue_status: '无法删除问题状态'
195 warning_attachments_not_saved: "%{count} 个文件保存失败。" 193 error_unable_to_connect: "无法连接 (%{value})"
194 warning_attachments_not_saved: "%{count} 个文件保存失败"
196 195
197 mail_subject_lost_password: "您的 %{value} 密码" 196 mail_subject_lost_password: "您的 %{value} 密码"
198 mail_body_lost_password: '请点击以下链接来修改您的密码:' 197 mail_body_lost_password: '请点击以下链接来修改您的密码:'
199 mail_subject_register: "%{value}帐号激活" 198 mail_subject_register: "%{value}帐号激活"
200 mail_body_register: '请点击以下链接来激活您的帐号:' 199 mail_body_register: '请点击以下链接来激活您的帐号:'
204 mail_body_account_activation_request: "新用户(%{value})已完成注册,正在等候您的审核:" 203 mail_body_account_activation_request: "新用户(%{value})已完成注册,正在等候您的审核:"
205 mail_subject_reminder: "%{count} 个问题需要尽快解决 (%{days})" 204 mail_subject_reminder: "%{count} 个问题需要尽快解决 (%{days})"
206 mail_body_reminder: "指派给您的 %{count} 个问题需要在 %{days} 天内完成:" 205 mail_body_reminder: "指派给您的 %{count} 个问题需要在 %{days} 天内完成:"
207 mail_subject_wiki_content_added: "'%{id}' wiki页面已添加" 206 mail_subject_wiki_content_added: "'%{id}' wiki页面已添加"
208 mail_body_wiki_content_added: "'%{id}' wiki页面已由 %{author} 添加。" 207 mail_body_wiki_content_added: "'%{id}' wiki页面已由 %{author} 添加。"
209 mail_subject_wiki_content_updated: "'%{id}' wiki页面已更新" 208 mail_subject_wiki_content_updated: "'%{id}' wiki页面已更新。"
210 mail_body_wiki_content_updated: "'%{id}' wiki页面已由 %{author} 更新。" 209 mail_body_wiki_content_updated: "'%{id}' wiki页面已由 %{author} 更新。"
211 210
212 gui_validation_error: 1 个错误 211 gui_validation_error: 1 个错误
213 gui_validation_error_plural: "%{count} 个错误" 212 gui_validation_error_plural: "%{count} 个错误"
214 213
215 field_name: 名称 214 field_name: 名称
216 field_description: 描述 215 field_description: 描述
245 field_due_date: 完成日期 244 field_due_date: 完成日期
246 field_assigned_to: 指派给 245 field_assigned_to: 指派给
247 field_priority: 优先级 246 field_priority: 优先级
248 field_fixed_version: 目标版本 247 field_fixed_version: 目标版本
249 field_user: 用户 248 field_user: 用户
249 field_principal: 用户/用户组
250 field_role: 角色 250 field_role: 角色
251 field_homepage: 主页 251 field_homepage: 主页
252 field_is_public: 公开 252 field_is_public: 公开
253 field_parent: 上级项目 253 field_parent: 上级项目
254 field_is_in_roadmap: 在路线图中显示问题 254 field_is_in_roadmap: 在路线图中显示
255 field_login: 登录名 255 field_login: 登录名
256 field_mail_notification: 邮件通知 256 field_mail_notification: 邮件通知
257 field_admin: 管理员 257 field_admin: 管理员
258 field_last_login_on: 最后登录 258 field_last_login_on: 最后登录
259 field_language: 语言 259 field_language: 语言
270 field_attr_login: 登录名属性 270 field_attr_login: 登录名属性
271 field_attr_firstname: 名字属性 271 field_attr_firstname: 名字属性
272 field_attr_lastname: 姓氏属性 272 field_attr_lastname: 姓氏属性
273 field_attr_mail: 邮件属性 273 field_attr_mail: 邮件属性
274 field_onthefly: 即时用户生成 274 field_onthefly: 即时用户生成
275 field_start_date: 开始 275 field_start_date: 开始日期
276 field_done_ratio: 完成度 276 field_done_ratio: % 完成
277 field_auth_source: 认证模式 277 field_auth_source: 认证模式
278 field_hide_mail: 隐藏我的邮件地址 278 field_hide_mail: 隐藏我的邮件地址
279 field_comments: 注释 279 field_comments: 注释
280 field_url: URL 280 field_url: URL
281 field_start_page: 起始页 281 field_start_page: 起始页
289 field_delay: 延期 289 field_delay: 延期
290 field_assignable: 问题可指派给此角色 290 field_assignable: 问题可指派给此角色
291 field_redirect_existing_links: 重定向到现有链接 291 field_redirect_existing_links: 重定向到现有链接
292 field_estimated_hours: 预期时间 292 field_estimated_hours: 预期时间
293 field_column_names: 列 293 field_column_names: 列
294 field_time_entries: 工时
294 field_time_zone: 时区 295 field_time_zone: 时区
295 field_searchable: 可用作搜索条件 296 field_searchable: 可用作搜索条件
296 field_default_value: 默认值 297 field_default_value: 默认值
297 field_comments_sorting: 显示注释 298 field_comments_sorting: 显示注释
298 field_parent_title: 上级页面 299 field_parent_title: 上级页面
300 field_watcher: 跟踪者 301 field_watcher: 跟踪者
301 field_identity_url: OpenID URL 302 field_identity_url: OpenID URL
302 field_content: 内容 303 field_content: 内容
303 field_group_by: 根据此条件分组 304 field_group_by: 根据此条件分组
304 field_sharing: 共享 305 field_sharing: 共享
305 306 field_parent_issue: 父任务
307 field_member_of_group: 用户组的成员
308 field_assigned_to_role: 角色的成员
309 field_text: 文本字段
310 field_visible: 可见的
311
306 setting_app_title: 应用程序标题 312 setting_app_title: 应用程序标题
307 setting_app_subtitle: 应用程序子标题 313 setting_app_subtitle: 应用程序子标题
308 setting_welcome_text: 欢迎文字 314 setting_welcome_text: 欢迎文字
309 setting_default_language: 默认语言 315 setting_default_language: 默认语言
310 setting_login_required: 要求认证 316 setting_login_required: 要求认证
311 setting_self_registration: 允许自注册 317 setting_self_registration: 允许自注册
312 setting_attachment_max_size: 附件大小限制 318 setting_attachment_max_size: 附件大小限制
313 setting_issues_export_limit: 问题输出条目的限制 319 setting_issues_export_limit: 问题导出条目的限制
314 setting_mail_from: 邮件发件人地址 320 setting_mail_from: 邮件发件人地址
315 setting_bcc_recipients: 使用密件抄送 (bcc) 321 setting_bcc_recipients: 使用密件抄送 (bcc)
316 setting_plain_text_mail: 纯文本(无HTML) 322 setting_plain_text_mail: 纯文本(无HTML)
317 setting_host_name: 主机名称 323 setting_host_name: 主机名称
318 setting_text_formatting: 文本格式 324 setting_text_formatting: 文本格式
327 setting_date_format: 日期格式 333 setting_date_format: 日期格式
328 setting_time_format: 时间格式 334 setting_time_format: 时间格式
329 setting_cross_project_issue_relations: 允许不同项目之间的问题关联 335 setting_cross_project_issue_relations: 允许不同项目之间的问题关联
330 setting_issue_list_default_columns: 问题列表中显示的默认列 336 setting_issue_list_default_columns: 问题列表中显示的默认列
331 setting_repositories_encodings: 版本库编码 337 setting_repositories_encodings: 版本库编码
332 setting_commit_logs_encoding: 提交注释的编码 338 setting_emails_header: 邮件头
333 setting_emails_footer: 邮件签名 339 setting_emails_footer: 邮件签名
334 setting_protocol: 协议 340 setting_protocol: 协议
335 setting_per_page_options: 每页显示条目个数的设置 341 setting_per_page_options: 每页显示条目个数的设置
336 setting_user_format: 用户显示格式 342 setting_user_format: 用户显示格式
337 setting_activity_days_default: 在项目活动中显示的天数 343 setting_activity_days_default: 在项目活动中显示的天数
353 setting_issue_done_ratio: 计算问题完成度: 359 setting_issue_done_ratio: 计算问题完成度:
354 setting_issue_done_ratio_issue_field: 使用问题(的完成度)属性 360 setting_issue_done_ratio_issue_field: 使用问题(的完成度)属性
355 setting_issue_done_ratio_issue_status: 使用问题状态 361 setting_issue_done_ratio_issue_status: 使用问题状态
356 setting_start_of_week: 日历开始于 362 setting_start_of_week: 日历开始于
357 setting_rest_api_enabled: 启用REST web service 363 setting_rest_api_enabled: 启用REST web service
358 364 setting_cache_formatted_text: 缓存格式化文字
365 setting_default_notification_option: 默认提醒选项
366 setting_commit_logtime_enabled: 激活时间日志
367 setting_commit_logtime_activity_id: 记录的活动
368 setting_gantt_items_limit: 在甘特图上显示的最大记录数
369
359 permission_add_project: 新建项目 370 permission_add_project: 新建项目
360 permission_add_subprojects: 新建子项目 371 permission_add_subprojects: 新建子项目
361 permission_edit_project: 编辑项目 372 permission_edit_project: 编辑项目
362 permission_select_project_modules: 选择项目模块 373 permission_select_project_modules: 选择项目模块
363 permission_manage_members: 管理成员 374 permission_manage_members: 管理成员
375 permission_manage_project_activities: 管理项目活动
364 permission_manage_versions: 管理版本 376 permission_manage_versions: 管理版本
365 permission_manage_categories: 管理问题类别 377 permission_manage_categories: 管理问题类别
366 permission_view_issues: 查看问题 378 permission_view_issues: 查看问题
367 permission_add_issues: 新建问题 379 permission_add_issues: 新建问题
368 permission_edit_issues: 更新问题 380 permission_edit_issues: 更新问题
406 permission_add_messages: 发表帖子 418 permission_add_messages: 发表帖子
407 permission_edit_messages: 编辑帖子 419 permission_edit_messages: 编辑帖子
408 permission_edit_own_messages: 编辑自己的帖子 420 permission_edit_own_messages: 编辑自己的帖子
409 permission_delete_messages: 删除帖子 421 permission_delete_messages: 删除帖子
410 permission_delete_own_messages: 删除自己的帖子 422 permission_delete_own_messages: 删除自己的帖子
411 423 permission_export_wiki_pages: 导出 wiki 页面
424 permission_manage_subtasks: 管理子任务
425
412 project_module_issue_tracking: 问题跟踪 426 project_module_issue_tracking: 问题跟踪
413 project_module_time_tracking: 时间跟踪 427 project_module_time_tracking: 时间跟踪
414 project_module_news: 新闻 428 project_module_news: 新闻
415 project_module_documents: 文档 429 project_module_documents: 文档
416 project_module_files: 文件 430 project_module_files: 文件
417 project_module_wiki: Wiki 431 project_module_wiki: Wiki
418 project_module_repository: 版本库 432 project_module_repository: 版本库
419 project_module_boards: 讨论区 433 project_module_boards: 讨论区
434 project_module_calendar: 日历
435 project_module_gantt: 甘特图
420 436
421 label_user: 用户 437 label_user: 用户
422 label_user_plural: 用户 438 label_user_plural: 用户
423 label_user_new: 新建用户 439 label_user_new: 新建用户
424 label_user_anonymous: 匿名用户 440 label_user_anonymous: 匿名用户
472 label_password_lost: 忘记密码 488 label_password_lost: 忘记密码
473 label_home: 主页 489 label_home: 主页
474 label_my_page: 我的工作台 490 label_my_page: 我的工作台
475 label_my_account: 我的帐号 491 label_my_account: 我的帐号
476 label_my_projects: 我的项目 492 label_my_projects: 我的项目
493 label_my_page_block: 我的工作台模块
477 label_administration: 管理 494 label_administration: 管理
478 label_login: 登录 495 label_login: 登录
479 label_logout: 退出 496 label_logout: 退出
480 label_help: 帮助 497 label_help: 帮助
481 label_reported_issues: 已报告的问题 498 label_reported_issues: 已报告的问题
482 label_assigned_to_me_issues: 指派给我的问题 499 label_assigned_to_me_issues: 指派给我的问题
483 label_last_login: 最后登录 500 label_last_login: 最后登录
484 label_registered_on: 注册于 501 label_registered_on: 注册于
485 label_activity: 活动 502 label_activity: 活动
486 label_overall_activity: 全部活动 503 label_overall_activity: 活动概览
487 label_user_activity: "%{value} 的活动" 504 label_user_activity: "%{value} 的活动"
488 label_new: 新建 505 label_new: 新建
489 label_logged_as: 登录为 506 label_logged_as: 登录为
490 label_environment: 环境 507 label_environment: 环境
491 label_authentication: 认证 508 label_authentication: 认证
544 label_x_open_issues_abbr: 561 label_x_open_issues_abbr:
545 zero: 0 打开 562 zero: 0 打开
546 one: 1 打开 563 one: 1 打开
547 other: "%{count} 打开" 564 other: "%{count} 打开"
548 label_x_closed_issues_abbr: 565 label_x_closed_issues_abbr:
549 zero: 0 关闭 566 zero: 0 已关闭
550 one: 1 关闭 567 one: 1 已关闭
551 other: "%{count} 关闭" 568 other: "%{count} 已关闭"
552 label_total: 合计 569 label_total: 合计
553 label_permissions: 权限 570 label_permissions: 权限
554 label_current_status: 当前状态 571 label_current_status: 当前状态
555 label_new_statuses_allowed: 可变更的新状态 572 label_new_statuses_allowed: 允许的新状态
556 label_all: 全部 573 label_all: 全部
557 label_none: 无 574 label_none: 无
558 label_nobody: 无人 575 label_nobody: 无人
559 label_next: 下一个 576 label_next: 下一页
560 label_previous: 上一个 577 label_previous: 上一页
561 label_used_by: 使用中 578 label_used_by: 使用中
562 label_details: 详情 579 label_details: 详情
563 label_add_note: 添加说明 580 label_add_note: 添加说明
564 label_per_page: 每页 581 label_per_page: 每页
565 label_calendar: 日历 582 label_calendar: 日历
649 label_preview: 预览 666 label_preview: 预览
650 label_feed_plural: Feeds 667 label_feed_plural: Feeds
651 label_changes_details: 所有变更的详情 668 label_changes_details: 所有变更的详情
652 label_issue_tracking: 问题跟踪 669 label_issue_tracking: 问题跟踪
653 label_spent_time: 耗时 670 label_spent_time: 耗时
671 label_overall_spent_time: 总体耗时
654 label_f_hour: "%{value} 小时" 672 label_f_hour: "%{value} 小时"
655 label_f_hour_plural: "%{value} 小时" 673 label_f_hour_plural: "%{value} 小时"
656 label_time_tracking: 时间跟踪 674 label_time_tracking: 时间跟踪
657 label_change_plural: 变更 675 label_change_plural: 变更
658 label_statistics: 统计 676 label_statistics: 统计
686 label_show_completed_versions: 显示已完成的版本 704 label_show_completed_versions: 显示已完成的版本
687 label_me: 我 705 label_me: 我
688 label_board: 讨论区 706 label_board: 讨论区
689 label_board_new: 新建讨论区 707 label_board_new: 新建讨论区
690 label_board_plural: 讨论区 708 label_board_plural: 讨论区
709 label_board_locked: 锁定
710 label_board_sticky: 置顶
691 label_topic_plural: 主题 711 label_topic_plural: 主题
692 label_message_plural: 帖子 712 label_message_plural: 帖子
693 label_message_last: 最新的帖子 713 label_message_last: 最新的帖子
694 label_message_new: 新贴 714 label_message_new: 新贴
695 label_message_posted: 发帖成功 715 label_message_posted: 发帖成功
719 label_theme: 主题 739 label_theme: 主题
720 label_default: 默认 740 label_default: 默认
721 label_search_titles_only: 仅在标题中搜索 741 label_search_titles_only: 仅在标题中搜索
722 label_user_mail_option_all: "收取我的项目的所有通知" 742 label_user_mail_option_all: "收取我的项目的所有通知"
723 label_user_mail_option_selected: "收取选中项目的所有通知..." 743 label_user_mail_option_selected: "收取选中项目的所有通知..."
744 label_user_mail_option_none: "不收取任何通知"
745 label_user_mail_option_only_my_events: "只收取我跟踪或参与的项目的通知"
746 label_user_mail_option_only_assigned: "只收取分配给我的"
747 label_user_mail_option_only_owner: 只收取由我创建的
724 label_user_mail_no_self_notified: "不要发送对我自己提交的修改的通知" 748 label_user_mail_no_self_notified: "不要发送对我自己提交的修改的通知"
725 label_registration_activation_by_email: 通过邮件认证激活帐号 749 label_registration_activation_by_email: 通过邮件认证激活帐号
726 label_registration_manual_activation: 手动激活帐号 750 label_registration_manual_activation: 手动激活帐号
727 label_registration_automatic_activation: 自动激活帐号 751 label_registration_automatic_activation: 自动激活帐号
728 label_display_per_page: "每页显示:%{value}" 752 label_display_per_page: "每页显示:%{value}"
729 label_age: 年龄 753 label_age: 提交时间
730 label_change_properties: 修改属性 754 label_change_properties: 修改属性
731 label_general: 一般 755 label_general: 一般
732 label_more: 更多 756 label_more: 更多
733 label_scm: SCM 757 label_scm: SCM
734 label_plugins: 插件 758 label_plugins: 插件
766 label_copy_same_as_target: 与目标一致 790 label_copy_same_as_target: 与目标一致
767 label_display_used_statuses_only: 只显示被此跟踪标签使用的状态 791 label_display_used_statuses_only: 只显示被此跟踪标签使用的状态
768 label_api_access_key: API访问键 792 label_api_access_key: API访问键
769 label_missing_api_access_key: 缺少API访问键 793 label_missing_api_access_key: 缺少API访问键
770 label_api_access_key_created_on: API访问键是在 %{value} 之前建立的 794 label_api_access_key_created_on: API访问键是在 %{value} 之前建立的
795 label_profile: 简介
796 label_subtask_plural: 子任务
797 label_project_copy_notifications: 复制项目时发送邮件通知
798 label_principal_search: "搜索用户或组:"
799 label_user_search: "搜索用户:"
771 800
772 button_login: 登录 801 button_login: 登录
773 button_submit: 提交 802 button_submit: 提交
774 button_save: 保存 803 button_save: 保存
775 button_check_all: 全选 804 button_check_all: 全选
777 button_delete: 删除 806 button_delete: 删除
778 button_create: 创建 807 button_create: 创建
779 button_create_and_continue: 创建并继续 808 button_create_and_continue: 创建并继续
780 button_test: 测试 809 button_test: 测试
781 button_edit: 编辑 810 button_edit: 编辑
811 button_edit_associated_wikipage: "编辑相关wiki页面: %{page_title}"
782 button_add: 新增 812 button_add: 新增
783 button_change: 修改 813 button_change: 修改
784 button_apply: 应用 814 button_apply: 应用
785 button_clear: 清除 815 button_clear: 清除
786 button_lock: 锁定 816 button_lock: 锁定
814 button_show: 显示 844 button_show: 显示
815 845
816 status_active: 活动的 846 status_active: 活动的
817 status_registered: 已注册 847 status_registered: 已注册
818 status_locked: 已锁定 848 status_locked: 已锁定
819 849
820 version_status_open: 打开 850 version_status_open: 打开
821 version_status_locked: 锁定 851 version_status_locked: 锁定
822 version_status_closed: 关闭 852 version_status_closed: 关闭
823 853
824 field_active: 活动 854 field_active: 活动
825 855
826 text_select_mail_notifications: 选择需要发送邮件通知的动作 856 text_select_mail_notifications: 选择需要发送邮件通知的动作
827 text_regexp_info: 例如:^[A-Z0-9]+$ 857 text_regexp_info: 例如:^[A-Z0-9]+$
828 text_min_max_length_info: 0 表示没有限制 858 text_min_max_length_info: 0 表示没有限制
829 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗? 859 text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
830 text_subprojects_destroy_warning: "以下子项目也将被同时删除:%{value}" 860 text_subprojects_destroy_warning: "以下子项目也将被同时删除:%{value}"
831 text_workflow_edit: 选择角色和跟踪标签来编辑工作流程 861 text_workflow_edit: 选择角色和跟踪标签来编辑工作流程
832 text_are_you_sure: 您确定? 862 text_are_you_sure: 您确定?
863 text_are_you_sure_with_children: "删除问题及子任务?"
833 text_journal_changed: "%{label} 从 %{old} 变更为 %{new}" 864 text_journal_changed: "%{label} 从 %{old} 变更为 %{new}"
834 text_journal_set_to: "%{label} 被设置为 %{value}" 865 text_journal_set_to: "%{label} 被设置为 %{value}"
835 text_journal_deleted: "%{label} 已删除 (%{old})" 866 text_journal_deleted: "%{label} 已删除 (%{old})"
836 text_journal_added: "%{label} %{value} 已添加" 867 text_journal_added: "%{label} %{value} 已添加"
837 text_tip_issue_begin_day: 今天开始的任务 868 text_tip_issue_begin_day: 今天开始的任务
854 text_issue_category_reassign_to: 为问题选择其它类别 885 text_issue_category_reassign_to: 为问题选择其它类别
855 text_user_mail_option: "对于没有选中的项目,您将只会收到您跟踪或参与的项目的通知(比如说,您是问题的报告者, 或被指派解决此问题)。" 886 text_user_mail_option: "对于没有选中的项目,您将只会收到您跟踪或参与的项目的通知(比如说,您是问题的报告者, 或被指派解决此问题)。"
856 text_no_configuration_data: "角色、跟踪标签、问题状态和工作流程还没有设置。\n强烈建议您先载入默认设置,然后在此基础上进行修改。" 887 text_no_configuration_data: "角色、跟踪标签、问题状态和工作流程还没有设置。\n强烈建议您先载入默认设置,然后在此基础上进行修改。"
857 text_load_default_configuration: 载入默认设置 888 text_load_default_configuration: 载入默认设置
858 text_status_changed_by_changeset: "已应用到变更列表 %{value}." 889 text_status_changed_by_changeset: "已应用到变更列表 %{value}."
890 text_time_logged_by_changeset: "已应用到修订版本 %{value}."
859 text_issues_destroy_confirmation: '您确定要删除选中的问题吗?' 891 text_issues_destroy_confirmation: '您确定要删除选中的问题吗?'
860 text_select_project_modules: '请选择此项目可以使用的模块:' 892 text_select_project_modules: '请选择此项目可以使用的模块:'
861 text_default_administrator_account_changed: 默认的管理员帐号已改变 893 text_default_administrator_account_changed: 默认的管理员帐号已改变
862 text_file_repository_writable: 附件路径可写 894 text_file_repository_writable: 附件路径可写
863 text_plugin_assets_writable: 插件的附件路径可写 895 text_plugin_assets_writable: 插件的附件路径可写
865 text_destroy_time_entries_question: 您要删除的问题已经上报了 %{hours} 小时的工作量。您想进行那种操作? 897 text_destroy_time_entries_question: 您要删除的问题已经上报了 %{hours} 小时的工作量。您想进行那种操作?
866 text_destroy_time_entries: 删除上报的工作量 898 text_destroy_time_entries: 删除上报的工作量
867 text_assign_time_entries_to_project: 将已上报的工作量提交到项目中 899 text_assign_time_entries_to_project: 将已上报的工作量提交到项目中
868 text_reassign_time_entries: '将已上报的工作量指定到此问题:' 900 text_reassign_time_entries: '将已上报的工作量指定到此问题:'
869 text_user_wrote: "%{value} 写到:" 901 text_user_wrote: "%{value} 写到:"
902 text_enumeration_destroy_question: "%{count} 个对象被关联到了这个枚举值。"
870 text_enumeration_category_reassign_to: '将它们关联到新的枚举值:' 903 text_enumeration_category_reassign_to: '将它们关联到新的枚举值:'
871 text_enumeration_destroy_question: "%{count} 个对象被关联到了这个枚举值。"
872 text_email_delivery_not_configured: "邮件参数尚未配置,因此邮件通知功能已被禁用。\n请在config/configuration.yml中配置您的SMTP服务器信息并重新启动以使其生效。" 904 text_email_delivery_not_configured: "邮件参数尚未配置,因此邮件通知功能已被禁用。\n请在config/configuration.yml中配置您的SMTP服务器信息并重新启动以使其生效。"
873 text_repository_usernames_mapping: "选择或更新与版本库中的用户名对应的Redmine用户。\n版本库中与Redmine中的同名用户将被自动对应。" 905 text_repository_usernames_mapping: "选择或更新与版本库中的用户名对应的Redmine用户。\n版本库中与Redmine中的同名用户将被自动对应。"
874 text_diff_truncated: '... 差别内容超过了可显示的最大行数并已被截断' 906 text_diff_truncated: '... 差别内容超过了可显示的最大行数并已被截断'
875 text_custom_field_possible_values_info: '每项数值一行' 907 text_custom_field_possible_values_info: '每项数值一行'
876 text_wiki_page_destroy_question: 此页面有 %{descendants} 个子页面和下级页面。您想进行那种操作? 908 text_wiki_page_destroy_question: 此页面有 %{descendants} 个子页面和下级页面。您想进行那种操作?
877 text_wiki_page_reassign_children: 将子页面的上级页面设置为
878 text_wiki_page_nullify_children: 将子页面保留为根页面 909 text_wiki_page_nullify_children: 将子页面保留为根页面
879 text_wiki_page_destroy_children: 删除子页面及其所有下级页面 910 text_wiki_page_destroy_children: 删除子页面及其所有下级页面
911 text_wiki_page_reassign_children: 将子页面的上级页面设置为
880 text_own_membership_delete_confirmation: 你正在删除你现有的某些或全部权限,如果这样做了你可能将会再也无法编辑该项目了。你确定要继续吗? 912 text_own_membership_delete_confirmation: 你正在删除你现有的某些或全部权限,如果这样做了你可能将会再也无法编辑该项目了。你确定要继续吗?
881 913 text_zoom_in: Zoom in
914 text_zoom_out: Zoom out
915
882 default_role_manager: 管理人员 916 default_role_manager: 管理人员
883 default_role_developer: 开发人员 917 default_role_developer: 开发人员
884 default_role_reporter: 报告人员 918 default_role_reporter: 报告人员
885 default_tracker_bug: 错误 919 default_tracker_bug: 错误
886 default_tracker_feature: 功能 920 default_tracker_feature: 功能
903 937
904 enumeration_issue_priorities: 问题优先级 938 enumeration_issue_priorities: 问题优先级
905 enumeration_doc_categories: 文档类别 939 enumeration_doc_categories: 文档类别
906 enumeration_activities: 活动(时间跟踪) 940 enumeration_activities: 活动(时间跟踪)
907 enumeration_system_activity: 系统活动 941 enumeration_system_activity: 系统活动
908 label_board_sticky: 置顶 942
909 label_board_locked: 锁定
910 permission_export_wiki_pages: 导出 wiki 页面
911 setting_cache_formatted_text: 缓存格式化文本
912 permission_manage_project_activities: 管理项目活动
913 error_unable_delete_issue_status: 无法删除问题状态
914 label_profile: 简介
915 permission_manage_subtasks: 管理子任务
916 field_parent_issue: 父任务
917 label_subtask_plural: 子任务
918 label_project_copy_notifications: 复制项目时发送邮件通知
919 error_can_not_delete_custom_field: 不能删除自定义属性
920 error_unable_to_connect: 不能连接到 (%{value})
921 error_can_not_remove_role: 该角色正在使用中, 不能删除.
922 error_can_not_delete_tracker: 该跟踪标签包含问题, 不能删除.
923 field_principal: 用户/用户组
924 label_my_page_block: 我的工作台模块
925 notice_failed_to_save_members: "成员保存失败:%{errors}。"
926 text_zoom_out: 缩小
927 text_zoom_in: 放大
928 notice_unable_delete_time_entry: 无法删除工时记录。
929 label_overall_spent_time: 所有项目耗用工时
930 field_time_entries: Log time
931 project_module_gantt: Gantt
932 project_module_calendar: Calendar
933 button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}"
934 text_are_you_sure_with_children: Delete issue and all child issues?
935 field_text: Text field
936 label_user_mail_option_only_owner: Only for things I am the owner of
937 setting_default_notification_option: Default notification option
938 label_user_mail_option_only_my_events: Only for things I watch or I'm involved in
939 label_user_mail_option_only_assigned: Only for things I am assigned to
940 label_user_mail_option_none: No events
941 field_member_of_group: Assignee's group
942 field_assigned_to_role: Assignee's role
943 notice_not_authorized_archived_project: The project you're trying to access has been archived.
944 label_principal_search: "Search for user or group:"
945 label_user_search: "Search for user:"
946 field_visible: Visible
947 setting_emails_header: Emails header
948 setting_commit_logtime_activity_id: Activity for logged time
949 text_time_logged_by_changeset: Applied in changeset %{value}.
950 setting_commit_logtime_enabled: Enable time logging
951 notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})
952 setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
953 field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text 943 field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text
954 text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page. 944 text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page.
955 label_my_queries: My custom queries 945 label_my_queries: My custom queries
956 text_journal_changed_no_detail: "%{label} updated" 946 text_journal_changed_no_detail: "%{label} updated"
947 label_news_comment_added: Comment added to a news
948 button_expand_all: Expand all
949 button_collapse_all: Collapse all
950 label_additional_workflow_transitions_for_assignee: Additional transitions allowed when the user is the assignee
951 label_additional_workflow_transitions_for_author: Additional transitions allowed when the user is the author
952 label_bulk_edit_selected_time_entries: Bulk edit selected time entries
953 text_time_entries_destroy_confirmation: Are you sure you want to delete the selected time entr(y/ies)?
954 label_role_anonymous: Anonymous
955 label_role_non_member: Non member
956 label_issue_note_added: Note added
957 label_issue_status_updated: Status updated
958 label_issue_priority_updated: Priority updated
959 label_issues_visibility_own: Issues created by or assigned to the user
960 field_issues_visibility: Issues visibility
961 label_issues_visibility_all: All issues
962 permission_set_own_issues_private: Set own issues public or private
963 field_is_private: Private
964 permission_set_issues_private: Set issues public or private
965 label_issues_visibility_public: All non private issues
966 text_issues_destroy_descendants_confirmation: This will also delete %{count} subtask(s).
967
968 field_commit_logs_encoding: 提交注释的编码
969 field_scm_path_encoding: Path encoding
970 text_scm_path_encoding_note: "Default: UTF-8"
971 field_path_to_repository: Path to repository
972 field_root_directory: Root directory
973 field_cvs_module: Module
974 field_cvsroot: CVSROOT
975 text_git_repository_note: Bare and local repository (e.g. /gitrepo, c:\gitrepo)
976 text_mercurial_repository_note: Local repository (e.g. /hgrepo, c:\hgrepo)
977 text_scm_command: Command
978 text_scm_command_version: Version
979 label_git_report_last_commit: Report last commit for files and directories
980 text_scm_config: You can configure your scm commands in config/configuration.yml. Please restart the application after editing it.
981 text_scm_command_not_available: Scm command is not available. Please check settings on the administration panel.