0

I am trying to change the main menu text in the mantis bug tracker like "Report Issue" to "New Project" how can i accomplish this?

I looked at custom_strings_inc.php but I could not understand how to change the main menu text from there.

Matt Taylor
  • 3,360
  • 1
  • 20
  • 34
jarus
  • 1,853
  • 11
  • 44
  • 76

1 Answers1

1

You will have to identify the correct lang variable name from the existing lang files (in lang folder) and override them in custom_strings.

For example, if you want to change Report Issue to New Project, edit custom_strings_inc.php and add the following line:

$s_report_bug_link = "New Project";
libregeek
  • 1,264
  • 11
  • 23