I'm working on a pt_BR project that provides a final user API to extends functionalities.
I need to generate the javadoc of this classes (in Java), but, when using javadoc.exe the static texts, not the content, of the output document is in English.
So, I want to generate the documentation in pt_BR.
I tried to use like this:
javadoc -locale pt_BR -sourcepath scr -d c:\TEMP
But it didn't work.
Note: Just to be clear, I'm not intent to translate the content (that is already in pt_BR) but the static texts (the navigation bar, titles, etc).
How can I do that?