Is there a way to change the Doxygen term Modules in the tree and in the right pane pages to something else?

doxygen, module

Solution

I've sucessfully changed the word 'Modules' in the past, but I've only ever needed to do this for the top-of-page tabs, and not the navigation tree. The method I used than may also work for you:

- You need a fresh Layout file. Generate one with `doxygen -l layoutfilename.xml`

- Locate the line containing `type="modules"`

- Change the `title` entry from `""` to `"Your Word"` - I used `"Index"`

- Specify the replacement layout file in you doxyfile.

Problem

I am using Doxygen groups and therefore see them listed in the Doxygen navigation tree under Modules, as expected. My project is documenting integration using Zend modules and therefore Doxygen Modules and the Zend modules tend to overload the term modules and make it confusing for the readers. My question is: is there a way, preferably an automated way, to change the Doxygen term Modules in the tree and in the right pane pages to something else?

Original source