summaryrefslogtreecommitdiffstats
path: root/src/translator_br.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/translator_br.h')
-rw-r--r--src/translator_br.h21
1 files changed, 10 insertions, 11 deletions
diff --git a/src/translator_br.h b/src/translator_br.h
index 01c5b9f..29a0e20 100644
--- a/src/translator_br.h
+++ b/src/translator_br.h
@@ -49,7 +49,7 @@
#ifndef TRANSLATOR_BR_H
#define TRANSLATOR_BR_H
-class TranslatorBrazilian : public Translator
+class TranslatorBrazilian : public TranslatorAdapter_1_8_19
{
public:
@@ -85,6 +85,11 @@ class TranslatorBrazilian : public Translator
return "\\usepackage[brazil]{babel}";
}
+ virtual QCString trISOLang()
+ {
+ return "pt-BR";
+ }
+
// --- Language translation methods -------------------
/*! used in the compound documentation before a list of related functions. */
@@ -262,6 +267,10 @@ class TranslatorBrazilian : public Translator
{
return "Aqui estão as estruturas de dados, uniões e suas respectivas descrições:";
}
+ else if (Config_getBool(OPTIMIZE_OUTPUT_SLICE))
+ {
+ return "Aqui estão as classes e suas respectivas descrições:";
+ }
else
{
return "Aqui estão as classes, estruturas, uniões e interfaces e suas respectivas descrições:";
@@ -2011,15 +2020,6 @@ class TranslatorBrazilian : public Translator
return "Documentação do método";
}
- /*! Used as the title of the design overview picture created for the
- * VHDL output.
- */
- virtual QCString trDesignOverview()
- {
- // I'm not sure how to accurately translate it
- return "Visão geral do design";
- }
-
//////////////////////////////////////////////////////////////////////////
// new since 1.8.4
//////////////////////////////////////////////////////////////////////////
@@ -2335,7 +2335,6 @@ class TranslatorBrazilian : public Translator
return "Dados Membros";
}
-//////////////////////////////////////////////////////////////////////////
};