zentaobiz.php 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. $lang->execution->report = new stdclass();
  3. $lang->execution->report->typeList['bug']['basic'] = 'Basic Statistics';
  4. $lang->execution->report->typeList['bug']['progress'] = 'Progress Analysis';
  5. $lang->execution->report->browseType['bug'] = 'Bug';
  6. $lang->execution->report->browseType['testcase'] = 'case';
  7. $lang->execution->report->common = 'Report';
  8. $lang->execution->report->subtitle = 'To ensure statistical accuracy, all data from the %s list is used for statistics.';
  9. $lang->execution->report->notice = 'Statistics content';
  10. $lang->execution->report->untitled = 'Untitled';
  11. $lang->execution->report->errorExportChart = 'Your browser does not support Canvas exporting. Try other browsers.';
  12. $lang->execution->report->bug = new stdclass();
  13. $lang->execution->report->bug->count = 'Number of bugs';
  14. $lang->execution->report->bug->total = 'Total Bugs';
  15. $lang->execution->report->bug->effective = 'Effective Bugs';
  16. $lang->execution->report->bug->useCase = 'Bugs from Executed Use Cases';
  17. $lang->execution->report->bug->active = 'Active Bugs';
  18. $lang->execution->report->bug->fixed = 'Fixed Bugs';
  19. $lang->execution->report->bug->developedStory = 'Completed Requirements';
  20. $lang->execution->report->bug->defect = 'Defect Density of Completed Requirements';
  21. $lang->execution->report->bug->efficientRate = 'Bug Efficiency';
  22. $lang->execution->report->bug->fixedRate = 'Bug Fix Rate';
  23. $lang->execution->report->bug->caseBugRate = 'Proportion of Bugs from Use Cases';
  24. $lang->execution->report->bug->severityMap = 'Bug Severity Distribution';
  25. $lang->execution->report->bug->priMap = 'Bug Priority Distribution';
  26. $lang->execution->report->bug->resolutionMap = 'Bug Solution Distribution';
  27. $lang->execution->report->bug->typeMap = 'Bug Type Distribution';
  28. $lang->execution->report->bug->dailyNum = 'Daily New, Resolved, and Closed Bugs (Line Chart)';
  29. $lang->execution->report->bug->userCreatedBugs = 'Number of Bugs Created by Team Members';
  30. $lang->execution->report->bug->userResolvedBugs = 'Number of Bugs Resolved by Team Members';
  31. $lang->execution->report->bug->statusMap = 'Bug status distribution';
  32. $lang->execution->report->bug->productMap = 'Bug From Product Module Distribution';
  33. $lang->execution->report->bug->dailyTitles[] = 'Daily New';
  34. $lang->execution->report->bug->dailyTitles[] = 'Resolved';
  35. $lang->execution->report->bug->dailyTitles[] = 'Closed Bugs';
  36. $lang->execution->report->tips = new stdclass();
  37. $lang->execution->report->tips->effective = 'Bugs in the list with solutions marked as resolved, deferred, or not resolved, or with an active status';
  38. $lang->execution->report->tips->efficientRate = '(Effective Bugs / Total Bugs) * 100%';
  39. $lang->execution->report->tips->fixedRate = '(Fixed Bugs / Effective Bugs) * 100%';
  40. $lang->execution->report->tips->caseBugRate = '(Bugs generated from executed cases / Total Bugs) * 100%';
  41. $lang->execution->report->tips->defect = 'Effective Bugs / Completed Requirements';
  42. $lang->execution->report->tips->fixed = 'The number of bugs in the bug list with resolved solutions and closed status';
  43. $lang->execution->report->tips->productMap = 'Maximum display of secondary modules.';
  44. $lang->execution->reportBug = 'Bug report';