zentaobiz.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. $lang->project->exportChart = 'Export Chart';
  3. $lang->project->reportSettings = new stdclass();
  4. $lang->project->reportSettings->common = 'Report';
  5. $lang->project->reportSettings->subtitle = 'To ensure statistical accuracy, all data from the %s list will be used for statistics.';
  6. $lang->project->reportSettings->notice = 'Statistical content';
  7. $lang->project->reportSettings->name = '%s name';
  8. $lang->project->reportSettings->storyNum = 'Stories';
  9. $lang->project->reportSettings->taskNum = 'Tasks';
  10. $lang->project->reportSettings->undoneTask = 'Undone tasks';
  11. $lang->project->reportSettings->undoneStory = 'Undone stories';
  12. $lang->project->reportSettings->left = 'Left';
  13. $lang->project->reportSettings->consumed = 'Cost';
  14. $lang->project->reportSettings->progress = '%s progress';
  15. $lang->project->reportSettings->execution = 'Execution';
  16. $lang->project->reportSettings->devRate = 'Development Efficiency';
  17. $lang->project->reportSettings->passRate = 'Story Acceptance Rate';
  18. $lang->project->reportSettings->storyDoneRate = 'Story Completion Rate';
  19. $lang->project->reportSettings->devDoneRate = 'Development Task Completion Rate';
  20. $lang->project->reportSettings->testDoneRate = 'Testing Task Completion Rate';
  21. $lang->project->reportSettings->testDensity = 'Test Defect Density';
  22. $lang->project->reportSettings->total = 'Total %s';
  23. $lang->project->reportSettings->doingNum = 'In progress %s';
  24. $lang->project->reportSettings->closedNum = 'Closed %s';
  25. $lang->project->reportSettings->delayNum = 'Delayed %s';
  26. $lang->project->reportSettings->closedRate = '%s closed Rate';
  27. $lang->project->reportSettings->delayRate = '%s delayed Rate';
  28. $lang->project->reportSettings->statusMap = '%s status distribution';
  29. $lang->project->reportSettings->doingSummary = 'In progress %s summary table';
  30. $lang->project->reportSettings->closedSummary = 'Closed %s summary table';
  31. $lang->project->reportSettings->typeList['execution']['basic'] = 'Basic Statistics';
  32. $lang->project->reportSettings->typeList['execution']['task'] = 'Task Statistics';
  33. $lang->project->reportSettings->typeList['execution']['progress'] = 'Progress Analysis';
  34. $lang->project->reportSettings->typeList['execution']['resource'] = 'Resource Analysis';
  35. $lang->project->reportSettings->typeList['bug']['basic'] = 'Basic Statistics';
  36. $lang->project->reportSettings->typeList['bug']['progress'] = 'Progress Analysis';
  37. $lang->project->reportSettings->tips = new stdclass();
  38. $lang->project->reportSettings->tips->closedRate = '(Number of closed %s / total %s) * 100%';
  39. $lang->project->reportSettings->tips->delayRate = '(Number of delayed %s / total %s) * 100%';
  40. $lang->project->reportSettings->tips->doingSummary = 'Number of stories: The sum of all stories in %s; Remaining stories: The sum of all ongoing stories that are not closed in %s; Number of tasks: The sum of all tasks in %s; Remaining tasks: The sum of tasks in %s with a status that is not Closed or Completed; Remaining hours: The sum of remaining hours for all tasks in %s, filtering out parent tasks and tasks with statuses of Cancelled and Closed; Consumed hours: The sum of remaining hours for all tasks in %s, filtering out parent tasks; Progress in %s: Consumed hours ÷ (Consumed hours + Remaining hours) * 100%.';
  41. $lang->project->reportSettings->tips->closedSummary = "Display statistical data on the second day after executing the shutdown, with the following statistical rules: Development Efficiency: %s closed delivered R&D stories scale ÷ task hours consumed according to %s; story Acceptance Rate: %s closed R&D stories accepted ÷ valid R&D stories according to %s; story Planned Completion Rate: %s closed delivered R&D stories ÷ R&D stories as of the start of %s; Development Task Completion Rate: %s closed completed development tasks ÷ development tasks according to %s; Testing Task Completion Rate: %s closed completed testing tasks ÷ testing tasks according to %s; Test Defect Density: New valid bugs according to %s ÷ R&D stories scale completed by %s closed.";
  42. $lang->project->executionReport = $lang->execution->common . ' report';
  43. $lang->project->reportBug = 'Bug report';