Reputation: 2061
I'm looking for a way to customize the title of Related pages ; my locale is french so I get
Pages associées
But I would like to put other text in place.
Upvotes: 2
Views: 5516
Reputation: 14859
First create a layout file using
doxygen -l
then open the generated DoxygenLayout.xml
with a text editor and look for the line
<tab type="pages" visible="yes" title="" intro=""/>
and replace that with
<tab type="pages" visible="yes" title="Your Title" intro=""/>
and finally mention the layout file in your doxygen configuration file as follows
LAYOUT_FILE = DoxygenLayout.xml
For more details see https://www.doxygen.org/manual/customize.html#layout
Upvotes: 9
Reputation: 1
accents: INPUT_ENCODING = "encoding used in your editor" Default Visual Studio in North America is CP1252. Doxygen works internally in UTF-8, so it has to convert between the two.
Upvotes: 0