在前一陣的使用中,我發(fā)現(xiàn)TL的中文本地化文件locale/zh_CN/strings.txt里有些索引不正確,結(jié)果導致界面中出現(xiàn)一些硬生生的英文,我做了相應的修改。
另外TL的css文件主要還是面向西方字符的顯示,所以在顯示中文的時候,有些地方可能不是很美觀,如字體偏小等。針對這種情況,我也對一些css文件進行了修改。
這些修改都放到了附件TLBugFree里,有興趣的同學可以拿去試試。
我在執(zhí)行測試的界面下仍然沒有問題報告相關(guān)內(nèi)容
按照李的那篇文章,我做了如下修改:
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中的相應內(nèi)容終為:
$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',
);