diff options
Diffstat (limited to 'LANGUAGE.HOWTO')
-rw-r--r-- | LANGUAGE.HOWTO | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/LANGUAGE.HOWTO b/LANGUAGE.HOWTO index d4d0210..306b4bf 100644 --- a/LANGUAGE.HOWTO +++ b/LANGUAGE.HOWTO @@ -11,20 +11,18 @@ Just follow these steps: I'll use xx in the rest of this document. 3) Edit language.cpp: - Add a #include<translator_xx.h> - - in setTranslator() add + - In setTranslator() add else if (L_EQUAL("your_language_name")) { - theTranslator = new TranslatorYourlanguage; + theTranslator = new TranslatorYourLanguage; } after the if { ... } 4) Edit libdoxygen.pro.in and add translator_xx.h to the HEADERS line. 5) Edit translator_xx.h: - Rename TRANSLATOR_EN_H to TRANSLATOR_XX_H twice. - - Rename TranslatorEnglish to TranslatorYourlanguage - - In the member latexBabelPackage() change "english" into the name of the - latex package that adds support for your language. + - Rename TranslatorEnglish to TranslatorYourLanguage - In the member idLanguage() change "english" into the name of your language (use lower case characters only). Depending on the language you may also wish to change the member functions latexLanguageSupportCommand() @@ -44,6 +42,8 @@ Just follow these steps: 7) Now you can use OUTPUT_LANGUAGE = your_language_name in the config file to generate output in your language. 8) Send translator_xx.h to me so I can add it to doxygen. + Send also your name and e-mail address to be included in the + maintainers.txt list. Good luck, and let me know if there are problems. |