zh-cn.php 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. <?php
  2. /**
  3. * The bug module zh-cn file of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Chunsheng Wang <chunsheng@cnezsoft.com>
  8. * @package bug
  9. * @version $Id: zh-cn.php 4536 2013-03-02 13:39:37Z wwccss $
  10. * @link https://www.zentao.net
  11. */
  12. /* 字段列表。*/
  13. $lang->bug->common = 'Bug';
  14. $lang->bug->id = 'Bug编号';
  15. $lang->bug->product = '所属' . $lang->productCommon;
  16. $lang->bug->branch = '平台/分支';
  17. $lang->bug->module = '所属模块';
  18. $lang->bug->project = '所属' . $lang->projectCommon;
  19. $lang->bug->execution = '所属' . $lang->execution->common;
  20. $lang->bug->kanban = '所属看板';
  21. $lang->bug->storyVersion = "{$lang->SRCommon}版本";
  22. $lang->bug->color = '标题颜色';
  23. $lang->bug->title = 'Bug标题';
  24. $lang->bug->severity = '严重程度';
  25. $lang->bug->pri = '优先级';
  26. $lang->bug->type = 'Bug类型';
  27. $lang->bug->os = '操作系统';
  28. $lang->bug->browser = '浏览器';
  29. $lang->bug->hardware = '硬件';
  30. $lang->bug->result = '结果';
  31. $lang->bug->repo = '所属版本库';
  32. $lang->bug->mr = '合并请求';
  33. $lang->bug->entry = '代码路径';
  34. $lang->bug->lines = '代码行';
  35. $lang->bug->v1 = '版本1';
  36. $lang->bug->v2 = '版本2';
  37. $lang->bug->issueKey = 'Sonarqube问题键值';
  38. $lang->bug->repoType = '版本库类型';
  39. $lang->bug->steps = '重现步骤';
  40. $lang->bug->status = 'Bug状态';
  41. $lang->bug->subStatus = '子状态';
  42. $lang->bug->activatedCount = '激活次数';
  43. $lang->bug->activatedDate = '激活时间';
  44. $lang->bug->confirmed = '是否确认';
  45. $lang->bug->toTask = '转任务';
  46. $lang->bug->toStory = "转{$lang->SRCommon}";
  47. $lang->bug->feedbackBy = '反馈者';
  48. $lang->bug->notifyEmail = '通知邮箱';
  49. $lang->bug->mailto = '抄送给';
  50. $lang->bug->openedBy = '由谁创建';
  51. $lang->bug->openedDate = '创建日期';
  52. $lang->bug->openedBuild = '影响版本';
  53. $lang->bug->assignedTo = '指派给';
  54. $lang->bug->assignedToMe = '指派给我';
  55. $lang->bug->assignedDate = '指派日期';
  56. $lang->bug->resolvedBy = '解决者';
  57. $lang->bug->resolution = '解决方案';
  58. $lang->bug->resolvedBuild = '解决版本';
  59. $lang->bug->resolvedDate = '解决日期';
  60. $lang->bug->deadline = '截止日期';
  61. $lang->bug->plan = '所属计划';
  62. $lang->bug->closedBy = '由谁关闭';
  63. $lang->bug->closedDate = '关闭日期';
  64. $lang->bug->duplicateBug = '重复Bug';
  65. $lang->bug->lastEditedBy = '最后修改者';
  66. $lang->bug->caseVersion = '用例版本';
  67. $lang->bug->testtask = '测试单';
  68. $lang->bug->files = '附件';
  69. $lang->bug->keywords = '关键词';
  70. $lang->bug->lastEditedDate = '修改日期';
  71. $lang->bug->fromCase = '来源用例';
  72. $lang->bug->toCase = '生成用例';
  73. $lang->bug->colorTag = '颜色标签';
  74. $lang->bug->fixedRate = '修复率';
  75. $lang->bug->noticefeedbackBy = '通知反馈者';
  76. $lang->bug->selectProjects = '选择' . $lang->projectCommon;
  77. $lang->bug->nextStep = '下一步';
  78. $lang->bug->noProject = "还没有选择{$lang->projectCommon}!";
  79. $lang->bug->noExecution = "还没有选择{$lang->execution->common}!";
  80. $lang->bug->story = "相关需求";
  81. $lang->bug->task = '相关任务';
  82. $lang->bug->relatedBug = '相关Bug';
  83. $lang->bug->case = '相关用例';
  84. $lang->bug->linkMR = '相关合并请求';
  85. $lang->bug->linkPR = '相关推送请求';
  86. $lang->bug->linkCommit = '相关代码版本';
  87. $lang->bug->productplan = $lang->bug->plan;
  88. $lang->bug->codeBranch = '代码分支';
  89. $lang->bug->unlinkBranch = '解除关联代码分支';
  90. $lang->bug->branchName = '分支名称';
  91. $lang->bug->branchFrom = '创建自';
  92. $lang->bug->codeRepo = '仓库名称';
  93. $lang->bug->abbr = new stdclass();
  94. $lang->bug->abbr->module = '模块';
  95. $lang->bug->abbr->severity = '级别';
  96. $lang->bug->abbr->status = '状态';
  97. $lang->bug->abbr->activatedCount = '激活次数';
  98. $lang->bug->abbr->confirmed = '确认';
  99. $lang->bug->abbr->openedBy = '创建者';
  100. $lang->bug->abbr->openedDate = '创建日期';
  101. $lang->bug->abbr->assignedTo = '指派给';
  102. $lang->bug->abbr->resolvedBy = '解决';
  103. $lang->bug->abbr->resolution = '方案';
  104. $lang->bug->abbr->resolvedDate = '解决日期';
  105. $lang->bug->abbr->deadline = '截止';
  106. $lang->bug->abbr->lastEditedBy = '修改者';
  107. $lang->bug->abbr->lastEditedDate = '修改日期';
  108. $lang->bug->abbr->assignToMe = '指派给我';
  109. $lang->bug->abbr->openedByMe = '由我创建';
  110. $lang->bug->abbr->resolvedByMe = '由我解决';
  111. /* 方法列表。*/
  112. $lang->bug->index = '首页';
  113. $lang->bug->browse = 'Bug列表';
  114. $lang->bug->create = '提Bug';
  115. $lang->bug->batchCreate = '批量提Bug';
  116. $lang->bug->createCase = '创建用例';
  117. $lang->bug->copy = '复制Bug';
  118. $lang->bug->edit = '编辑Bug';
  119. $lang->bug->batchEdit = '批量编辑';
  120. $lang->bug->view = 'Bug详情';
  121. $lang->bug->delete = '删除';
  122. $lang->bug->deleteAction = '删除Bug';
  123. $lang->bug->confirm = '确认';
  124. $lang->bug->confirmAction = '确认Bug';
  125. $lang->bug->batchConfirm = '批量确认';
  126. $lang->bug->assignTo = '指派';
  127. $lang->bug->assignAction = '指派Bug';
  128. $lang->bug->batchAssignTo = '批量指派';
  129. $lang->bug->resolve = '解决';
  130. $lang->bug->resolveAction = '解决Bug';
  131. $lang->bug->batchResolve = '批量解决';
  132. $lang->bug->createAB = '新增';
  133. $lang->bug->close = '关闭';
  134. $lang->bug->closeAction = '关闭Bug';
  135. $lang->bug->batchClose = '批量关闭';
  136. $lang->bug->activate = '激活';
  137. $lang->bug->activateAction = '激活Bug';
  138. $lang->bug->batchActivate = '批量激活';
  139. $lang->bug->reportChart = '报表统计';
  140. $lang->bug->reportAction = 'Bug报表统计';
  141. $lang->bug->export = '导出数据';
  142. $lang->bug->exportAction = '导出Bug';
  143. $lang->bug->confirmStoryChange = "确认{$lang->SRCommon}变动";
  144. $lang->bug->search = '搜索';
  145. $lang->bug->batchChangeModule = '批量修改模块';
  146. $lang->bug->batchChangeBranch = '批量修改分支';
  147. $lang->bug->batchChangePlan = '批量修改计划';
  148. $lang->bug->linkBugs = '关联相关Bug';
  149. $lang->bug->unlinkBug = '移除相关Bug';
  150. /* 查询条件列表。*/
  151. $lang->bug->assignToMe = '指派给我';
  152. $lang->bug->openedByMe = '由我创建';
  153. $lang->bug->resolvedByMe = '由我解决';
  154. $lang->bug->closedByMe = '由我关闭';
  155. $lang->bug->assignedByMe = '由我指派';
  156. $lang->bug->assignToNull = '未指派';
  157. $lang->bug->unResolved = '未解决';
  158. $lang->bug->toClosed = '待关闭';
  159. $lang->bug->unclosed = '未关闭';
  160. $lang->bug->unconfirmed = '未确认';
  161. $lang->bug->longLifeBugs = '久未处理';
  162. $lang->bug->postponedBugs = '被延期';
  163. $lang->bug->overdueBugs = '过期Bug';
  164. $lang->bug->allBugs = '所有';
  165. $lang->bug->byQuery = '搜索';
  166. $lang->bug->needConfirm = "{$lang->SRCommon}变动";
  167. $lang->bug->allProject = '所有' . $lang->projectCommon;
  168. $lang->bug->allProduct = '所有' . $lang->productCommon;
  169. $lang->bug->my = '我的';
  170. $lang->bug->yesterdayResolved = '昨天解决Bug数';
  171. $lang->bug->yesterdayConfirmed = '昨天确认';
  172. $lang->bug->yesterdayClosed = '昨天关闭';
  173. $lang->bug->deleted = '已删除';
  174. $lang->bug->labelConfirmed = '已确认';
  175. $lang->bug->labelPostponed = '被延期';
  176. $lang->bug->changed = '已变动';
  177. $lang->bug->storyChanged = '需求变动';
  178. $lang->bug->ditto = '同上';
  179. /* 页面标签。*/
  180. $lang->bug->lblAssignedTo = '当前指派';
  181. $lang->bug->lblMailto = '抄送给';
  182. $lang->bug->lblLastEdited = '最后修改';
  183. $lang->bug->lblResolved = '由谁解决';
  184. $lang->bug->loadAll = '加载所有';
  185. $lang->bug->createBuild = '创建';
  186. global $config;
  187. /* legend列表。*/
  188. $lang->bug->legendBasicInfo = '基本信息';
  189. $lang->bug->legendAttach = '附件';
  190. $lang->bug->legendPRJExecStoryTask = "{$lang->projectCommon}/{$lang->executionCommon}/{$lang->SRCommon}/任务";
  191. $lang->bug->legendExecStoryTask = "{$lang->projectCommon}/{$lang->SRCommon}/任务";
  192. $lang->bug->lblTypeAndSeverity = '类型/严重程度';
  193. $lang->bug->lblSystemBrowserAndHardware = '系统/浏览器';
  194. $lang->bug->legendSteps = '重现步骤';
  195. $lang->bug->legendComment = '备注';
  196. $lang->bug->legendLife = 'Bug的一生';
  197. $lang->bug->legendMisc = '其他相关';
  198. $lang->bug->legendRelated = '其他信息';
  199. $lang->bug->legendThisWeekCreated = '本周新增';
  200. /* 模板。*/
  201. $lang->bug->tplStep = "<p>[步骤]</p><p></p>";
  202. $lang->bug->tplResult = "<p>[结果]</p><p></p>";
  203. $lang->bug->tplExpect = "<p>[期望]</p><p></p>";
  204. /* 各个字段取值列表。*/
  205. $lang->bug->severityList[0] = '';
  206. $lang->bug->severityList[1] = '1';
  207. $lang->bug->severityList[2] = '2';
  208. $lang->bug->severityList[3] = '3';
  209. $lang->bug->severityList[4] = '4';
  210. $lang->bug->priList[0] = '';
  211. $lang->bug->priList[1] = '1';
  212. $lang->bug->priList[2] = '2';
  213. $lang->bug->priList[3] = '3';
  214. $lang->bug->priList[4] = '4';
  215. $lang->bug->osList[''] = '';
  216. $lang->bug->osList['all'] = '全部';
  217. $lang->bug->osList['windows'] = 'Windows';
  218. $lang->bug->osList['win11'] = 'Windows 11';
  219. $lang->bug->osList['win10'] = 'Windows 10';
  220. $lang->bug->osList['win8'] = 'Windows 8';
  221. $lang->bug->osList['win7'] = 'Windows 7';
  222. $lang->bug->osList['winxp'] = 'Windows XP';
  223. $lang->bug->osList['osx'] = 'Mac OS';
  224. $lang->bug->osList['android'] = 'Android';
  225. $lang->bug->osList['ios'] = 'IOS';
  226. $lang->bug->osList['linux'] = 'Linux';
  227. $lang->bug->osList['ubuntu'] = 'Ubuntu';
  228. $lang->bug->osList['chromeos'] = 'Chrome OS';
  229. $lang->bug->osList['fedora'] = 'Fedora';
  230. $lang->bug->osList['unix'] = 'Unix';
  231. $lang->bug->osList['others'] = '其他';
  232. $lang->bug->browserList[''] = '';
  233. $lang->bug->browserList['all'] = '全部';
  234. $lang->bug->browserList['chrome'] = 'Chrome';
  235. $lang->bug->browserList['edge'] = 'Edge';
  236. $lang->bug->browserList['ie'] = 'IE系列';
  237. $lang->bug->browserList['ie11'] = 'IE11';
  238. $lang->bug->browserList['ie10'] = 'IE10';
  239. $lang->bug->browserList['ie9'] = 'IE9';
  240. $lang->bug->browserList['ie8'] = 'IE8';
  241. $lang->bug->browserList['firefox'] = 'firefox系列';
  242. $lang->bug->browserList['opera'] = 'Opera系列';
  243. $lang->bug->browserList['safari'] = 'safari';
  244. $lang->bug->browserList['360'] = '360浏览器';
  245. $lang->bug->browserList['qq'] = 'QQ浏览器';
  246. $lang->bug->browserList['other'] = '其他';
  247. $lang->bug->typeList[''] = '';
  248. $lang->bug->typeList['codeerror'] = '代码错误';
  249. $lang->bug->typeList['config'] = '配置相关';
  250. $lang->bug->typeList['install'] = '安装部署';
  251. $lang->bug->typeList['security'] = '安全相关';
  252. $lang->bug->typeList['performance'] = '性能问题';
  253. $lang->bug->typeList['standard'] = '标准规范';
  254. $lang->bug->typeList['automation'] = '测试脚本';
  255. $lang->bug->typeList['designdefect'] = '设计缺陷';
  256. $lang->bug->typeList['others'] = '其他';
  257. $lang->bug->statusList[''] = '';
  258. $lang->bug->statusList['active'] = '激活';
  259. $lang->bug->statusList['resolved'] = '已解决';
  260. $lang->bug->statusList['closed'] = '已关闭';
  261. $lang->bug->confirmedList[''] = '';
  262. $lang->bug->confirmedList[1] = '已确认';
  263. $lang->bug->confirmedList[0] = '未确认';
  264. $lang->bug->resolutionList[''] = '';
  265. $lang->bug->resolutionList['bydesign'] = '设计如此';
  266. $lang->bug->resolutionList['duplicate'] = '重复Bug';
  267. $lang->bug->resolutionList['external'] = '外部原因';
  268. $lang->bug->resolutionList['fixed'] = '已解决';
  269. $lang->bug->resolutionList['notrepro'] = '无法重现';
  270. $lang->bug->resolutionList['postponed'] = '延期处理';
  271. $lang->bug->resolutionList['willnotfix'] = "不予解决";
  272. $lang->bug->resolutionList['tostory'] = "转为{$lang->SRCommon}";
  273. /* 统计报表。*/
  274. $lang->bug->report = new stdclass();
  275. $lang->bug->report->common = '报表';
  276. $lang->bug->report->select = '请选择报表类型';
  277. $lang->bug->report->create = '生成报表';
  278. $lang->bug->report->charts['bugsPerExecution'] = $lang->executionCommon . 'Bug数量';
  279. $lang->bug->report->charts['bugsPerBuild'] = '版本Bug数量';
  280. $lang->bug->report->charts['bugsPerModule'] = '模块Bug数量';
  281. $lang->bug->report->charts['openedBugsPerDay'] = '每天新增Bug数';
  282. $lang->bug->report->charts['resolvedBugsPerDay'] = '每天解决Bug数';
  283. $lang->bug->report->charts['closedBugsPerDay'] = '每天关闭的Bug数';
  284. $lang->bug->report->charts['openedBugsPerUser'] = '每人提交的Bug数';
  285. $lang->bug->report->charts['resolvedBugsPerUser'] = '每人解决的Bug数';
  286. $lang->bug->report->charts['closedBugsPerUser'] = '每人关闭的Bug数';
  287. $lang->bug->report->charts['bugsPerSeverity'] = '按Bug严重程度统计';
  288. $lang->bug->report->charts['bugsPerResolution'] = '按Bug解决方案统计';
  289. $lang->bug->report->charts['bugsPerStatus'] = '按Bug状态统计';
  290. $lang->bug->report->charts['bugsPerActivatedCount'] = '按Bug激活次数统计';
  291. $lang->bug->report->charts['bugsPerPri'] = '按Bug优先级统计';
  292. $lang->bug->report->charts['bugsPerType'] = '按Bug类型统计';
  293. $lang->bug->report->charts['bugsPerAssignedTo'] = '按指派给统计';
  294. //$lang->bug->report->charts['bugLiveDays'] = 'Bug处理时间统计';
  295. //$lang->bug->report->charts['bugHistories'] = 'Bug处理步骤统计';
  296. $lang->bug->report->options = new stdclass();
  297. $lang->bug->report->options->graph = new stdclass();
  298. $lang->bug->report->options->type = 'pie';
  299. $lang->bug->report->options->width = 500;
  300. $lang->bug->report->options->height = 140;
  301. $lang->bug->report->bugsPerExecution = new stdclass();
  302. $lang->bug->report->bugsPerBuild = new stdclass();
  303. $lang->bug->report->bugsPerModule = new stdclass();
  304. $lang->bug->report->openedBugsPerDay = new stdclass();
  305. $lang->bug->report->resolvedBugsPerDay = new stdclass();
  306. $lang->bug->report->closedBugsPerDay = new stdclass();
  307. $lang->bug->report->openedBugsPerUser = new stdclass();
  308. $lang->bug->report->resolvedBugsPerUser = new stdclass();
  309. $lang->bug->report->closedBugsPerUser = new stdclass();
  310. $lang->bug->report->bugsPerSeverity = new stdclass();
  311. $lang->bug->report->bugsPerResolution = new stdclass();
  312. $lang->bug->report->bugsPerStatus = new stdclass();
  313. $lang->bug->report->bugsPerActivatedCount = new stdclass();
  314. $lang->bug->report->bugsPerType = new stdclass();
  315. $lang->bug->report->bugsPerPri = new stdclass();
  316. $lang->bug->report->bugsPerAssignedTo = new stdclass();
  317. $lang->bug->report->bugLiveDays = new stdclass();
  318. $lang->bug->report->bugHistories = new stdclass();
  319. $lang->bug->report->bugsPerExecution->graph = new stdclass();
  320. $lang->bug->report->bugsPerBuild->graph = new stdclass();
  321. $lang->bug->report->bugsPerModule->graph = new stdclass();
  322. $lang->bug->report->openedBugsPerDay->graph = new stdclass();
  323. $lang->bug->report->resolvedBugsPerDay->graph = new stdclass();
  324. $lang->bug->report->closedBugsPerDay->graph = new stdclass();
  325. $lang->bug->report->openedBugsPerUser->graph = new stdclass();
  326. $lang->bug->report->resolvedBugsPerUser->graph = new stdclass();
  327. $lang->bug->report->closedBugsPerUser->graph = new stdclass();
  328. $lang->bug->report->bugsPerSeverity->graph = new stdclass();
  329. $lang->bug->report->bugsPerResolution->graph = new stdclass();
  330. $lang->bug->report->bugsPerStatus->graph = new stdclass();
  331. $lang->bug->report->bugsPerActivatedCount->graph = new stdclass();
  332. $lang->bug->report->bugsPerType->graph = new stdclass();
  333. $lang->bug->report->bugsPerPri->graph = new stdclass();
  334. $lang->bug->report->bugsPerAssignedTo->graph = new stdclass();
  335. $lang->bug->report->bugLiveDays->graph = new stdclass();
  336. $lang->bug->report->bugHistories->graph = new stdclass();
  337. $lang->bug->report->bugsPerExecution->graph->xAxisName = $lang->executionCommon;
  338. $lang->bug->report->bugsPerBuild->graph->xAxisName = '版本';
  339. $lang->bug->report->bugsPerModule->graph->xAxisName = '模块';
  340. $lang->bug->report->openedBugsPerDay->type = 'bar';
  341. $lang->bug->report->openedBugsPerDay->graph->xAxisName = '日期';
  342. $lang->bug->report->resolvedBugsPerDay->type = 'bar';
  343. $lang->bug->report->resolvedBugsPerDay->graph->xAxisName = '日期';
  344. $lang->bug->report->closedBugsPerDay->type = 'bar';
  345. $lang->bug->report->closedBugsPerDay->graph->xAxisName = '日期';
  346. $lang->bug->report->openedBugsPerUser->graph->xAxisName = '用户';
  347. $lang->bug->report->resolvedBugsPerUser->graph->xAxisName = '用户';
  348. $lang->bug->report->closedBugsPerUser->graph->xAxisName = '用户';
  349. $lang->bug->report->bugsPerSeverity->graph->xAxisName = '严重程度';
  350. $lang->bug->report->bugsPerResolution->graph->xAxisName = '解决方案';
  351. $lang->bug->report->bugsPerStatus->graph->xAxisName = '状态';
  352. $lang->bug->report->bugsPerActivatedCount->graph->xAxisName = '激活次数';
  353. $lang->bug->report->bugsPerPri->graph->xAxisName = '优先级';
  354. $lang->bug->report->bugsPerType->graph->xAxisName = '类型';
  355. $lang->bug->report->bugsPerAssignedTo->graph->xAxisName = '指派给';
  356. $lang->bug->report->bugLiveDays->graph->xAxisName = '处理时间';
  357. $lang->bug->report->bugHistories->graph->xAxisName = '处理步骤';
  358. /* 操作记录。*/
  359. $lang->bug->action = new stdclass();
  360. $lang->bug->action->resolved = array('main' => '$date, 由 <strong>$actor</strong> 解决,方案为 <strong>$extra</strong> $appendLink。', 'extra' => 'resolutionList');
  361. $lang->bug->action->tostory = array('main' => '$date, 由 <strong>$actor</strong> 转为<strong> ' . $lang->SRCommon . '</strong>,编号为 <strong>$extra</strong>。');
  362. $lang->bug->action->totask = array('main' => '$date, 由 <strong>$actor</strong> 导入为<strong>任务</strong>,编号为 <strong>$extra</strong>。');
  363. $lang->bug->action->converttotask = array('main' => '$date, 由 <strong>$actor</strong> 转为<strong>任务</strong>,编号为 <strong>$extra</strong>。');
  364. $lang->bug->action->linked2plan = array('main' => '$date, 由 <strong>$actor</strong> 关联到计划 <strong>$extra</strong>。');
  365. $lang->bug->action->unlinkedfromplan = array('main' => '$date, 由 <strong>$actor</strong> 从计划 <strong>$extra</strong> 移除。');
  366. $lang->bug->action->linked2build = array('main' => '$date, 由 <strong>$actor</strong> 关联到版本 <strong>$extra</strong>。');
  367. $lang->bug->action->unlinkedfrombuild = array('main' => '$date, 由 <strong>$actor</strong> 从版本 <strong>$extra</strong> 移除。');
  368. $lang->bug->action->unlinkedfromrelease = array('main' => '$date, 由 <strong>$actor</strong> 从发布 <strong>$extra</strong> 移除。');
  369. $lang->bug->action->linked2release = array('main' => '$date, 由 <strong>$actor</strong> 关联到发布 <strong>$extra</strong>。');
  370. $lang->bug->action->linked2revision = array('main' => '$date, 由 <strong>$actor</strong> 关联到代码提交 <strong>$extra</strong>.');
  371. $lang->bug->action->unlinkedfromrevision = array('main' => '$date, 由 <strong>$actor</strong> 取消关联到代码提交 <strong>$extra</strong>。');
  372. $lang->bug->action->linkrelatedbug = array('main' => '$date, 由 <strong>$actor</strong> 关联相关Bug <strong>$extra</strong>。');
  373. $lang->bug->action->unlinkrelatedbug = array('main' => '$date, 由 <strong>$actor</strong> 移除相关Bug <strong>$extra</strong>。');
  374. $lang->bug->featureBar['browse']['all'] = '全部';
  375. $lang->bug->featureBar['browse']['unclosed'] = $lang->bug->unclosed;
  376. $lang->bug->featureBar['browse']['openedbyme'] = $lang->bug->openedByMe;
  377. $lang->bug->featureBar['browse']['assigntome'] = $lang->bug->assignToMe;
  378. $lang->bug->featureBar['browse']['resolvedbyme'] = $lang->bug->resolvedByMe;
  379. $lang->bug->featureBar['browse']['assignedbyme'] = $lang->bug->assignedByMe;
  380. $lang->bug->featureBar['browse']['more'] = $lang->more;
  381. $lang->bug->moreSelects['browse']['more']['unresolved'] = $lang->bug->unResolved;
  382. $lang->bug->moreSelects['browse']['more']['unconfirmed'] = $lang->bug->unconfirmed;
  383. $lang->bug->moreSelects['browse']['more']['assigntonull'] = $lang->bug->assignToNull;
  384. $lang->bug->moreSelects['browse']['more']['longlifebugs'] = $lang->bug->longLifeBugs;
  385. $lang->bug->moreSelects['browse']['more']['toclosed'] = $lang->bug->toClosed;
  386. $lang->bug->moreSelects['browse']['more']['postponedbugs'] = $lang->bug->postponedBugs;
  387. $lang->bug->moreSelects['browse']['more']['overduebugs'] = $lang->bug->overdueBugs;
  388. $lang->bug->moreSelects['browse']['more']['needconfirm'] = $lang->bug->needConfirm;
  389. $lang->bug->placeholder = new stdclass();
  390. $lang->bug->placeholder->chooseBuilds = '选择相关版本...';
  391. $lang->bug->placeholder->newBuildName = '新版本名称';
  392. $lang->bug->placeholder->duplicate = '请输入关键字';
  393. /* 交互提示。*/
  394. $lang->bug->notice = new stdclass();
  395. $lang->bug->notice->summary = "本页共 <strong>%s</strong> 个Bug,未解决 <strong>%s</strong>。";
  396. $lang->bug->notice->unClosedSummary = "本页共 %s 个Bug,未关闭 %s。";
  397. $lang->bug->notice->checkedSummary = "已选择 {checked} 项,共 {total} 项。";
  398. $lang->bug->notice->confirmChangeProduct = "修改{$lang->productCommon}会导致相应的{$lang->executionCommon}、{$lang->SRCommon}和任务发生变化,确定吗?";
  399. $lang->bug->notice->confirmDelete = '您确认要删除该Bug吗?';
  400. $lang->bug->notice->remindTask = '该Bug已经转化为任务,是否更新任务(编号:%s)状态 ?';
  401. $lang->bug->notice->skipClose = 'Bug %s 不是已解决状态,不能关闭,将自动忽略。';
  402. $lang->bug->notice->executionAccessDenied = "您无权访问该Bug所属的{$lang->executionCommon}!";
  403. $lang->bug->notice->confirmUnlinkBuild = "更换解决版本将取消与旧版本的关联,您确定取消该bug与%s的关联吗?";
  404. $lang->bug->notice->noSwitchBranch = 'Bug%s所属模块不在当前分支下,将自动忽略。';
  405. $lang->bug->notice->confirmToStory = '转需求后Bug将自动关闭,关闭原因为转为需求。';
  406. $lang->bug->notice->productDitto = "该 bug 与上一 bug 不属于同一{$lang->productCommon}!";
  407. $lang->bug->notice->noBug = '暂时没有 Bug。';
  408. $lang->bug->notice->noModule = '<div>您现在还没有模块信息</div><div>请维护测试模块</div>';
  409. $lang->bug->notice->delayWarning = " <strong class='text-danger'> 延期%s天 </strong>";
  410. $lang->bug->notice->skipNotActive = "Bug %s 已解决或已关闭,不再修改。";
  411. $lang->bug->error = new stdclass();
  412. $lang->bug->error->notExist = 'Bug不存在。';
  413. $lang->bug->error->cannotActivate = '状态不是已解决或已关闭的Bug不能激活。';
  414. $lang->bug->error->stepsNotEmpty = "重现步骤不能为空。";
  415. $lang->bug->error->duplicateBugNotExist = '重复Bug不存在。';