From 785dc1fd1a0bb998b58dec429cd74e67323ffe0f Mon Sep 17 00:00:00 2001 From: liugang Date: Mon, 3 Jul 2023 19:09:45 +0800 Subject: [PATCH] * block: add lang items of project overview block. --- module/block/lang/de.php | 5 +++++ module/block/lang/en.php | 5 +++++ module/block/lang/fr.php | 5 +++++ module/block/lang/vi.php | 5 +++++ module/block/lang/zh-cn.php | 5 +++++ 5 files changed, 25 insertions(+) diff --git a/module/block/lang/de.php b/module/block/lang/de.php index 1d9e3015ef..f1f6c95b6c 100644 --- a/module/block/lang/de.php +++ b/module/block/lang/de.php @@ -514,6 +514,11 @@ $lang->block->productstatistic->newExecution = 'Latest Execution'; $lang->block->productstatistic->newRelease = 'Latest Release'; $lang->block->productstatistic->deliveryRate = 'Delivery Rate'; +$lang->block->projectoverview = new stdclass(); +$lang->block->projectoverview->totalProject = 'Total'; +$lang->block->projectoverview->thisYear = 'This Year'; +$lang->block->projectoverview->lastThreeYear = 'Done in last three years'; + $lang->block->projectstatistic = new stdclass(); $lang->block->projectstatistic->story = 'Story'; $lang->block->projectstatistic->cost = 'Cost'; diff --git a/module/block/lang/en.php b/module/block/lang/en.php index bfc9092c96..5884a3b8e5 100644 --- a/module/block/lang/en.php +++ b/module/block/lang/en.php @@ -514,6 +514,11 @@ $lang->block->productstatistic->newExecution = 'Latest Execution'; $lang->block->productstatistic->newRelease = 'Latest Release'; $lang->block->productstatistic->deliveryRate = 'Delivery Rate'; +$lang->block->projectoverview = new stdclass(); +$lang->block->projectoverview->totalProject = 'Total'; +$lang->block->projectoverview->thisYear = 'This Year'; +$lang->block->projectoverview->lastThreeYear = 'Done in last three years'; + $lang->block->projectstatistic = new stdclass(); $lang->block->projectstatistic->story = 'Story'; $lang->block->projectstatistic->cost = 'Cost'; diff --git a/module/block/lang/fr.php b/module/block/lang/fr.php index dfab867194..73c1ac35b3 100644 --- a/module/block/lang/fr.php +++ b/module/block/lang/fr.php @@ -514,6 +514,11 @@ $lang->block->productstatistic->newExecution = 'Latest Execution'; $lang->block->productstatistic->newRelease = 'Latest Release'; $lang->block->productstatistic->deliveryRate = 'Delivery Rate'; +$lang->block->projectoverview = new stdclass(); +$lang->block->projectoverview->totalProject = 'Total'; +$lang->block->projectoverview->thisYear = 'This Year'; +$lang->block->projectoverview->lastThreeYear = 'Done in last three years'; + $lang->block->projectstatistic = new stdclass(); $lang->block->projectstatistic->story = 'Story'; $lang->block->projectstatistic->cost = 'Cost'; diff --git a/module/block/lang/vi.php b/module/block/lang/vi.php index 18d500c45c..560e873dea 100644 --- a/module/block/lang/vi.php +++ b/module/block/lang/vi.php @@ -571,6 +571,11 @@ $lang->block->productstatistic->newExecution = 'Latest Execution'; $lang->block->productstatistic->newRelease = 'Latest Release'; $lang->block->productstatistic->deliveryRate = 'Delivery Rate'; +$lang->block->projectoverview = new stdclass(); +$lang->block->projectoverview->totalProject = 'Total'; +$lang->block->projectoverview->thisYear = 'This Year'; +$lang->block->projectoverview->lastThreeYear = 'Done in last three years'; + $lang->block->productoverview = new stdclass(); $lang->block->productoverview->totalProductCount = 'Total Product Count'; $lang->block->productoverview->productReleasedThisYear = 'Number Of Releases This Year'; diff --git a/module/block/lang/zh-cn.php b/module/block/lang/zh-cn.php index ff4e91b510..c4ed1eefed 100644 --- a/module/block/lang/zh-cn.php +++ b/module/block/lang/zh-cn.php @@ -516,6 +516,11 @@ $lang->block->productstatistic->newExecution = '最新执行'; $lang->block->productstatistic->newRelease = '最新发布'; $lang->block->productstatistic->deliveryRate = '需求交付率'; +$lang->block->projectoverview = new stdclass(); +$lang->block->projectoverview->totalProject = '项目总量'; +$lang->block->projectoverview->thisYear = '今年完成'; +$lang->block->projectoverview->lastThreeYear = '近三年完成的项目数量分布'; + $lang->block->projectstatistic = new stdclass(); $lang->block->projectstatistic->story = '需求'; $lang->block->projectstatistic->cost = '投入';