diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-05-12 17:38:45 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-05-12 17:38:45 (GMT) |
commit | 697375aff0beddb756025e867289213dc46ca45f (patch) | |
tree | 2f87712e9d2e8da7138ca908bf03c9937ba71bdb /src/translator_br.h | |
parent | 62d3c6501af58ceb48ce8e56327d07ad69e79374 (diff) | |
download | Doxygen-697375aff0beddb756025e867289213dc46ca45f.zip Doxygen-697375aff0beddb756025e867289213dc46ca45f.tar.gz Doxygen-697375aff0beddb756025e867289213dc46ca45f.tar.bz2 |
Release-1.2.15-20020512
Diffstat (limited to 'src/translator_br.h')
-rw-r--r-- | src/translator_br.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/translator_br.h b/src/translator_br.h index e81ef2b..74e1dea 100644 --- a/src/translator_br.h +++ b/src/translator_br.h @@ -13,7 +13,12 @@ * Brazilian Portuguese version by * Fabio "FJTC" Jun Takada Chino <chino@icmc.sc.usp.br> * http://www.icmc.sc.usp.br/~chino - * Version: 1.2.13 (2002/01/24) + * Version: 1.2.13.2 (2002/05/10) + * + * History: + * 1.2.13.2 (2002/05/10): + * - Latex Babel package language name fixed. + * - "Estrura" bug identified and fixed (Thanks to Jorge Ramos). */ #ifndef TRANSLATOR_BR_H #define TRANSLATOR_BR_H @@ -33,9 +38,7 @@ class TranslatorBrazilian: public Translator */ virtual QCString idLanguage() { - /* I'm not sure if it is correct. I did not found the documentation - of BabelPackage. If you know the right string, please contact me. */ - return "portuges"; + return "brazil"; } /*! Used to get the command(s) for the language support. This method @@ -737,7 +740,7 @@ class TranslatorBrazilian: public Translator switch(compType) { case ClassDef::Class: result+="classe "; break; - case ClassDef::Struct: result+="estrura "; break; + case ClassDef::Struct: result+="estrutura "; break; case ClassDef::Union: result+="união "; break; case ClassDef::Interface: result+="interface "; break; case ClassDef::Exception: result+="exceção "; break; |