在前一阵的使用中,我发现TL的中文本地化文件locale/zh_CN/strings.txt里有些索引不正确,结果导致界面中出现一些硬生生的英文,我做了相应的修改。
另外TL的css文件主要还是面向西方字符的显示,所以在显示中文的时候,有些地方可能不是很美观,如字体偏小等。针对这种情况,我也对一些css文件进行了修改。
这些修改都放到了附件TLBugFree里,有兴趣的同学可以拿去试试。
我在执行测试的界面下仍然没有问题报告相关内容
按照李的那篇文章,我做了如下修改:
1、int_bugtracking.php中:
原来的
$configFiles = array(
'BUGZILLA' => 'bugzilla.cfg.php',
'MANTIS' => 'mantis.cfg.php',
'JIRA' => 'jira.cfg.php',
'TRACKPLUS' => 'trackplus.cfg.php',
);
//This holds the interface defintion file names for the bugtracking interfaces
//located in the lib/bugtracking diectory
$interfaceFiles = array(
'BUGZILLA' => 'int_bugzilla.php',
'MANTIS' => 'int_mantis.php',
'JIRA' => 'int_jira.php',
'TRACKPLUS' => 'trackplus.cfg.php',
);
改成了
$interfaceFiles = array(
'BUGZILLA' => 'int_bugzilla.php',
'MANTIS' => 'int_mantis.php',
'JIRA' => 'int_jira.php',
'TRACKPLUS' => 'trackplus.cfg.php',
'BUGFREE' => 'int_bugfree.php',
);
其他都注释掉;
2、copy楼主提供的两个新文件到相应目录
3、修改config.inc.php,我的这文件里没有define(’TL_INTERFACE_BUGS’, ‘NO’);
我将
$g_interface_bugs='NO';
改成了
$g_interface_bugs='BUGFREE';
在laolee和小刀的帮助下搞定了,原来是下载的bugfree.cfg.php没有按我的实际情况配置。配置好之后OK了。
另外,我的int_bugtracking.php中的相应内容终为:
$configFiles = array(
'BUGZILLA' => 'bugzilla.cfg.php',
'MANTIS' => 'mantis.cfg.php',
'JIRA' => 'jira.cfg.php',
'TRACKPLUS' => 'trackplus.cfg.php',
'BUGFREE' => 'bugfree.cfg.php',
);
//This holds the interface defintion file names for the bugtracking interfaces
//located in the lib/bugtracking diectory
$interfaceFiles = array(
'BUGZILLA' => 'int_bugzilla.php',
'MANTIS' => 'int_mantis.php',
'JIRA' => 'int_jira.php',
'TRACKPLUS' => 'trackplus.cfg.php',
'BUGFREE' => 'int_bugfree.php',
);