iTop2.2 显示Parent problem id 或[父级问题]解决办法,二次汉化,界面修改为英文


本示例的iTop安装包来自ITIL先锋论坛,
汉化版本:http://www.itilxf.com/thread-36552-1-1.html


1、
iTop2.2 在英文语言下,Incident Management->New incident->Relations栏中
显示为Parent problem id 或[父级问题]的bug,解决办法

修改文件,在Class:Incident/Attribute:添加4行
[root@nb0001 iTop_2.2_2]# vim /var/www/html/iTop_2.2_2/env-production/dictionaries/zh-cn.dict.php 
1794         'Class:Incident/Attribute:parent_problem_id' => 'Parent problem',
1795         'Class:Incident/Attribute:parent_problem_id+' => '',
1796         'Class:Incident/Attribute:parent_problem_ref' => 'Parent problem ref',
1797         'Class:Incident/Attribute:parent_problem_ref+' => '',


2、
全文替换,把iTop中的“事件”换成“故障”的一条命令,因为把事件改为“故障”或者“事故”更合理。

[root@nb0001 iTop_2.2_2]# find ./ | xargs grep "事件" |awk -F : '{print $1}'|xargs sed -i 's/事件/故障/g'

3,
修改登录iTop为英文界面的方法:

[root@nb0001 iTop_2.2_2]# vim conf/production/config-itop.php
'default_language' => 'EN US',


4、重启apache

[root@nb0001 html]# service httpd restart
Stopping httpd:                                            [  OK  ]
Starting httpd:                                            [  OK  ]
[root@nb0001 html]#



你可能感兴趣的:(显示,parent,itop)