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.h24
1 files changed, 23 insertions, 1 deletions
diff --git a/src/translator_br.h b/src/translator_br.h
index 5fa1565..39dc859 100644
--- a/src/translator_br.h
+++ b/src/translator_br.h
@@ -15,6 +15,8 @@
* Thanks to Jorge Ramos, Fernando Carijo and others for their contributions.
*
* History:
+ * 20110628:
+ * - Updated to 1.7.5;
* 20100531:
* - Updated to 1.6.3;
* 20091218:
@@ -32,7 +34,7 @@
#ifndef TRANSLATOR_BR_H
#define TRANSLATOR_BR_H
-class TranslatorBrazilian : public TranslatorAdapter_1_7_5
+class TranslatorBrazilian : public Translator
{
public:
@@ -1862,5 +1864,25 @@ class TranslatorBrazilian : public TranslatorAdapter_1_7_5
}
return sdate;
}
+
+//////////////////////////////////////////////////////////////////////////
+// new since 1.7.5
+//////////////////////////////////////////////////////////////////////////
+
+ /*! Header for the page with bibliographic citations */
+ virtual QCString trCiteReferences()
+ { return "Referências Bibliográficas"; }
+
+ /*! Text for copyright paragraph */
+ virtual QCString trCopyright()
+ {
+ // Note: I will left it as is because "Direitos autorais" may not fit
+ // in the text.
+ return "Copyright";
+ }
+
+ /*! Header for the graph showing the directory dependencies */
+ virtual QCString trDirDepGraph(const char *name)
+ { return QCString("Grafo de dependências do diretório ")+name+":"; }
};
#endif