diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2003-05-14 19:55:59 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2003-05-14 19:55:59 (GMT) |
commit | 20bd371f722f95bdf9da2d5c27753af4d38e7b6f (patch) | |
tree | d211455e0cef95445694e7630c63dd0e90d3f3a5 /src/translator_br.h | |
parent | ea4b32cb910635a50467b02f36b5521337451cf0 (diff) | |
download | Doxygen-20bd371f722f95bdf9da2d5c27753af4d38e7b6f.zip Doxygen-20bd371f722f95bdf9da2d5c27753af4d38e7b6f.tar.gz Doxygen-20bd371f722f95bdf9da2d5c27753af4d38e7b6f.tar.bz2 |
Release-1.3-20030514
Diffstat (limited to 'src/translator_br.h')
-rw-r--r-- | src/translator_br.h | 56 |
1 files changed, 47 insertions, 9 deletions
diff --git a/src/translator_br.h b/src/translator_br.h index 17e2ce9..f45947f 100644 --- a/src/translator_br.h +++ b/src/translator_br.h @@ -13,26 +13,21 @@ * Brazilian Portuguese version by * Fabio "FJTC" Jun Takada Chino <chino@icmc.usp.br> * http://www.icmc.sc.usp.br/~chino - * Version: 1.2.19 (2002/10/15) + * Version: 1.3 (2003/05/01) * * History: + * 1.3: + * - Updated to Doxygen 1.3.x. * 1.2.19: * - Updated to Doxygen 1.2.19 * - Translation Review (Thanks to Jorge Ramos and others) * - Small fixes in C output. * - Latex generation support fixed (invalid package name). - * 1.2.18 (2002/07/30): - * - Updated to Doxygen 1.2.18 - * 1.2.17 (2002/07/10): - * - Updated to Doxygen 1.2.17. - * 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 -class TranslatorBrazilian: public TranslatorAdapter_1_3 +class TranslatorBrazilian: public Translator { public: @@ -1422,5 +1417,48 @@ class TranslatorBrazilian: public TranslatorAdapter_1_3 return "Eventos"; } +////////////////////////////////////////////////////////////////////////// +// new since 1.3 +////////////////////////////////////////////////////////////////////////// + + /*! Used as a heading for a list of Java class types with package scope. + */ + virtual QCString trPackageTypes() + { + return "Tipos do Pacote"; + } + + /*! Used as a heading for a list of Java class functions with package + * scope. + */ + virtual QCString trPackageMembers() + { + return "Funções do Pacote"; + } + + /*! Used as a heading for a list of static Java class functions with + * package scope. + */ + virtual QCString trStaticPackageMembers() + { + return "Funções Estáticas do Pacote"; + } + + /*! Used as a heading for a list of Java class variables with package + * scope. + */ + virtual QCString trPackageAttribs() + { + return "Atributos do Pacote"; + } + + /*! Used as a heading for a list of static Java class variables with + * package scope. + */ + virtual QCString trStaticPackageAttribs() + { + return "Atributos Estáticos do Pacote"; + } + }; #endif |