diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2006-07-16 20:10:06 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2006-07-16 20:10:06 (GMT) |
commit | 243272688a4a3bc7921b7d05dda927f4adf3036c (patch) | |
tree | f167dcd5d5f9dcea2ade9e968e78c2a085f0f1fd /src/translator_br.h | |
parent | 9dbdf881dc5f0644777cc5732e7751325b508c91 (diff) | |
download | Doxygen-243272688a4a3bc7921b7d05dda927f4adf3036c.zip Doxygen-243272688a4a3bc7921b7d05dda927f4adf3036c.tar.gz Doxygen-243272688a4a3bc7921b7d05dda927f4adf3036c.tar.bz2 |
Release-1.4.7-20060716
Diffstat (limited to 'src/translator_br.h')
-rw-r--r-- | src/translator_br.h | 31 |
1 files changed, 22 insertions, 9 deletions
diff --git a/src/translator_br.h b/src/translator_br.h index 8363795..45cb083 100644 --- a/src/translator_br.h +++ b/src/translator_br.h @@ -12,9 +12,12 @@ * * Brazilian Portuguese version by * Fabio "FJTC" Jun Takada Chino <jun-chino at uol.com.br> - * Version: 1.4.1 (2005/03/20) + * Version: 1.4.6 (2006/06/26) * * History: + * 1.4.6 + * - trCallerGraph() added. + * - trEnumerationValueDocumentation() added. * 1.4.1 * - Method trOverloadText() added. * 1.3.9 @@ -36,7 +39,7 @@ #ifndef TRANSLATOR_BR_H #define TRANSLATOR_BR_H -class TranslatorBrazilian : public TranslatorAdapter_1_4_6 +class TranslatorBrazilian : public Translator { public: @@ -490,12 +493,6 @@ class TranslatorBrazilian : public TranslatorAdapter_1_4_6 { return "Enumerações"; } /*! This is used in the documentation of a file/namespace before the list - * of documentation blocks for enumeration values - */ - virtual QCString trEnumerationValueDocumentation() - { return "Valores enumerados"; } - - /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for functions */ virtual QCString trFunctionDocumentation() @@ -1612,6 +1609,22 @@ class TranslatorBrazilian : public TranslatorAdapter_1_4_6 "Ele difere do método acima apenas na lista de " "argumentos que devem ser utilizados."; } - + +////////////////////////////////////////////////////////////////////////// +// new since 1.4.6 +////////////////////////////////////////////////////////////////////////// + + /*! This is used to introduce a caller (or called-by) graph */ + virtual QCString trCallerGraph() + { + return "Este é o diagrama de chamadas para esta função:"; + } + + /*! This is used in the documentation of a file/namespace before the list + * of documentation blocks for enumeration values + */ + virtual QCString trEnumerationValueDocumentation() + { return "Documentação da enumeração"; } + }; #endif |