Re: [Doxygen-develop] Multi-language support in Doxygen?
Brought to you by:
dimitri
From: Dimitri v. H. <di...@st...> - 2004-10-31 08:45:29
|
On Tue, Oct 26, 2004 at 01:32:54PM -0500, Jim Witte wrote: > Hi, > > Does doxygen support documentation in multiple languages? > > As an example, the basic schema is that somewhere at the "top" of the > source definition (or in a configuration file), a "default language" is > defined. Then a set of "Alternate Languages" is defined, in a > Scheme-style list (language identifiers are [a-zA-Z0-9]* ) Then > certain '///' comments that have a '< [Identifier]' and directly follow > default-language comments would define one of the alternate language > comments. Then the command-line for generating the documentation would > have an optional language setting (something like 'doxygen -l EN'). Doxygen has a language setting via OUTPUT_LANGUAGE in the configuration file. It also supports switching between languages via the \~ command. There is the example from the documentation: /*! \~english This is english \~dutch Dit is Nederlands \~german Dieses ist deutsch. \~ output for all languages. */ Regards, Dimitri |