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統計報表';