zentaobiz.php 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. $lang->execution->report = new stdclass();
  3. $lang->execution->report->typeList['bug']['basic'] = '基本统计';
  4. $lang->execution->report->typeList['bug']['progress'] = '进度分析';
  5. $lang->execution->report->browseType['bug'] = 'Bug';
  6. $lang->execution->report->browseType['testcase'] = '用例';
  7. $lang->execution->report->common = '报表';
  8. $lang->execution->report->subtitle = '为确保统计准确性, 采用%s列表的全部数据进行统计。';
  9. $lang->execution->report->notice = '请选择统计内容';
  10. $lang->execution->report->untitled = '未命名';
  11. $lang->execution->report->errorExportChart = '该浏览器不支持Canvas图像导出功能,请换其他浏览器。';
  12. $lang->execution->report->bug = new stdclass();
  13. $lang->execution->report->bug->count = 'Bug数';
  14. $lang->execution->report->bug->total = 'Bug总数';
  15. $lang->execution->report->bug->effective = '有效Bug数';
  16. $lang->execution->report->bug->useCase = '执行用例产生的Bug数';
  17. $lang->execution->report->bug->active = '激活Bug数';
  18. $lang->execution->report->bug->fixed = '已修复Bug数';
  19. $lang->execution->report->bug->developedStory = '研发完毕的需求数';
  20. $lang->execution->report->bug->defect = '研发完毕的需求的缺陷密度';
  21. $lang->execution->report->bug->efficientRate = 'Bug有效率';
  22. $lang->execution->report->bug->fixedRate = 'Bug修复率';
  23. $lang->execution->report->bug->caseBugRate = '用例产生的Bug占比';
  24. $lang->execution->report->bug->severityMap = 'Bug严重程度分布';
  25. $lang->execution->report->bug->priMap = 'Bug优先级分布';
  26. $lang->execution->report->bug->resolutionMap = 'Bug解决方案分布';
  27. $lang->execution->report->bug->typeMap = 'Bug类型分布';
  28. $lang->execution->report->bug->dailyNum = '每日新增、解决Bug数、关闭Bug数(折线图)';
  29. $lang->execution->report->bug->userCreatedBugs = '按团队成员统计的创建Bug数';
  30. $lang->execution->report->bug->userResolvedBugs = '按团队成员统计的解决Bug数';
  31. $lang->execution->report->bug->statusMap = 'Bug状态分布';
  32. $lang->execution->report->bug->productMap = 'Bug来源产品模块分布';
  33. $lang->execution->report->bug->dailyTitles[] = '每日新增';
  34. $lang->execution->report->bug->dailyTitles[] = '解决Bug数';
  35. $lang->execution->report->bug->dailyTitles[] = '关闭Bug数';
  36. $lang->execution->report->tips = new stdclass();
  37. $lang->execution->report->tips->effective = 'Bug列表中解决方案为已解决、延期处理和不予解决或状态为激活的Bug';
  38. $lang->execution->report->tips->efficientRate = '(有效Bug数÷Bug总数)× 100%';
  39. $lang->execution->report->tips->fixedRate = '(已修复Bug数÷有效Bug数)× 100%';
  40. $lang->execution->report->tips->caseBugRate = '(执行用例产生的Bug数÷Bug总数)× 100%';
  41. $lang->execution->report->tips->defect = '有效Bug数÷研发完毕的需求数';
  42. $lang->execution->report->tips->fixed = 'Bug列表中解决方案为已解决且状态为已关闭的Bug数';
  43. $lang->execution->report->tips->productMap = '最多展示二级模块';
  44. $lang->execution->reportBug = 'Bug统计报表';