diff --git a/module/block/lang/de.php b/module/block/lang/de.php index 2560f66c0a..7957ad7bdb 100644 --- a/module/block/lang/de.php +++ b/module/block/lang/de.php @@ -657,6 +657,18 @@ $lang->block->visions['lite'] = new stdclass(); $lang->block->visions['lite']->key = 'lite'; $lang->block->visions['lite']->title = 'Operation Management Interface'; $lang->block->visions['lite']->text = "Specially designed for Non-R&D teams, and based on the visual Kanban {$lang->projectCommon} management model."; +if($config->edition == 'ipd') +{ + $lang->block->visionTitle = 'The user interface of ZenTao is divided into 【OR & MM Interface】【IPD Interface】 and 【Operation Management Interface】.'; + + $lang->block->visions['rnd']->title = 'IPD Interface'; + $lang->block->visions['rnd']->text = "Doing things right by integrating the program, {$lang->productCommon}, {$lang->projectCommon}, execution,test, etc., and provide the lifecycle {$lang->projectCommon} management solution."; + + $lang->block->visions['or'] = new stdclass(); + $lang->block->visions['or']->key = 'or'; + $lang->block->visions['or']->title = 'OR & MM Interface'; + $lang->block->visions['or']->text = "Doing the right thing by integrating RM Hub, requirements, {$lang->productCommon}, roadmap planning, and project initiation, empowering effective requirement and market management."; +} $lang->block->customModes['light'] = 'Light Mode'; $lang->block->customModes['ALM'] = 'ALM Mode'; diff --git a/module/block/lang/en.php b/module/block/lang/en.php index 867ab6a25d..88abbbc175 100644 --- a/module/block/lang/en.php +++ b/module/block/lang/en.php @@ -657,6 +657,18 @@ $lang->block->visions['lite'] = new stdclass(); $lang->block->visions['lite']->key = 'lite'; $lang->block->visions['lite']->title = 'Operation Management Interface'; $lang->block->visions['lite']->text = "Specially designed for Non-R&D teams, and based on the visual Kanban {$lang->projectCommon} management model."; +if($config->edition == 'ipd') +{ + $lang->block->visionTitle = 'The user interface of ZenTao is divided into 【OR & MM Interface】【IPD Interface】 and 【Operation Management Interface】.'; + + $lang->block->visions['rnd']->title = 'IPD Interface'; + $lang->block->visions['rnd']->text = "Doing things right by integrating the program, {$lang->productCommon}, {$lang->projectCommon}, execution,test, etc., and provide the lifecycle {$lang->projectCommon} management solution."; + + $lang->block->visions['or'] = new stdclass(); + $lang->block->visions['or']->key = 'or'; + $lang->block->visions['or']->title = 'OR & MM Interface'; + $lang->block->visions['or']->text = "Doing the right thing by integrating RM Hub, requirements, {$lang->productCommon}, roadmap planning, and project initiation, empowering effective requirement and market management."; +} $lang->block->customModes['light'] = 'Light Mode'; $lang->block->customModes['ALM'] = 'ALM Mode'; diff --git a/module/block/lang/fr.php b/module/block/lang/fr.php index de2ac29c45..fecbb772c9 100644 --- a/module/block/lang/fr.php +++ b/module/block/lang/fr.php @@ -657,6 +657,18 @@ $lang->block->visions['lite'] = new stdclass(); $lang->block->visions['lite']->key = 'lite'; $lang->block->visions['lite']->title = 'Operation Management Interface'; $lang->block->visions['lite']->text = "Specially designed for Non-R&D teams, and based on the visual Kanban {$lang->projectCommon} management model."; +if($config->edition == 'ipd') +{ + $lang->block->visionTitle = 'The user interface of ZenTao is divided into 【OR & MM Interface】【IPD Interface】 and 【Operation Management Interface】.'; + + $lang->block->visions['rnd']->title = 'IPD Interface'; + $lang->block->visions['rnd']->text = "Doing things right by integrating the program, {$lang->productCommon}, {$lang->projectCommon}, execution,test, etc., and provide the lifecycle {$lang->projectCommon} management solution."; + + $lang->block->visions['or'] = new stdclass(); + $lang->block->visions['or']->key = 'or'; + $lang->block->visions['or']->title = 'OR & MM Interface'; + $lang->block->visions['or']->text = "Doing the right thing by integrating RM Hub, requirements, {$lang->productCommon}, roadmap planning, and project initiation, empowering effective requirement and market management."; +} $lang->block->customModes['light'] = 'Light Mode'; $lang->block->customModes['ALM'] = 'ALM Mode'; diff --git a/module/block/lang/zh-cn.php b/module/block/lang/zh-cn.php index 7f2e518ab0..84d2ca04b7 100644 --- a/module/block/lang/zh-cn.php +++ b/module/block/lang/zh-cn.php @@ -657,6 +657,18 @@ $lang->block->visions['lite'] = new stdclass(); $lang->block->visions['lite']->key = 'lite'; $lang->block->visions['lite']->title = '运营管理界面'; $lang->block->visions['lite']->text = "专为非研发团队打造,主要以直观、可视化的看板{$lang->projectCommon}管理模型为主。"; +if($config->edition == 'ipd') +{ + $lang->block->visionTitle = '禅道使用界面分为【需求与市场管理界面】【IPD研发管理界面】和【运营管理界面】。'; + + $lang->block->visions['rnd']->title = 'IPD研发管理界面'; + $lang->block->visions['rnd']->text = "正确的做事,集项目集、{$lang->productCommon}、{$lang->projectCommon}、执行、测试等多维度管理于一体,提供全过程{$lang->projectCommon}管理解决方案。"; + + $lang->block->visions['or'] = new stdclass(); + $lang->block->visions['or']->key = 'or'; + $lang->block->visions['or']->title = '需求与市场管理界面'; + $lang->block->visions['or']->text = "做正确的事,融合了需求池、需求、{$lang->productCommon}、路标规划、立项等需求与市场管理功能。"; +} $lang->block->customModes['light'] = '轻量管理模式'; $lang->block->customModes['ALM'] = '全生命周期管理模式'; diff --git a/module/block/view/visionswitch.html.php b/module/block/view/visionswitch.html.php index 3cb0969617..6786b89903 100644 --- a/module/block/view/visionswitch.html.php +++ b/module/block/view/visionswitch.html.php @@ -13,6 +13,7 @@

block->visionTitle;?>

+ edition == 'ipd') $lang->block->visions = array('or' => $lang->block->visions['or']) + $lang->block->visions;?> block->visions as $vision):?> config->vision == $vision->key ? 'active' : '';?> key");?>" data-type="ajax" class='vision ' data-value="key;?>"> diff --git a/www/theme/default/images/guide/vision_or.png b/www/theme/default/images/guide/vision_or.png new file mode 100644 index 0000000000..be856d3dc1 Binary files /dev/null and b/www/theme/default/images/guide/vision_or.png differ