Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将螳螂错误跟踪器中的主菜单文本(如“报告问题”)更改为“新项目”,我该如何完成?
我看了看,custom_strings_inc.php但我不明白如何从那里更改主菜单文本。
custom_strings_inc.php
您必须从现有的 lang 文件(在lang文件夹中)中识别正确的 lang 变量名称,并在 custom_strings 中覆盖它们。
例如,如果要将Report Issue更改为New Project,请编辑custom_strings_inc.php并添加以下行:
$s_report_bug_link = "New Project";