* [misc] modify lang.

This commit is contained in:
songchenxuan
2024-12-20 10:53:18 +08:00
committed by 周鑫
parent 4cbfa4bac1
commit ceca5b027a
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -139,7 +139,7 @@ $lang->report->annualData->caseMonthActions = "Monthly case operation";
$lang->report->annualData->executionFields['name'] = "{$lang->executionCommon} name";
$lang->report->annualData->executionFields['story'] = "Finished stories";
$lang->report->annualData->executionFields['task'] = "Finished tasks";
$lang->report->annualData->executionFields['bug'] = "Resolved bugs";
$lang->report->annualData->executionFields['bug'] = "Repaired bugs";
$lang->report->annualData->productFields['name'] = "{$lang->productCommon} name";
$lang->report->annualData->productFields['plan'] = "Plans";
+1 -1
View File
@@ -139,7 +139,7 @@ $lang->report->annualData->caseMonthActions = "Monthly case operation";
$lang->report->annualData->executionFields['name'] = "{$lang->executionCommon} name";
$lang->report->annualData->executionFields['story'] = "Finished stories";
$lang->report->annualData->executionFields['task'] = "Finished tasks";
$lang->report->annualData->executionFields['bug'] = "Resolved bugs";
$lang->report->annualData->executionFields['bug'] = "Repaired bugs";
$lang->report->annualData->productFields['name'] = "{$lang->productCommon} name";
$lang->report->annualData->productFields['plan'] = "Plans";
+1 -1
View File
@@ -139,7 +139,7 @@ $lang->report->annualData->caseMonthActions = "Monthly case operation";
$lang->report->annualData->executionFields['name'] = "{$lang->executionCommon} name";
$lang->report->annualData->executionFields['story'] = "Finished stories";
$lang->report->annualData->executionFields['task'] = "Finished tasks";
$lang->report->annualData->executionFields['bug'] = "Resolved bugs";
$lang->report->annualData->executionFields['bug'] = "Repaired bugs";
$lang->report->annualData->productFields['name'] = "{$lang->productCommon} name";
$lang->report->annualData->productFields['plan'] = "Plans";
+1 -1
View File
@@ -139,7 +139,7 @@ $lang->report->annualData->caseMonthActions = "每月用例操作情况";
$lang->report->annualData->executionFields['name'] = "{$lang->executionCommon}名称";
$lang->report->annualData->executionFields['story'] = "完成{$lang->SRCommon}数";
$lang->report->annualData->executionFields['task'] = "完成任务数";
$lang->report->annualData->executionFields['bug'] = "解决Bug数";
$lang->report->annualData->executionFields['bug'] = "修复Bug数";
$lang->report->annualData->productFields['name'] = "{$lang->productCommon}名称";
$lang->report->annualData->productFields['plan'] = "创建计划数";
+1 -1
View File
@@ -93,7 +93,7 @@ class reportTao extends reportModel
->fetchAll('execution');
$finishedTask = array();
foreach($taskStats as $executionID => $taskStat) $finishedTask[$executionID] = $taskStat->finishedTask;
if(!empty($taskStats)) foreach($taskStats as $executionID => $taskStat) $finishedTask[$executionID] = $taskStat->finishedTask;
/* Get changed executions in this year. */
$executions = $this->dao->select('id,name')->from(TABLE_EXECUTION)->where('deleted')->eq(0)
->andwhere('type')->eq('sprint')