You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

zh.yml 65KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422
  1. # Chinese (China) translations for Ruby on Rails
  2. # by tsechingho (http://github.com/tsechingho)
  3. zh:
  4. # Text direction: Left-to-Right (ltr) or Right-to-Left (rtl)
  5. direction: ltr
  6. jquery:
  7. locale: "zh-CN"
  8. date:
  9. formats:
  10. # Use the strftime parameters for formats.
  11. # When no format has been given, it uses default.
  12. # You can provide other formats here if you like!
  13. default: "%Y-%m-%d"
  14. short: "%b%d日"
  15. long: "%Y年%b%d日"
  16. day_names: [星期天, 星期一, 星期二, 星期三, 星期四, 星期五, 星期六]
  17. abbr_day_names: [日, 一, 二, 三, 四, 五, 六]
  18. # Don't forget the nil at the beginning; there's no such thing as a 0th month
  19. month_names: [~, 一月, 二月, 三月, 四月, 五月, 六月, 七月, 八月, 九月, 十月, 十一月, 十二月]
  20. abbr_month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月]
  21. # Used in date_select and datime_select.
  22. order:
  23. - :year
  24. - :month
  25. - :day
  26. time:
  27. formats:
  28. default: "%Y年%b%d日 %A %H:%M:%S"
  29. time: "%H:%M"
  30. short: "%b%d日 %H:%M"
  31. long: "%Y年%b%d日 %H:%M"
  32. am: "上午"
  33. pm: "下午"
  34. datetime:
  35. distance_in_words:
  36. half_a_minute: "半分钟"
  37. less_than_x_seconds:
  38. one: "一秒内"
  39. other: "少于 %{count} 秒"
  40. x_seconds:
  41. one: "一秒"
  42. other: "%{count} 秒"
  43. less_than_x_minutes:
  44. one: "一分钟内"
  45. other: "少于 %{count} 分钟"
  46. x_minutes:
  47. one: "一分钟"
  48. other: "%{count} 分钟"
  49. about_x_hours:
  50. one: "大约一小时"
  51. other: "大约 %{count} 小时"
  52. x_hours:
  53. one: "1 小时"
  54. other: "%{count} 小时"
  55. x_days:
  56. one: "一天"
  57. other: "%{count} 天"
  58. about_x_months:
  59. one: "大约一个月"
  60. other: "大约 %{count} 个月"
  61. x_months:
  62. one: "一个月"
  63. other: "%{count} 个月"
  64. about_x_years:
  65. one: "大约一年"
  66. other: "大约 %{count} 年"
  67. over_x_years:
  68. one: "超过一年"
  69. other: "超过 %{count} 年"
  70. almost_x_years:
  71. one: "将近 1 年"
  72. other: "将近 %{count} 年"
  73. number:
  74. # Default format for numbers
  75. format:
  76. separator: "."
  77. delimiter: ""
  78. precision: 3
  79. human:
  80. format:
  81. delimiter: ""
  82. precision: 3
  83. storage_units:
  84. format: "%n %u"
  85. units:
  86. byte:
  87. one: "Byte"
  88. other: "Bytes"
  89. kb: "KB"
  90. mb: "MB"
  91. gb: "GB"
  92. tb: "TB"
  93. # Used in array.to_sentence.
  94. support:
  95. array:
  96. sentence_connector: "和"
  97. skip_last_comma: false
  98. activerecord:
  99. errors:
  100. template:
  101. header:
  102. one: "由于发生了一个错误 %{model} 无法保存"
  103. other: "%{count} 个错误使得 %{model} 无法保存"
  104. messages:
  105. inclusion: "不包含于列表中"
  106. exclusion: "是保留关键字"
  107. invalid: "是无效的"
  108. confirmation: "与确认值不匹配"
  109. accepted: "必须是可被接受的"
  110. empty: "不能留空"
  111. blank: "不能为空字符"
  112. too_long: "过长(最长为 %{count} 个字符)"
  113. too_short: "过短(最短为 %{count} 个字符)"
  114. wrong_length: "长度非法(必须为 %{count} 个字符)"
  115. taken: "已经被使用"
  116. not_a_number: "不是数字"
  117. not_a_date: "不是合法日期"
  118. greater_than: "必须大于 %{count}"
  119. greater_than_or_equal_to: "必须大于或等于 %{count}"
  120. equal_to: "必须等于 %{count}"
  121. less_than: "必须小于 %{count}"
  122. less_than_or_equal_to: "必须小于或等于 %{count}"
  123. odd: "必须为单数"
  124. even: "必须为双数"
  125. greater_than_start_date: "必须在起始日期之后"
  126. not_same_project: "不属于同一个项目"
  127. circular_dependency: "此关联将导致循环依赖"
  128. cant_link_an_issue_with_a_descendant: "问题不能关联到它的子任务"
  129. earlier_than_minimum_start_date: "不能早于 %{date} 由于有前置问题"
  130. not_a_regexp: "不是一个合法的正则表达式"
  131. open_issue_with_closed_parent: "无法将一个打开的问题关联至一个被关闭的父任务"
  132. must_contain_uppercase: "必须包含大写字母 (A-Z)"
  133. must_contain_lowercase: "必须包含小写字母 (a-z)"
  134. must_contain_digits: "必须包含数字 (0-9)"
  135. must_contain_special_chars: "必须包含特殊字符 (!, $, %, ...)"
  136. actionview_instancetag_blank_option: 请选择
  137. general_text_No: '否'
  138. general_text_Yes: '是'
  139. general_text_no: '否'
  140. general_text_yes: '是'
  141. general_lang_name: 'Chinese/Simplified (简体中文)'
  142. general_csv_separator: ','
  143. general_csv_decimal_separator: '.'
  144. general_csv_encoding: GB18030
  145. general_pdf_fontname: stsongstdlight
  146. general_pdf_monospaced_fontname: stsongstdlight
  147. general_first_day_of_week: '7'
  148. notice_account_updated: 帐号更新成功
  149. notice_account_invalid_credentials: 无效的用户名或密码
  150. notice_account_password_updated: 密码更新成功
  151. notice_account_wrong_password: 密码错误
  152. notice_account_register_done: 帐号创建成功,请使用注册确认邮件中的链接来激活您的帐号。
  153. notice_account_unknown_email: 未知用户
  154. notice_can_t_change_password: 该帐号使用了外部认证,因此无法更改密码。
  155. notice_account_lost_email_sent: 系统已将引导您设置新密码的邮件发送给您。
  156. notice_account_activated: 您的帐号已被激活。您现在可以登录了。
  157. notice_successful_create: 创建成功
  158. notice_successful_update: 更新成功
  159. notice_successful_delete: 删除成功
  160. notice_successful_connection: 连接成功
  161. notice_file_not_found: 您访问的页面不存在或已被删除。
  162. notice_locking_conflict: 数据已被另一位用户更新
  163. notice_not_authorized: 对不起,您无权访问此页面。
  164. notice_not_authorized_archived_project: 要访问的项目已经归档。
  165. notice_email_sent: "邮件已发送至 %{value}"
  166. notice_email_error: "发送邮件时发生错误 (%{value})"
  167. notice_feeds_access_key_reseted: 您的Atom存取键已被重置。
  168. notice_api_access_key_reseted: 您的API访问键已被重置。
  169. notice_failed_to_save_issues: "%{count} 个问题保存失败(共选择 %{total} 个问题):%{ids}."
  170. notice_failed_to_save_members: "成员保存失败: %{errors}."
  171. notice_account_pending: "您的帐号已被成功创建,正在等待管理员的审核。"
  172. notice_default_data_loaded: 成功载入默认设置。
  173. notice_unable_delete_version: 无法删除版本
  174. notice_unable_delete_time_entry: 无法删除工时
  175. notice_issue_done_ratios_updated: 问题完成度已更新。
  176. notice_gantt_chart_truncated: "由于项目数量超过可显示的最大值 (%{max}),故此甘特图将截断超出部分"
  177. error_can_t_load_default_data: "无法载入默认设置:%{value}"
  178. error_scm_not_found: "版本库中不存在该条目和(或)其修订版本。"
  179. error_scm_command_failed: "访问版本库时发生错误:%{value}"
  180. error_scm_annotate: "该条目不存在或无法追溯。"
  181. error_issue_not_found_in_project: '问题不存在或不属于此项目'
  182. error_no_tracker_in_project: 该项目未设定跟踪标签,请检查项目配置。
  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: "该角色正在使用中,无法删除"
  187. error_can_not_reopen_issue_on_closed_version: 该问题被关联到一个已经关闭的版本,因此无法重新打开。
  188. error_can_not_archive_project: 该项目无法被存档
  189. error_issue_done_ratios_not_updated: 问题完成度未能被更新。
  190. error_workflow_copy_source: 请选择一个源跟踪标签或者角色
  191. error_workflow_copy_target: 请选择目标跟踪标签和角色
  192. error_unable_delete_issue_status: '无法删除问题状态 (%{value})'
  193. error_unable_to_connect: "无法连接 (%{value})"
  194. warning_attachments_not_saved: "%{count} 个文件保存失败"
  195. mail_subject_lost_password: "您的 %{value} 密码"
  196. mail_body_lost_password: '请点击以下链接来修改您的密码:'
  197. mail_subject_register: "%{value}帐号激活"
  198. mail_body_register: '请点击以下链接来激活您的帐号:'
  199. mail_body_account_information_external: "您可以使用您的 %{value} 帐号来登录。"
  200. mail_body_account_information: 您的帐号信息
  201. mail_subject_account_activation_request: "%{value}帐号激活请求"
  202. mail_body_account_activation_request: "新用户(%{value})已完成注册,正在等候您的审核:"
  203. mail_subject_reminder: "%{count} 个问题需要尽快解决 (%{days})"
  204. mail_body_reminder: "指派给您的 %{count} 个问题需要在 %{days} 天内完成:"
  205. mail_subject_wiki_content_added: "'%{id}' wiki页面已添加"
  206. mail_body_wiki_content_added: "'%{id}' wiki页面已由 %{author} 添加。"
  207. mail_subject_wiki_content_updated: "'%{id}' wiki页面已更新。"
  208. mail_body_wiki_content_updated: "'%{id}' wiki页面已由 %{author} 更新。"
  209. field_name: 名称
  210. field_description: 描述
  211. field_summary: 摘要
  212. field_is_required: 必填
  213. field_firstname: 名字
  214. field_lastname: 姓氏
  215. field_mail: 邮件地址
  216. field_filename: 文件
  217. field_filesize: 大小
  218. field_downloads: 下载次数
  219. field_author: 作者
  220. field_created_on: 创建于
  221. field_updated_on: 更新于
  222. field_field_format: 格式
  223. field_is_for_all: 用于所有项目
  224. field_possible_values: 可能的值
  225. field_regexp: 正则表达式
  226. field_min_length: 最小长度
  227. field_max_length: 最大长度
  228. field_value: 值
  229. field_category: 类别
  230. field_title: 标题
  231. field_project: 项目
  232. field_issue: 问题
  233. field_status: 状态
  234. field_notes: 说明
  235. field_is_closed: 已关闭的问题
  236. field_is_default: 默认值
  237. field_tracker: 跟踪
  238. field_subject: 主题
  239. field_due_date: 计划完成日期
  240. field_assigned_to: 指派给
  241. field_priority: 优先级
  242. field_fixed_version: 目标版本
  243. field_user: 用户
  244. field_principal: 用户/用户组
  245. field_role: 角色
  246. field_homepage: 主页
  247. field_is_public: 公开
  248. field_parent: 上级项目
  249. field_is_in_roadmap: 在路线图中显示
  250. field_login: 登录名
  251. field_mail_notification: 邮件通知
  252. field_admin: 管理员
  253. field_last_login_on: 最后登录
  254. field_language: 语言
  255. field_effective_date: 截止日期
  256. field_password: 密码
  257. field_new_password: 新密码
  258. field_password_confirmation: 确认
  259. field_version: 版本
  260. field_type: 类型
  261. field_host: 主机
  262. field_port: 端口
  263. field_account: 帐号
  264. field_base_dn: Base DN
  265. field_attr_login: 登录名属性
  266. field_attr_firstname: 名字属性
  267. field_attr_lastname: 姓氏属性
  268. field_attr_mail: 邮件属性
  269. field_onthefly: 即时用户生成
  270. field_start_date: 开始日期
  271. field_done_ratio: "% 完成"
  272. field_auth_source: 认证模式
  273. field_hide_mail: 隐藏我的邮件地址
  274. field_comments: 注释
  275. field_url: URL
  276. field_start_page: 起始页
  277. field_subproject: 子项目
  278. field_hours: 小时
  279. field_activity: 活动
  280. field_spent_on: 日期
  281. field_identifier: 标识
  282. field_is_filter: 作为过滤条件
  283. field_issue_to: 相关问题
  284. field_delay: 延期
  285. field_assignable: 问题可指派给此角色
  286. field_redirect_existing_links: 重定向到现有链接
  287. field_estimated_hours: 预期时间
  288. field_column_names: 列
  289. field_time_entries: 工时
  290. field_time_zone: 时区
  291. field_searchable: 可用作搜索条件
  292. field_default_value: 默认值
  293. field_comments_sorting: 显示注释
  294. field_parent_title: 上级页面
  295. field_editable: 可编辑
  296. field_watcher: 关注者
  297. field_content: 内容
  298. field_group_by: 根据此条件分组
  299. field_sharing: 共享
  300. field_parent_issue: 父任务
  301. field_member_of_group: 用户组的成员
  302. field_assigned_to_role: 角色的成员
  303. field_text: 文本字段
  304. field_visible: 可见的
  305. setting_app_title: 应用程序标题
  306. setting_welcome_text: 欢迎文字
  307. setting_default_language: 默认语言
  308. setting_login_required: 要求认证
  309. setting_self_registration: 允许自注册
  310. setting_attachment_max_size: 附件大小限制
  311. setting_issues_export_limit: 问题导出条目的限制
  312. setting_mail_from: 邮件发件人地址
  313. setting_plain_text_mail: 纯文本(无HTML)
  314. setting_host_name: 主机名称
  315. setting_text_formatting: 文本格式
  316. setting_wiki_compression: 压缩Wiki历史文档
  317. setting_feeds_limit: Atom Feed内容条数限制
  318. setting_default_projects_public: 新建项目默认为公开项目
  319. setting_autofetch_changesets: 自动获取程序变更
  320. setting_sys_api_enabled: 启用用于版本库管理的Web Service
  321. setting_commit_ref_keywords: 用于引用问题的关键字
  322. setting_commit_fix_keywords: 用于解决问题的关键字
  323. setting_autologin: 自动登录
  324. setting_date_format: 日期格式
  325. setting_time_format: 时间格式
  326. setting_cross_project_issue_relations: 允许不同项目之间的问题关联
  327. setting_issue_list_default_columns: 问题列表中显示的默认列
  328. setting_emails_header: 邮件头
  329. setting_emails_footer: 邮件签名
  330. setting_protocol: 协议
  331. setting_per_page_options: 每页显示条目个数的设置
  332. setting_user_format: 用户显示格式
  333. setting_activity_days_default: 在项目活动中显示的天数
  334. setting_display_subprojects_issues: 在项目页面上默认显示子项目的问题
  335. setting_enabled_scm: 启用 SCM
  336. setting_mail_handler_body_delimiters: 在这些行之后截断邮件
  337. setting_mail_handler_api_enabled: 启用用于接收邮件的服务
  338. setting_mail_handler_api_key: API key
  339. setting_sequential_project_identifiers: 顺序产生项目标识
  340. setting_gravatar_enabled: 使用Gravatar用户头像
  341. setting_gravatar_default: 默认的Gravatar头像
  342. setting_diff_max_lines_displayed: 查看差别页面上显示的最大行数
  343. setting_file_max_size_displayed: 允许直接显示的最大文本文件
  344. setting_repository_log_display_limit: 在文件变更记录页面上显示的最大修订版本数量
  345. setting_password_min_length: 最短密码长度
  346. setting_new_project_user_role_id: 非管理员用户新建项目时将被赋予的(在该项目中的)角色
  347. setting_default_projects_modules: 新建项目默认启用的模块
  348. setting_issue_done_ratio: 计算问题完成度:
  349. setting_issue_done_ratio_issue_field: 使用问题(的完成度)属性
  350. setting_issue_done_ratio_issue_status: 使用问题状态
  351. setting_start_of_week: 日历开始于
  352. setting_rest_api_enabled: 启用REST web service
  353. setting_cache_formatted_text: 缓存格式化文字
  354. setting_default_notification_option: 默认提醒选项
  355. setting_commit_logtime_enabled: 激活时间日志
  356. setting_commit_logtime_activity_id: 记录的活动
  357. setting_gantt_items_limit: 在甘特图上显示的最大记录数
  358. permission_add_project: 新建项目
  359. permission_add_subprojects: 新建子项目
  360. permission_edit_project: 编辑项目
  361. permission_select_project_modules: 选择项目模块
  362. permission_manage_members: 管理成员
  363. permission_manage_project_activities: 管理项目活动
  364. permission_manage_versions: 管理版本
  365. permission_manage_categories: 管理问题类别
  366. permission_view_issues: 查看问题
  367. permission_add_issues: 新建问题
  368. permission_edit_issues: 更新问题
  369. permission_manage_issue_relations: 管理问题关联
  370. permission_add_issue_notes: 添加说明
  371. permission_edit_issue_notes: 编辑说明
  372. permission_edit_own_issue_notes: 编辑自己的说明
  373. permission_delete_issues: 删除问题
  374. permission_manage_public_queries: 管理公开的查询
  375. permission_save_queries: 保存查询
  376. permission_view_gantt: 查看甘特图
  377. permission_view_calendar: 查看日历
  378. permission_view_issue_watchers: 查看关注者列表
  379. permission_add_issue_watchers: 添加关注者
  380. permission_delete_issue_watchers: 删除关注者
  381. permission_log_time: 登记工时
  382. permission_view_time_entries: 查看耗时
  383. permission_edit_time_entries: 编辑耗时
  384. permission_edit_own_time_entries: 编辑自己的耗时
  385. permission_manage_news: 管理新闻
  386. permission_comment_news: 为新闻添加评论
  387. permission_view_documents: 查看文档
  388. permission_manage_files: 管理文件
  389. permission_view_files: 查看文件
  390. permission_manage_wiki: 管理Wiki
  391. permission_rename_wiki_pages: 重定向/重命名Wiki页面
  392. permission_delete_wiki_pages: 删除Wiki页面
  393. permission_view_wiki_pages: 查看Wiki
  394. permission_view_wiki_edits: 查看Wiki历史记录
  395. permission_edit_wiki_pages: 编辑Wiki页面
  396. permission_delete_wiki_pages_attachments: 删除附件
  397. permission_protect_wiki_pages: 保护Wiki页面
  398. permission_manage_repository: 管理版本库
  399. permission_browse_repository: 浏览版本库
  400. permission_view_changesets: 查看变更
  401. permission_commit_access: 访问提交信息
  402. permission_manage_boards: 管理讨论区
  403. permission_view_messages: 查看帖子
  404. permission_add_messages: 发表帖子
  405. permission_edit_messages: 编辑帖子
  406. permission_edit_own_messages: 编辑自己的帖子
  407. permission_delete_messages: 删除帖子
  408. permission_delete_own_messages: 删除自己的帖子
  409. permission_export_wiki_pages: 导出 wiki 页面
  410. permission_manage_subtasks: 管理子任务
  411. project_module_issue_tracking: 问题跟踪
  412. project_module_time_tracking: 时间跟踪
  413. project_module_news: 新闻
  414. project_module_documents: 文档
  415. project_module_files: 文件
  416. project_module_wiki: Wiki
  417. project_module_repository: 版本库
  418. project_module_boards: 讨论区
  419. project_module_calendar: 日历
  420. project_module_gantt: 甘特图
  421. label_user: 用户
  422. label_user_plural: 用户
  423. label_user_new: 新建用户
  424. label_user_anonymous: 匿名用户
  425. label_project: 项目
  426. label_project_new: 新建项目
  427. label_project_plural: 项目
  428. label_x_projects:
  429. zero: 无项目
  430. one: 1 个项目
  431. other: "%{count} 个项目"
  432. label_project_all: 所有的项目
  433. label_project_latest: 最近的项目
  434. label_issue: 问题
  435. label_issue_new: 新建问题
  436. label_issue_plural: 问题
  437. label_issue_view_all: 查看所有问题
  438. label_issues_by: "按 %{value} 分组显示问题"
  439. label_issue_added: 问题已添加
  440. label_issue_updated: 问题已更新
  441. label_document: 文档
  442. label_document_new: 新建文档
  443. label_document_plural: 文档
  444. label_document_added: 文档已添加
  445. label_role: 角色
  446. label_role_plural: 角色
  447. label_role_new: 新建角色
  448. label_role_and_permissions: 角色和权限
  449. label_member: 成员
  450. label_member_new: 新建成员
  451. label_member_plural: 成员
  452. label_tracker: 跟踪标签
  453. label_tracker_plural: 跟踪标签
  454. label_tracker_new: 新建跟踪标签
  455. label_workflow: 工作流程
  456. label_issue_status: 问题状态
  457. label_issue_status_plural: 问题状态
  458. label_issue_status_new: 新建问题状态
  459. label_issue_category: 问题类别
  460. label_issue_category_plural: 问题类别
  461. label_issue_category_new: 新建问题类别
  462. label_custom_field: 自定义属性
  463. label_custom_field_plural: 自定义属性
  464. label_custom_field_new: 新建自定义属性
  465. label_enumerations: 枚举值
  466. label_enumeration_new: 新建枚举值
  467. label_information: 信息
  468. label_information_plural: 信息
  469. label_register: 注册
  470. label_password_lost: 忘记密码
  471. label_home: 主页
  472. label_my_page: 我的工作台
  473. label_my_account: 我的帐号
  474. label_my_projects: 我的项目
  475. label_administration: 管理
  476. label_login: 登录
  477. label_logout: 退出
  478. label_help: 帮助
  479. label_reported_issues: 已报告的问题
  480. label_assigned_to_me_issues: 指派给我的问题
  481. label_last_login: 最后登录
  482. label_registered_on: 注册于
  483. label_activity: 活动
  484. label_user_activity: "%{value} 的活动"
  485. label_new: 新建
  486. label_logged_as: 登录为
  487. label_environment: 环境
  488. label_authentication: 认证
  489. label_auth_source: 认证模式
  490. label_auth_source_new: 新建认证模式
  491. label_auth_source_plural: 认证模式
  492. label_subproject_plural: 子项目
  493. label_subproject_new: 新建子项目
  494. label_and_its_subprojects: "%{value} 及其子项目"
  495. label_min_max_length: 最小 - 最大 长度
  496. label_list: 列表
  497. label_date: 日期
  498. label_integer: 整数
  499. label_float: 浮点数
  500. label_boolean: 布尔值
  501. label_string: 字符串
  502. label_text: 文本
  503. label_attribute: 属性
  504. label_attribute_plural: 属性
  505. label_no_data: 没有任何数据可供显示
  506. label_change_status: 变更状态
  507. label_history: 历史记录
  508. label_attachment: 文件
  509. label_attachment_new: 新建文件
  510. label_attachment_delete: 删除文件
  511. label_attachment_plural: 文件
  512. label_file_added: 文件已添加
  513. label_report: 报表
  514. label_report_plural: 报表
  515. label_news: 新闻
  516. label_news_new: 添加新闻
  517. label_news_plural: 新闻
  518. label_news_latest: 最近的新闻
  519. label_news_view_all: 查看所有新闻
  520. label_news_added: 新闻已添加
  521. label_settings: 配置
  522. label_overview: 概述
  523. label_version: 版本
  524. label_version_new: 新建版本
  525. label_version_plural: 版本
  526. label_close_versions: 关闭已完成的版本
  527. label_confirmation: 确认
  528. label_export_to: 导出
  529. label_read: 读取...
  530. label_public_projects: 公开的项目
  531. label_open_issues: 打开
  532. label_open_issues_plural: 打开
  533. label_closed_issues: 已关闭
  534. label_closed_issues_plural: 已关闭
  535. label_x_open_issues_abbr:
  536. zero: 0 打开
  537. one: 1 打开
  538. other: "%{count} 打开"
  539. label_x_closed_issues_abbr:
  540. zero: 0 已关闭
  541. one: 1 已关闭
  542. other: "%{count} 已关闭"
  543. label_total: 合计
  544. label_permissions: 权限
  545. label_current_status: 当前状态
  546. label_new_statuses_allowed: 允许的新状态
  547. label_all: 全部
  548. label_none: 无
  549. label_nobody: 无人
  550. label_next: 下一页
  551. label_previous: 上一页
  552. label_used_by: 使用中
  553. label_details: 详情
  554. label_add_note: 添加说明
  555. label_calendar: 日历
  556. label_months_from: 个月以来
  557. label_gantt: 甘特图
  558. label_internal: 内部
  559. label_last_changes: "最近的 %{count} 次变更"
  560. label_change_view_all: 查看所有变更
  561. label_comment: 评论
  562. label_comment_plural: 评论
  563. label_x_comments:
  564. zero: 无评论
  565. one: 1 条评论
  566. other: "%{count} 条评论"
  567. label_comment_add: 添加评论
  568. label_comment_added: 评论已添加
  569. label_comment_delete: 删除评论
  570. label_query: 自定义查询
  571. label_query_plural: 自定义查询
  572. label_query_new: 新建查询
  573. label_filter_add: 增加过滤器
  574. label_filter_plural: 过滤器
  575. label_equals: 等于
  576. label_not_equals: 不等于
  577. label_in_less_than: 剩余天数小于
  578. label_in_more_than: 剩余天数大于
  579. label_greater_or_equal: '>='
  580. label_less_or_equal: '<='
  581. label_in: 剩余天数
  582. label_today: 今天
  583. label_yesterday: 昨天
  584. label_this_week: 本周
  585. label_last_week: 上周
  586. label_last_n_days: "最后 %{count} 天"
  587. label_this_month: 本月
  588. label_last_month: 上月
  589. label_this_year: 今年
  590. label_date_range: 日期范围
  591. label_less_than_ago: 之前天数少于
  592. label_more_than_ago: 之前天数大于
  593. label_ago: 之前天数
  594. label_contains: 包含
  595. label_not_contains: 不包含
  596. label_day_plural: 天
  597. label_repository: 版本库
  598. label_repository_plural: 版本库
  599. label_browse: 浏览
  600. label_branch: 分支
  601. label_tag: 标签
  602. label_revision: 修订
  603. label_revision_plural: 修订
  604. label_revision_id: 修订 %{value}
  605. label_associated_revisions: 相关修订版本
  606. label_added: 已添加
  607. label_modified: 已修改
  608. label_copied: 已复制
  609. label_renamed: 已重命名
  610. label_deleted: 已删除
  611. label_latest_revision: 最近的修订版本
  612. label_latest_revision_plural: 最近的修订版本
  613. label_view_revisions: 查看修订
  614. label_view_all_revisions: 查看所有修订
  615. label_max_size: 最大尺寸
  616. label_sort_highest: 置顶
  617. label_sort_higher: 上移
  618. label_sort_lower: 下移
  619. label_sort_lowest: 置底
  620. label_roadmap: 路线图
  621. label_roadmap_due_in: "截止日期到 %{value}"
  622. label_roadmap_overdue: "%{value} 延期"
  623. label_roadmap_no_issues: 该版本没有问题
  624. label_search: 搜索
  625. label_result_plural: 结果
  626. label_all_words: 所有单词
  627. label_wiki: Wiki
  628. label_wiki_edit: Wiki 编辑
  629. label_wiki_edit_plural: Wiki 编辑记录
  630. label_wiki_page: Wiki 页面
  631. label_wiki_page_plural: Wiki 页面
  632. label_index_by_title: 按标题索引
  633. label_index_by_date: 按日期索引
  634. label_current_version: 当前版本
  635. label_preview: 预览
  636. label_feed_plural: Feeds
  637. label_changes_details: 所有变更的详情
  638. label_issue_tracking: 问题跟踪
  639. label_spent_time: 耗时
  640. label_f_hour: "%{value} 小时"
  641. label_f_hour_plural: "%{value} 小时"
  642. label_time_tracking: 时间跟踪
  643. label_change_plural: 变更
  644. label_statistics: 统计
  645. label_commits_per_month: 每月提交次数
  646. label_commits_per_author: 每用户提交次数
  647. label_view_diff: 查看差别
  648. label_diff_inline: 直列
  649. label_diff_side_by_side: 并排
  650. label_options: 选项
  651. label_copy_workflow_from: 从以下选项复制工作流程
  652. label_permissions_report: 权限报表
  653. label_watched_issues: 关注的问题
  654. label_related_issues: 相关的问题
  655. label_applied_status: 应用后的状态
  656. label_loading: 载入中...
  657. label_relation_new: 新建关联
  658. label_relation_delete: 删除关联
  659. label_relates_to: 关联到
  660. label_duplicates: 重复
  661. label_duplicated_by: 与其重复
  662. label_blocks: 阻挡
  663. label_blocked_by: 被阻挡
  664. label_precedes: 优先于
  665. label_follows: 跟随于
  666. label_stay_logged_in: 保持登录状态
  667. label_disabled: 禁用
  668. label_show_completed_versions: 显示已完成的版本
  669. label_me: 我
  670. label_board: 讨论区
  671. label_board_new: 新建讨论区
  672. label_board_plural: 讨论区
  673. label_board_locked: 锁定
  674. label_board_sticky: 置顶
  675. label_topic_plural: 主题
  676. label_message_plural: 帖子
  677. label_message_last: 最新的帖子
  678. label_message_new: 新贴
  679. label_message_posted: 发帖成功
  680. label_reply_plural: 回复
  681. label_send_information: 给用户发送帐号信息
  682. label_year: 年
  683. label_month: 月
  684. label_week: 周
  685. label_date_from: 从
  686. label_date_to: 到
  687. label_language_based: 根据用户的语言
  688. label_sort_by: "根据 %{value} 排序"
  689. label_send_test_email: 发送测试邮件
  690. label_feeds_access_key: Atom存取键
  691. label_missing_feeds_access_key: 缺少Atom存取键
  692. label_feeds_access_key_created_on: "Atom存取键是在 %{value} 之前建立的"
  693. label_module_plural: 模块
  694. label_added_time_by: "由 %{author} 在 %{age} 之前添加"
  695. label_updated_time: " 更新于 %{value} 之前"
  696. label_updated_time_by: "由 %{author} 更新于 %{age} 之前"
  697. label_jump_to_a_project: 选择一个项目...
  698. label_file_plural: 文件
  699. label_changeset_plural: 变更
  700. label_default_columns: 默认列
  701. label_no_change_option: (不变)
  702. label_bulk_edit_selected_issues: 批量修改选中的问题
  703. label_theme: 主题
  704. label_default: 默认
  705. label_search_titles_only: 仅在标题中搜索
  706. label_user_mail_option_all: "收取我的项目的所有通知"
  707. label_user_mail_option_selected: "收取选中项目的所有通知..."
  708. label_user_mail_option_none: "不收取任何通知"
  709. label_user_mail_option_only_my_events: "只收取我关注或参与的项目的通知"
  710. label_user_mail_no_self_notified: "不要发送对我自己提交的修改的通知"
  711. label_registration_activation_by_email: 通过邮件认证激活帐号
  712. label_registration_manual_activation: 手动激活帐号
  713. label_registration_automatic_activation: 自动激活帐号
  714. label_display_per_page: "每页显示:%{value}"
  715. label_age: 提交时间
  716. label_change_properties: 修改属性
  717. label_general: 一般
  718. label_scm: SCM
  719. label_plugins: 插件
  720. label_ldap_authentication: LDAP 认证
  721. label_downloads_abbr: D/L
  722. label_optional_description: 可选的描述
  723. label_add_another_file: 添加其它文件
  724. label_preferences: 首选项
  725. label_chronological_order: 按时间顺序
  726. label_reverse_chronological_order: 按时间顺序(倒序)
  727. label_incoming_emails: 接收邮件
  728. label_generate_key: 生成一个key
  729. label_issue_watchers: 关注者
  730. label_example: 示例
  731. label_display: 显示
  732. label_sort: 排序
  733. label_ascending: 升序
  734. label_descending: 降序
  735. label_date_from_to: 从 %{start} 到 %{end}
  736. label_wiki_content_added: Wiki 页面已添加
  737. label_wiki_content_updated: Wiki 页面已更新
  738. label_group: 组
  739. label_group_plural: 组
  740. label_group_new: 新建组
  741. label_time_entry_plural: 耗时
  742. label_version_sharing_none: 不共享
  743. label_version_sharing_descendants: 与子项目共享
  744. label_version_sharing_hierarchy: 与项目继承层次共享
  745. label_version_sharing_tree: 与项目树共享
  746. label_version_sharing_system: 与所有项目共享
  747. label_update_issue_done_ratios: 更新问题的完成度
  748. label_copy_source: 源
  749. label_copy_target: 目标
  750. label_copy_same_as_target: 与目标一致
  751. label_display_used_statuses_only: 只显示被此跟踪标签使用的状态
  752. label_api_access_key: API访问键
  753. label_missing_api_access_key: 缺少API访问键
  754. label_api_access_key_created_on: API访问键是在 %{value} 之前建立的
  755. label_profile: 简介
  756. label_subtask_plural: 子任务
  757. label_project_copy_notifications: 复制项目时发送邮件通知
  758. label_principal_search: "搜索用户或组:"
  759. label_user_search: "搜索用户:"
  760. button_login: 登录
  761. button_submit: 提交
  762. button_save: 保存
  763. button_check_all: 全选
  764. button_uncheck_all: 清除
  765. button_delete: 删除
  766. button_create: 创建
  767. button_create_and_continue: 创建并继续
  768. button_test: 测试
  769. button_edit: 编辑
  770. button_edit_associated_wikipage: "编辑相关wiki页面: %{page_title}"
  771. button_add: 新增
  772. button_change: 修改
  773. button_apply: 应用
  774. button_clear: 清除
  775. button_lock: 锁定
  776. button_unlock: 解锁
  777. button_download: 下载
  778. button_list: 列表
  779. button_view: 查看
  780. button_move: 移动
  781. button_move_and_follow: 移动并转到新问题
  782. button_back: 返回
  783. button_cancel: 取消
  784. button_activate: 激活
  785. button_sort: 排序
  786. button_log_time: 登记工时
  787. button_rollback: 恢复到这个版本
  788. button_watch: 关注
  789. button_unwatch: 取消关注
  790. button_reply: 回复
  791. button_archive: 存档
  792. button_unarchive: 取消存档
  793. button_reset: 重置
  794. button_rename: 重命名/重定向
  795. button_change_password: 修改密码
  796. button_copy: 复制
  797. button_copy_and_follow: 复制并转到新问题
  798. button_annotate: 追溯
  799. button_update: 更新
  800. button_configure: 配置
  801. button_quote: 引用
  802. button_show: 显示
  803. status_active: 活动的
  804. status_registered: 已注册
  805. status_locked: 已锁定
  806. version_status_open: 打开
  807. version_status_locked: 锁定
  808. version_status_closed: 关闭
  809. field_active: 活动
  810. text_select_mail_notifications: 选择需要发送邮件通知的动作
  811. text_regexp_info: 例如:^[A-Z0-9]+$
  812. text_project_destroy_confirmation: 您确信要删除这个项目以及所有相关的数据吗?
  813. text_subprojects_destroy_warning: "以下子项目也将被同时删除:%{value}"
  814. text_workflow_edit: 选择角色和跟踪标签来编辑工作流程
  815. text_are_you_sure: 您确定?
  816. text_journal_changed: "%{label} 从 %{old} 变更为 %{new}"
  817. text_journal_set_to: "%{label} 被设置为 %{value}"
  818. text_journal_deleted: "%{label} 已删除 (%{old})"
  819. text_journal_added: "%{label} %{value} 已添加"
  820. text_tip_issue_begin_day: 今天开始的任务
  821. text_tip_issue_end_day: 今天结束的任务
  822. text_tip_issue_begin_end_day: 今天开始并结束的任务
  823. text_caracters_maximum: "最多 %{count} 个字符。"
  824. text_caracters_minimum: "至少需要 %{count} 个字符。"
  825. text_length_between: "长度必须在 %{min} 到 %{max} 个字符之间。"
  826. text_tracker_no_workflow: 此跟踪标签未定义工作流程
  827. text_unallowed_characters: 非法字符
  828. text_comma_separated: 可以使用多个值(用逗号,分开)。
  829. text_line_separated: 可以使用多个值(每行一个值)。
  830. text_issues_ref_in_commit_messages: 在提交信息中引用和解决问题
  831. text_issue_added: "问题 %{id} 已由 %{author} 提交。"
  832. text_issue_updated: "问题 %{id} 已由 %{author} 更新。"
  833. text_wiki_destroy_confirmation: 您确定要删除这个 wiki 及其所有内容吗?
  834. text_issue_category_destroy_question: "有一些问题(%{count} 个)属于此类别。您想进行哪种操作?"
  835. text_issue_category_destroy_assignments: 删除问题的所属类别(问题变为无类别)
  836. text_issue_category_reassign_to: 为问题选择其它类别
  837. text_user_mail_option: "对于没有选中的项目,您将只会收到您关注或参与的项目的通知(比如说,您是问题的报告者, 或被指派解决此问题)。"
  838. text_no_configuration_data: "角色、跟踪标签、问题状态和工作流程还没有设置。\n强烈建议您先载入默认设置,然后在此基础上进行修改。"
  839. text_load_default_configuration: 载入默认设置
  840. text_status_changed_by_changeset: "已应用到变更列表 %{value}."
  841. text_time_logged_by_changeset: "已应用到修订版本 %{value}."
  842. text_issues_destroy_confirmation: '您确定要删除选中的问题吗?'
  843. text_select_project_modules: '请选择此项目可以使用的模块:'
  844. text_default_administrator_account_changed: 默认的管理员帐号已改变
  845. text_file_repository_writable: 附件路径可写
  846. text_plugin_assets_writable: 插件的附件路径可写
  847. text_minimagick_available: MiniMagick 可用(可选的)
  848. text_destroy_time_entries_question: 您要删除的问题已经上报了 %{hours} 小时的工作量。您想进行那种操作?
  849. text_destroy_time_entries: 删除上报的工作量
  850. text_assign_time_entries_to_project: 将已上报的工作量提交到项目中
  851. text_reassign_time_entries: '将已上报的工作量指定到此问题:'
  852. text_user_wrote: "%{value} 写到:"
  853. text_user_wrote_in: "%{value} 在 %{link} 中写到:"
  854. text_enumeration_destroy_question: "%{count} 个对象被关联到了这个枚举值。"
  855. text_enumeration_category_reassign_to: '将它们关联到新的枚举值:'
  856. text_email_delivery_not_configured: "邮件参数尚未配置,因此邮件通知功能已被禁用。\n请在config/configuration.yml中配置您的SMTP服务器信息并重新启动以使其生效。"
  857. text_repository_usernames_mapping: "选择或更新与版本库中的用户名对应的Redmine用户。\n版本库中与Redmine中的同名用户将被自动对应。"
  858. text_diff_truncated: '... 差别内容超过了可显示的最大行数并已被截断'
  859. text_custom_field_possible_values_info: '每项数值一行'
  860. text_wiki_page_destroy_question: 此页面有 %{descendants} 个子页面和下级页面。您想进行那种操作?
  861. text_wiki_page_nullify_children: 将子页面保留为根页面
  862. text_wiki_page_destroy_children: 删除子页面及其所有下级页面
  863. text_wiki_page_reassign_children: 将子页面的上级页面设置为
  864. text_own_membership_delete_confirmation: 你正在删除你现有的某些或全部权限,如果这样做了你可能将会再也无法编辑该项目了。你确定要继续吗?
  865. text_zoom_in: 放大
  866. text_zoom_out: 缩小
  867. default_role_manager: 管理人员
  868. default_role_developer: 开发人员
  869. default_role_reporter: 报告人员
  870. default_tracker_bug: 错误
  871. default_tracker_feature: 功能
  872. default_tracker_support: 支持
  873. default_issue_status_new: 新建
  874. default_issue_status_in_progress: 进行中
  875. default_issue_status_resolved: 已解决
  876. default_issue_status_feedback: 反馈
  877. default_issue_status_closed: 已关闭
  878. default_issue_status_rejected: 已拒绝
  879. default_doc_category_user: 用户文档
  880. default_doc_category_tech: 技术文档
  881. default_priority_low: 低
  882. default_priority_normal: 普通
  883. default_priority_high: 高
  884. default_priority_urgent: 紧急
  885. default_priority_immediate: 立刻
  886. default_activity_design: 设计
  887. default_activity_development: 开发
  888. enumeration_issue_priorities: 问题优先级
  889. enumeration_doc_categories: 文档类别
  890. enumeration_activities: 活动(时间跟踪)
  891. enumeration_system_activity: 系统活动
  892. field_warn_on_leaving_unsaved: 当离开未保存内容的页面时,提示我
  893. text_warn_on_leaving_unsaved: 若离开当前页面,则该页面内未保存的内容将丢失。
  894. label_my_queries: 我的自定义查询
  895. text_journal_changed_no_detail: "%{label} 已更新。"
  896. label_news_comment_added: 添加到新闻的评论
  897. button_expand_all: 展开所有
  898. button_collapse_all: 合拢所有
  899. label_additional_workflow_transitions_for_assignee: 当用户是问题的指派对象时所允许的问题状态转换
  900. label_additional_workflow_transitions_for_author: 当用户是问题作者时所允许的问题状态转换
  901. label_bulk_edit_selected_time_entries: 批量修改选定的时间条目
  902. text_time_entries_destroy_confirmation: 是否确定要删除选定的时间条目?
  903. label_role_anonymous: 匿名用户
  904. label_role_non_member: 非成员用户
  905. label_issue_note_added: 问题备注已添加
  906. label_issue_status_updated: 问题状态更新
  907. label_issue_priority_updated: 问题优先级更新
  908. label_issues_visibility_own: 用户创建或被指派的问题
  909. field_issues_visibility: 问题可见度
  910. label_issues_visibility_all: 全部问题
  911. permission_set_own_issues_private: 设置自己的问题为公开或私有
  912. field_is_private: 私有
  913. permission_set_issues_private: 设置问题为公开或私有
  914. label_issues_visibility_public: 全部非私有问题
  915. text_issues_destroy_descendants_confirmation: 此操作同时会删除 %{count} 个子任务。
  916. field_commit_logs_encoding: 提交注释的编码
  917. field_scm_path_encoding: 路径编码
  918. text_scm_path_encoding_note: "默认: UTF-8"
  919. field_path_to_repository: 库路径
  920. field_root_directory: 根目录
  921. field_cvs_module: CVS 模块
  922. field_cvsroot: CVSROOT
  923. text_mercurial_repository_note: 本地库 (e.g. /hgrepo, c:\hgrepo)
  924. text_scm_command: 命令
  925. text_scm_command_version: 版本
  926. label_git_report_last_commit: 报告最后一次文件/目录提交
  927. text_scm_config: 您可以在config/configuration.yml中配置您的SCM命令。 请在编辑后,重启Redmine应用。
  928. text_scm_command_not_available: Scm命令不可用。 请检查管理面板的配置。
  929. text_git_repository_note: 库中无内容。(e.g. /gitrepo, c:\gitrepo)
  930. notice_issue_successful_create: 问题 %{id} 已创建。
  931. label_between: 介于
  932. setting_issue_group_assignment: 允许将问题指派给组
  933. label_diff: 差异
  934. description_query_sort_criteria_direction: 排序方式
  935. description_project_scope: 搜索范围
  936. description_filter: 过滤器
  937. description_user_mail_notification: 邮件通知设置
  938. description_message_content: 信息内容
  939. description_available_columns: 备选列
  940. description_issue_category_reassign: 选择问题类别
  941. description_search: 搜索字段
  942. description_notes: 批注
  943. description_choose_project: 项目
  944. description_query_sort_criteria_attribute: 排序方式
  945. description_wiki_subpages_reassign: 选择父页面
  946. description_selected_columns: 已选列
  947. label_parent_revision: 父修订
  948. label_child_revision: 子修订
  949. error_scm_annotate_big_text_file: 输入文本内容超长,无法输入。
  950. setting_default_issue_start_date_to_creation_date: 使用当前日期作为新问题的开始日期
  951. button_edit_section: 编辑此区域
  952. setting_repositories_encodings: 附件和版本库编码
  953. description_all_columns: 所有列
  954. button_export: 导出
  955. label_export_options: "%{export_format} 导出选项"
  956. error_attachment_too_big: 该文件无法上传。超过文件大小限制 (%{max_size})
  957. notice_failed_to_save_time_entries: "无法保存下列所选取的 %{total} 个项目中的 %{count} 工时: %{ids}。"
  958. label_x_issues:
  959. zero: 0 问题
  960. one: 1 问题
  961. other: "%{count} 问题"
  962. label_repository_new: 新建版本库
  963. field_repository_is_default: 主版本库
  964. label_copy_attachments: 复制附件
  965. label_item_position: "%{position}/%{count}"
  966. label_completed_versions: 已完成的版本
  967. text_project_identifier_info: 仅小写字母(a-z)、数字、破折号(-)和下划线(_)可以使用。<br />一旦保存,标识无法修改。
  968. field_multiple: 多重取值
  969. setting_commit_cross_project_ref: 允许引用/修复所有其他项目的问题
  970. text_issue_conflict_resolution_add_notes: 添加说明并取消我的其他变更处理。
  971. text_issue_conflict_resolution_overwrite: 直接套用我的变更 (先前的说明将被保留,但是某些变更内容可能会被覆盖)
  972. notice_issue_update_conflict: 当您正在编辑这个问题的时候,它已经被其他人抢先一步更新过了。
  973. text_issue_conflict_resolution_cancel: 取消我所有的变更并重新刷新显示 %{link} 。
  974. permission_manage_related_issues: 相关问题管理
  975. field_auth_source_ldap_filter: LDAP 过滤器
  976. label_search_for_watchers: 通过查找方式添加关注者
  977. notice_account_deleted: 您的账号已被永久删除(账号已无法恢复)。
  978. setting_unsubscribe: 允许用户退订
  979. button_delete_my_account: 删除我的账号
  980. text_account_destroy_confirmation: |-
  981. 确定继续处理?
  982. 您的账号一旦删除,将无法再次激活使用。
  983. error_session_expired: 您的会话已过期。请重新登陆。
  984. text_session_expiration_settings: "警告: 更改这些设置将会使包括你在内的当前会话失效。"
  985. setting_session_lifetime: 会话最大有效时间
  986. setting_session_timeout: 会话闲置超时
  987. label_session_expiration: 会话过期
  988. permission_close_project: 关闭/重开项目
  989. button_close: 关闭
  990. button_reopen: 重开
  991. project_status_active: 已激活
  992. project_status_closed: 已关闭
  993. project_status_archived: 已存档
  994. text_project_closed: 当前项目已被关闭。当前项目只读。
  995. notice_user_successful_create: 用户 %{id} 已创建。
  996. field_core_fields: 标准字段
  997. field_timeout: 超时 (秒)
  998. setting_thumbnails_enabled: 显示附件略缩图
  999. setting_thumbnails_size: 略缩图尺寸 (像素)
  1000. label_status_transitions: 状态转换
  1001. label_fields_permissions: 字段权限
  1002. label_readonly: 只读
  1003. label_required: 必填
  1004. text_repository_identifier_info: 仅小写字母(a-z)、数字、破折号(-)和下划线(_)可以使用。<br />一旦保存,标识无法修改。
  1005. field_board_parent: 父论坛
  1006. label_attribute_of_project: 项目 %{name}
  1007. label_attribute_of_author: 作者 %{name}
  1008. label_attribute_of_assigned_to: 指派给 %{name}
  1009. label_attribute_of_fixed_version: 目标版本 %{name}
  1010. label_copy_subtasks: 复制子任务
  1011. label_copied_to: 复制到
  1012. label_copied_from: 复制于
  1013. label_any_issues_in_project: 项目内任意问题
  1014. label_any_issues_not_in_project: 项目外任意问题
  1015. field_private_notes: 私有注解
  1016. permission_view_private_notes: 查看私有注解
  1017. permission_set_notes_private: 设置为私有注解
  1018. label_no_issues_in_project: 项目内无相关问题
  1019. label_any: 全部
  1020. label_last_n_weeks: 上 %{count} 周前
  1021. setting_cross_project_subtasks: 支持跨项目子任务
  1022. label_cross_project_descendants: 与子项目共享
  1023. label_cross_project_tree: 与项目树共享
  1024. label_cross_project_hierarchy: 与项目继承层次共享
  1025. label_cross_project_system: 与所有项目共享
  1026. button_hide: 隐藏
  1027. setting_non_working_week_days: 非工作日
  1028. label_in_the_next_days: 在未来几天之内
  1029. label_in_the_past_days: 在过去几天之内
  1030. label_attribute_of_user: 用户是 %{name}
  1031. text_turning_multiple_off: 如果您停用多重值设定,重复的值将被移除,以使每个项目仅保留一个值
  1032. label_attribute_of_issue: 问题是 %{name}
  1033. permission_add_documents: 添加文档
  1034. permission_edit_documents: 编辑文档
  1035. permission_delete_documents: 删除文档
  1036. label_gantt_progress_line: 进度线
  1037. setting_jsonp_enabled: 启用JSONP支持
  1038. field_inherit_members: 继承父项目成员
  1039. field_closed_on: 结束日期
  1040. field_generate_password: 生成密码
  1041. setting_default_projects_tracker_ids: 新建项目默认跟踪标签
  1042. label_total_time: 合计
  1043. notice_account_not_activated_yet: 您的账号尚未激活. 若您要重新收取激活邮件, 请<a href="%{url}">单击此链接</a>.
  1044. notice_account_locked: 您的帐号已被锁定
  1045. label_hidden: 隐藏
  1046. label_visibility_private: 仅对我可见
  1047. label_visibility_roles: 仅对选取角色可见
  1048. label_visibility_public: 对任何人可见
  1049. field_must_change_passwd: 下次登录时必须修改密码
  1050. notice_new_password_must_be_different: 新密码必须和旧密码不同
  1051. setting_mail_handler_excluded_filenames: 移除符合下列名称的附件
  1052. text_convert_available: 可使用 ImageMagick 转换图片格式 (可选)
  1053. label_link: 连接
  1054. label_only: 仅于
  1055. label_drop_down_list: 下拉列表
  1056. label_checkboxes: 复选框
  1057. label_link_values_to: 链接数值至此网址
  1058. setting_force_default_language_for_anonymous: 强制匿名用户使用默认语言
  1059. setting_force_default_language_for_loggedin: 强制已登录用户使用默认语言
  1060. label_custom_field_select_type: 请选择需要关联自定义属性的类型
  1061. label_issue_assigned_to_updated: 指派人已更新
  1062. label_check_for_updates: 检查更新
  1063. label_latest_compatible_version: 最新兼容版本
  1064. label_unknown_plugin: 未知插件
  1065. label_radio_buttons: 单选按钮
  1066. label_group_anonymous: 匿名用户
  1067. label_group_non_member: 非成员用户
  1068. label_add_projects: 加入项目
  1069. field_default_status: 默认状态
  1070. text_subversion_repository_note: '示例: file:///, http://, https://, svn://, svn+[tunnelscheme]://'
  1071. field_users_visibility: 用户可见度
  1072. label_users_visibility_all: 所有活动用户
  1073. label_users_visibility_members_of_visible_projects: 可见项目中的成员
  1074. label_edit_attachments: 编辑附件
  1075. setting_link_copied_issue: 复制时关联问题
  1076. label_link_copied_issue: 关联已复制的问题
  1077. label_ask: 询问
  1078. label_search_attachments_yes: 搜索附件的文件名和描述
  1079. label_search_attachments_no: 不搜索附件
  1080. label_search_attachments_only: 只搜索附件
  1081. label_search_open_issues_only: 只搜索进行中的问题
  1082. field_address: 邮件地址
  1083. setting_max_additional_emails: 其它电子邮件地址上限
  1084. label_email_address_plural: 电子邮件
  1085. label_email_address_add: 增加电子邮件地址
  1086. label_enable_notifications: 启用通知
  1087. label_disable_notifications: 禁用通知
  1088. setting_search_results_per_page: 每一页的搜索结果数
  1089. label_blank_value: 空白
  1090. permission_copy_issues: 复制问题
  1091. error_password_expired: 您的密码已经过期或是管理员要求您修改密码.
  1092. field_time_entries_visibility: 工时记录可见度
  1093. setting_password_max_age: 密码有效期
  1094. label_parent_task_attributes: 父问题属性
  1095. label_parent_task_attributes_derived: 从子任务计算导出
  1096. label_parent_task_attributes_independent: 与子任务无关
  1097. label_time_entries_visibility_all: 所有工时记录
  1098. label_time_entries_visibility_own: 用户自己创建的工时记录
  1099. label_member_management: 成员管理
  1100. label_member_management_all_roles: 所有角色
  1101. label_member_management_selected_roles_only: 只限下列角色
  1102. label_password_required: 确认您的密码后继续
  1103. label_total_spent_time: 总体耗时
  1104. notice_import_finished: 成功导入 %{count} 个项目
  1105. notice_import_finished_with_errors: 有 %{count} 个项目无法导入(共计 %{total} 个)
  1106. error_invalid_file_encoding: 这不是一个有效的 %{encoding} 编码文件
  1107. error_invalid_csv_file_or_settings: 这不是一个CSV文件或者不符合以下设置 (%{value})
  1108. error_can_not_read_import_file: 读取导入文件时发生错误
  1109. permission_import_issues: 问题导入
  1110. label_import_issues: 问题导入
  1111. label_select_file_to_import: 选择要导入的文件
  1112. label_fields_separator: 字段分隔符
  1113. label_fields_wrapper: 字段包装识别符
  1114. label_encoding: 编码
  1115. label_comma_char: 逗号(,)
  1116. label_semi_colon_char: 分号(;)
  1117. label_quote_char: 单引号(')
  1118. label_double_quote_char: 双引号(")
  1119. label_fields_mapping: 字段映射
  1120. label_file_content_preview: 文件内容预览
  1121. label_create_missing_values: 创建缺失的数值
  1122. button_import: 导入
  1123. field_total_estimated_hours: 预估工时统计
  1124. label_api: API
  1125. label_total_plural: 总计
  1126. label_assigned_issues: 被指派的问题
  1127. label_field_format_enumeration: 键/值 清单
  1128. label_f_hour_short: '%{value} 小时'
  1129. field_default_version: 默认版本
  1130. error_attachment_extension_not_allowed: 不允许上传此类型 %{extension} 附件
  1131. setting_attachment_extensions_allowed: 允许上传的附件类型
  1132. setting_attachment_extensions_denied: 禁止上传的附件类型
  1133. label_any_open_issues: 任意进行中的问题
  1134. label_no_open_issues: 任意已关闭的问题
  1135. label_default_values_for_new_users: 新用户默认值
  1136. error_ldap_bind_credentials: 无效的LDAP账号或密码
  1137. setting_sys_api_key: 版本库管理网页服务 API 密钥
  1138. setting_lost_password: 忘记密码
  1139. mail_subject_security_notification: 安全通知
  1140. mail_body_security_notification_change: "%{field} 已变更."
  1141. mail_body_security_notification_change_to: "%{field} 已变更为 %{value}."
  1142. mail_body_security_notification_add: "%{field} %{value} 已增加."
  1143. mail_body_security_notification_remove: "%{field} %{value} 已移除."
  1144. mail_body_security_notification_notify_enabled: 邮件地址 %{value} 开始接收通知.
  1145. mail_body_security_notification_notify_disabled: 邮件地址 %{value} 不再接收通知.
  1146. mail_body_settings_updated: "下列设置已更新:"
  1147. field_remote_ip: IP 地址
  1148. label_wiki_page_new: 新建Wiki页面
  1149. label_relations: 相关的问题
  1150. button_filter: 设置为过滤条件
  1151. mail_body_password_updated: 您的密码已经变更。
  1152. label_no_preview: 没有可以显示的预览内容
  1153. error_no_tracker_allowed_for_new_issue_in_project: 项目没有任何跟踪标签,您不能创建一个问题
  1154. label_tracker_all: 所有跟踪标签
  1155. label_new_project_issue_tab_enabled: 显示“新建问题”标签
  1156. setting_new_item_menu_tab: 建立新对象条目的项目菜单栏目
  1157. label_new_object_tab_enabled: 显示 "+" 为下拉列表
  1158. error_no_projects_with_tracker_allowed_for_new_issue: 当前项目中不包含对应的跟踪类型,不能创建该类型的工作项。
  1159. field_textarea_font: 用于文本区域的字体
  1160. label_font_default: 默认字体
  1161. label_font_monospace: 等宽字体
  1162. label_font_proportional: 比例字体
  1163. setting_timespan_format: 时间格式设置
  1164. label_table_of_contents: 目录
  1165. setting_commit_logs_formatting: 在提交日志消息时,应用文本格式
  1166. setting_mail_handler_enable_regex: 启用正则表达式
  1167. error_move_of_child_not_possible: '子任务 %{child} 不能移动到新项目:%{errors}'
  1168. error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: 已用耗时不能重新分配到即将被删除的任务里。
  1169. setting_timelog_required_fields: 工时登记必填字段
  1170. label_attribute_of_object: '%{object_name} 的 %{name} 属性'
  1171. label_user_mail_option_only_assigned: 只发送我关注或指派给我的相关信息
  1172. label_user_mail_option_only_owner: 只发送我关注或我创建的相关信息
  1173. warning_fields_cleared_on_bulk_edit: 修改将导致所选内容的一个或多个字段值被自动删除。
  1174. field_updated_by: 更新人
  1175. field_last_updated_by: 最近更新人
  1176. field_full_width_layout: 全宽布局
  1177. label_last_notes: 最近批注
  1178. field_digest: 校验和
  1179. field_default_assigned_to: 默认指派给
  1180. setting_show_custom_fields_on_registration: 注册时显示自定义字段
  1181. permission_view_news: 查看新闻
  1182. label_no_preview_alternative_html: 无法预览。请使用文件 %{link} 查阅。
  1183. label_no_preview_download: 下载
  1184. setting_close_duplicate_issues: 自动关闭重复的问题
  1185. error_exceeds_maximum_hours_per_day: 当日内无法计入超过 %{max_hours} 的工时 (%{logged_hours} 工时已被记录)
  1186. setting_time_entry_list_defaults: 默认日志一览
  1187. setting_timelog_accept_0_hours: 允许计入0小时工时
  1188. setting_timelog_max_hours_per_day: 每用户每天最大可计入工时上限
  1189. label_x_revisions: "%{count} 修订"
  1190. error_can_not_delete_auth_source: 此认证模式正在使用,不能删除。
  1191. button_actions: 行为
  1192. mail_body_lost_password_validity: 请注意您只能使用此链接更改一次密码。
  1193. text_login_required_html: 当不需要认证时,公开项目和它们的内容将会在网络上公开访问。你可以<a href="%{anonymous_role_path}">编辑合适的权限</a>。
  1194. label_login_required_yes: '是'
  1195. label_login_required_no: 否,允许任何人访问公开项目
  1196. text_project_is_public_non_member: 所有已登录的用户都可以访问公共项目和内容。
  1197. text_project_is_public_anonymous: 公共项目及其内容将在网络上公开。
  1198. label_version_and_files: 版本 (%{count}) 文件
  1199. label_ldap: LDAP
  1200. label_ldaps_verify_none: LDAPS (无证书检查)
  1201. label_ldaps_verify_peer: LDAPS
  1202. label_ldaps_warning: 建议使用带有证书检查的加密LDAPS连接,以防止在身份验证过程中的任何篡改伪造。
  1203. label_nothing_to_preview: 无预览
  1204. error_token_expired: 此密码恢复链接已过期,请再试一次。
  1205. error_spent_on_future_date: 无法记录为将来的工时。
  1206. setting_timelog_accept_future_dates: 接受将来工时。
  1207. label_delete_link_to_subtask: 删除关联
  1208. error_not_allowed_to_log_time_for_other_users: 不允许为其他用户记录时间
  1209. permission_log_time_for_other_users: 记录其他用户的工时
  1210. label_tomorrow: 明天
  1211. label_next_week: 下周
  1212. label_next_month: 下月
  1213. text_role_no_workflow: 没有为此角色定义工作流程
  1214. text_status_no_workflow: 在工作流程中没有跟踪程序使用此状态
  1215. setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails
  1216. setting_show_status_changes_in_mail_subject: 邮件通知的标题中显示更改状态
  1217. label_inherited_from_parent_project: 继承自父项目
  1218. label_inherited_from_group: 继承自 %{name} 组
  1219. label_trackers_description: 工作描述
  1220. label_open_trackers_description: 查看全部跟踪标签描述
  1221. label_preferred_body_part_text: Text
  1222. label_preferred_body_part_html: HTML (实验功能)
  1223. field_parent_issue_subject: 父任务主题
  1224. permission_edit_own_issues: 更新自己的问题
  1225. text_select_apply_tracker: 选择跟踪标签
  1226. label_updated_issues: 更新的问题
  1227. text_avatar_server_config_html: 当前的Gravatar头像服务器是 <a href="%{url}">%{url}</a> 。您可以在 config/configuration.yml 配置它。
  1228. setting_gantt_months_limit: 甘特图上显示的最大月数
  1229. permission_import_time_entries: 导入工时条目
  1230. label_import_notifications: 在导入期间发送电子邮件通知
  1231. text_gs_available: ImageMagick PDF 支持 (可选)
  1232. field_recently_used_projects: 跳转框中最近使用的项目数量
  1233. label_optgroup_bookmarks: 书签
  1234. label_optgroup_others: 其他项目
  1235. label_optgroup_recents: 最近使用
  1236. button_project_bookmark: 添加书签
  1237. button_project_bookmark_delete: 移除书签
  1238. field_history_default_tab: 问题的历史默认标签
  1239. label_issue_history_properties: 更改属性
  1240. label_issue_history_notes: 说明
  1241. label_last_tab_visited: 最近访问标签
  1242. field_unique_id: 唯一ID
  1243. text_no_subject: 无主题
  1244. setting_password_required_char_classes: 密码需要这些特征
  1245. label_password_char_class_uppercase: 大写字母
  1246. label_password_char_class_lowercase: 小写字母
  1247. label_password_char_class_digits: 数字
  1248. label_password_char_class_special_chars: 特殊字符
  1249. text_characters_must_contain: 必须包含字符 %{character_classes}。
  1250. label_starts_with: 开始于
  1251. label_ends_with: 结束于
  1252. label_issue_fixed_version_updated: 更新目标版本
  1253. setting_project_list_defaults: 项目列表默认值
  1254. label_display_type: 显示结果到
  1255. label_display_type_list: 列表
  1256. label_display_type_board: 面板
  1257. label_my_bookmarks: 我的书签
  1258. label_import_time_entries: 导入工时条目
  1259. field_toolbar_language_options: 代码工具栏语言突出显示
  1260. label_user_mail_notify_about_high_priority_issues_html: 请通知我优先级高于<em>%{prio}</em>的问题
  1261. label_assign_to_me: 指派给我
  1262. notice_issue_not_closable_by_open_tasks: 此问题无法被关闭,因为它至少还有一个尚在打开的子任务。
  1263. notice_issue_not_closable_by_blocking_issue: 此问题无法被关闭,因为它被至少一个尚在打开的问题所阻挡。
  1264. notice_issue_not_reopenable_by_closed_parent_issue: 此问题無法被重开,因为它的父任务已关闭。
  1265. error_bulk_download_size_too_big: 这些附件无法被批量下载,因为其附件大小总计超过允许的最大值 (%{max_size})
  1266. setting_bulk_download_max_size: 批量下载附件大小总计大小限制
  1267. label_download_all_attachments: 下载所有附件
  1268. error_attachments_too_many: 该文件无法上传,因为超过同时上传附件数量的限制 (%{max_number_of_files})
  1269. setting_email_domains_allowed: 允许的邮件网域
  1270. setting_email_domains_denied: 禁止的邮件网域
  1271. field_passwd_changed_on: 密码上次变更于
  1272. label_relations_mapping: 关联对应
  1273. label_import_users: 导入用戶
  1274. label_days_to_html: "%{days} 天,最多至 %{date}"
  1275. setting_twofa: 双因素验证
  1276. label_optional: 选用项
  1277. label_required_lower: 必要項
  1278. button_disable: 关闭
  1279. twofa__totp__name: 验证器应用程序
  1280. twofa__totp__text_pairing_info_html: 扫描这个二维码或将纯文本键输入至 TOTP 应用程序
  1281. (e.g. <a href="https://support.google.com/accounts/answer/1066447">Google
  1282. Authenticator</a>, <a href="https://authy.com/download/">Authy</a>, <a href="https://guide.duo.com/third-party-accounts">Duo
  1283. Mobile</a>) 并将其显示的代码输入至下面的字段中, 以启用双因素验证。
  1284. twofa__totp__label_plain_text_key: 纯文本键
  1285. twofa__totp__label_activate: 啟用验证器应用程序
  1286. twofa_currently_active: '当前使用中: %{twofa_scheme_name}'
  1287. twofa_not_active: 尚未啟用
  1288. twofa_label_code: 代码
  1289. twofa_hint_disabled_html: 设定为 <strong>%{label}</strong> 将会停用并解除所有用户已配对之双因素验证装置。
  1290. twofa_hint_required_html: 设定为 <strong>%{label}</strong> 将会要求所有用户于下次登录时, 设置双因素验证。
  1291. twofa_label_setup: 啟用双因素验证
  1292. twofa_label_deactivation_confirmation: 关闭双因素验证
  1293. twofa_notice_select: '请选择您想要使用的双因素配置方式:'
  1294. twofa_warning_require: 管理员要求您啟用双因素验证。
  1295. twofa_activated: 双因素验证已啟用成功。建议您为自己的帐号 <a data-method="post" href="%{bc_path}">生成备用代码</a>。
  1296. twofa_deactivated: 双因素验证已关闭。
  1297. twofa_mail_body_security_notification_paired: 雙因素驗證已使用 %{field} 開啟成功。
  1298. twofa_mail_body_security_notification_unpaired: 双因素验证已关闭。
  1299. twofa_mail_body_backup_codes_generated: 新双因素验证的备用代码已生成。
  1300. twofa_mail_body_backup_code_used: 有个双因素验证的备用代码被使用。
  1301. twofa_invalid_code: 代码是无效的或过期的。
  1302. twofa_label_enter_otp: 请输入您的双因素验证代码。
  1303. twofa_too_many_tries: 重试次数过多。
  1304. twofa_resend_code: 重送代码
  1305. twofa_code_sent: 有个验证代码已经传送给您。
  1306. twofa_generate_backup_codes: 生成备用代码
  1307. twofa_text_generate_backup_codes_confirmation: 这会将所有现存的备用代码设为无效,并产生新的备用代码。您要继续吗?
  1308. twofa_notice_backup_codes_generated: 您的备用代码已生成。
  1309. twofa_warning_backup_codes_generated_invalidated: 新的备用代码已生成。您现存的备用代码,从 %{time} 起已经失效。
  1310. twofa_label_backup_codes: 双因素验证备用代码
  1311. twofa_text_backup_codes_hint: 当您无法存取双因素配置方式取得单次密码时,使用这些替代备用代码。每个代码仅能被使用一次。建议您将备用代码打印出来,并存放于安全的地点。
  1312. twofa_text_backup_codes_created_at: 备用代码生成于 %{datetime}.
  1313. twofa_backup_codes_already_shown: 这些备用代码不会再次出现, 再次需要时请重新 <a data-method="post"
  1314. href="%{bc_path}">生成新的备用代码</a>。
  1315. error_can_not_execute_macro_html: 执行 <strong>%{name}</strong> 宏时,发生错误 (%{error})
  1316. error_macro_does_not_accept_block: 此宏不接受文本块
  1317. error_childpages_macro_no_argument: 缺少引数, 此宏只能从 wiki 页面中被呼叫
  1318. error_circular_inclusion: 侦测到循环引用内容
  1319. error_page_not_found: 找不到页面
  1320. error_filename_required: 必须填入文件名称
  1321. error_invalid_size_parameter: 无效的尺寸大小参数
  1322. error_attachment_not_found: 找不到文件 %{name}
  1323. permission_delete_project: 删除项目
  1324. field_twofa_scheme: 双因素验证配置
  1325. text_user_destroy_confirmation: 您是否确定要删除这个用户并且移除该用户所有的参照? 这是无法被复原的动作。通常锁定一个用户是比较好的方案,而非将用户删除。若要确认,请在下面输入用户的帐号名称 (%{login})。
  1326. text_project_destroy_enter_identifier: 若要确认, 请在下面输入项目的标识 (%{identifier})。
  1327. button_add_subtask: 新建子任务
  1328. notice_invalid_watcher: 'Invalid watcher: User will not receive any notifications
  1329. because it does not have access to view this object.'
  1330. button_fetch_changesets: Fetch commits
  1331. permission_view_message_watchers: View message watchers list
  1332. permission_add_message_watchers: Add message watchers
  1333. permission_delete_message_watchers: Delete message watchers
  1334. label_message_watchers: Watchers
  1335. button_copy_link: Copy link
  1336. error_invalid_authenticity_token: Invalid form authenticity token.
  1337. error_query_statement_invalid: An error occurred while executing the query and has
  1338. been logged. Please report this error to your Redmine administrator.
  1339. permission_view_wiki_page_watchers: View wiki page watchers list
  1340. permission_add_wiki_page_watchers: Add wiki page watchers
  1341. permission_delete_wiki_page_watchers: Delete wiki page watchers
  1342. label_wiki_page_watchers: Watchers
  1343. label_attachment_description: File description
  1344. error_no_data_in_file: The file does not contain any data
  1345. field_twofa_required: Require two factor authentication
  1346. twofa_hint_optional_html: Setting <strong>%{label}</strong> will let users set up
  1347. two-factor authentication at will, unless it is required by one of their groups.
  1348. twofa_text_group_required: This setting is only effective when the global two factor
  1349. authentication setting is set to 'optional'. Currently, two factor authentication
  1350. is required for all users.
  1351. twofa_text_group_disabled: This setting is only effective when the global two factor
  1352. authentication setting is set to 'optional'. Currently, two factor authentication
  1353. is disabled.
  1354. field_default_issue_query: Default issue query
  1355. label_default_queries:
  1356. for_all_projects: For all projects
  1357. for_current_project: For current project
  1358. for_all_users: For all users
  1359. text_allowed_queries_to_select: Public (to any users) queries only selectable
  1360. text_all_migrations_have_been_run: All database migrations have been run
  1361. button_save_object: Save %{object_name}
  1362. button_edit_object: Edit %{object_name}
  1363. button_delete_object: Delete %{object_name}
  1364. text_setting_config_change: You can configure the behaviour in config/configuration.yml.
  1365. Please restart the application after editing it.
  1366. label_bulk_edit: Bulk edit
  1367. button_create_and_follow: Create and follow
  1368. label_subtask: Subtask
  1369. label_default_query: Default query
  1370. field_default_project_query: Default project query
  1371. label_required_administrators: required for administrators
  1372. twofa_hint_required_administrators_html: Setting <strong>%{label}</strong> behaves
  1373. like optional, but will require all users with administration rights to set up two-factor
  1374. authentication at their next login.
  1375. label_auto_watch_on: Auto watch
  1376. label_auto_watch_on_issue_contributed_to: Issues I contributed to
  1377. text_project_close_confirmation: Are you sure you want to close the '%{value}' project
  1378. to make it read-only?
  1379. text_project_reopen_confirmation: Are you sure you want to reopen the '%{value}' project?
  1380. text_project_archive_confirmation: Are you sure you want to archive the '%{value}'
  1381. project?
  1382. mail_destroy_project_failed: Project %{value} could not be deleted.
  1383. mail_destroy_project_successful: Project %{value} was deleted successfully.
  1384. mail_destroy_project_with_subprojects_successful: Project %{value} and its subprojects
  1385. were deleted successfully.
  1386. project_status_scheduled_for_deletion: scheduled for deletion
  1387. text_projects_bulk_destroy_confirmation: Are you sure you want to delete the selected
  1388. projects and related data?
  1389. text_projects_bulk_destroy_head: |
  1390. You are about to permanently delete the following projects, including possible subprojects and any related data.
  1391. Please review the information below and confirm that this is indeed what you want to do.
  1392. This action cannot be undone.
  1393. text_projects_bulk_destroy_confirm: To confirm, please enter "%{yes}" in the box below.
  1394. text_subprojects_bulk_destroy: 'including its subproject(s): %{value}'
  1395. field_current_password: Current password