summaryrefslogtreecommitdiffstats
path: root/src/translator_br.h
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2018-11-02 15:18:57 (GMT)
committerJoe George <joe@zeroc.com>2018-11-02 15:51:20 (GMT)
commit1a8ea5cd42a1a7c397c21eb8410244608769be46 (patch)
tree61bc9909ecb04dfc056303f049eb2a13e309f920 /src/translator_br.h
parent846cde72cbd7b3f69393391adca19d009fecb8c3 (diff)
downloadDoxygen-1a8ea5cd42a1a7c397c21eb8410244608769be46.zip
Doxygen-1a8ea5cd42a1a7c397c21eb8410244608769be46.tar.gz
Doxygen-1a8ea5cd42a1a7c397c21eb8410244608769be46.tar.bz2
Remove non-english translations
Diffstat (limited to 'src/translator_br.h')
-rw-r--r--src/translator_br.h146
1 files changed, 4 insertions, 142 deletions
diff --git a/src/translator_br.h b/src/translator_br.h
index a8b6859..c2d079a 100644
--- a/src/translator_br.h
+++ b/src/translator_br.h
@@ -14,7 +14,7 @@
* Maintainer:
* Fabio "FJTC" Jun Takada Chino <fjtc at brokenbits dot com dot br>
* Collaborators:
- * Emerson Ferreira <nuskorpios at gmail dot com>
+ * Emerson Ferreira <nuskorpios at gmail dot com>
* Thanks to Jorge Ramos, Fernando Carijo and others for their contributions.
*
* History:
@@ -47,7 +47,7 @@
#ifndef TRANSLATOR_BR_H
#define TRANSLATOR_BR_H
-class TranslatorBrazilian : public Translator
+class TranslatorBrazilian : public TranslatorAdapter_1_8_15
{
public:
@@ -610,7 +610,7 @@ class TranslatorBrazilian : public Translator
{
QCString result="Referência";
if (isTemplate) result+=" do <em>Template</em>";
- if (compType == ClassDef::Protocol)
+ if (compType == ClassDef::Protocol)
{
result+=" do ";
}
@@ -836,7 +836,7 @@ class TranslatorBrazilian : public Translator
* documentation. It should be an abbreviation of the word page.
*/
virtual QCString trPageAbbreviation()
- {
+ {
// Decidi mudar de página para "p." para ficar mais compacto.
return "p.";
}
@@ -2200,144 +2200,6 @@ class TranslatorBrazilian : public Translator
}
virtual QCString trCustomReference(const char *name)
{ return "Referência de " + QCString(name); }
-
-//////////////////////////////////////////////////////////////////////////
-// new since 1.8.14
-//////////////////////////////////////////////////////////////////////////
-
- virtual QCString trConstants()
- {
- return "Constants";
- }
- virtual QCString trConstantDocumentation()
- {
- return "Constant Documentation";
- }
- virtual QCString trSequences()
- {
- return "Sequences";
- }
- virtual QCString trSequenceDocumentation()
- {
- return "Sequence Documentation";
- }
- virtual QCString trDictionaries()
- {
- return "Dictionaries";
- }
- virtual QCString trDictionaryDocumentation()
- {
- return "Dictionary Documentation";
- }
- virtual QCString trSliceInterfaces()
- {
- return "Interfaces";
- }
- virtual QCString trInterfaceIndex()
- {
- return "Interface Index";
- }
- virtual QCString trInterfaceList()
- {
- return "Interface List";
- }
- virtual QCString trInterfaceListDescription()
- {
- return "Here are the interfaces with brief descriptions:";
- }
- virtual QCString trInterfaceHierarchy()
- {
- return "Interface Hierarchy";
- }
- virtual QCString trInterfaceHierarchyDescription()
- {
- return "This inheritance list is sorted roughly, but not completely, alphabetically:";
- }
- virtual QCString trInterfaceDocumentation()
- {
- return "Interface Documentation";
- }
- virtual QCString trStructs()
- {
- return "Structs";
- }
- virtual QCString trStructIndex()
- {
- return "Struct Index";
- }
- virtual QCString trStructList()
- {
- return "Struct List";
- }
- virtual QCString trStructListDescription()
- {
- return "Here are the structs with brief descriptions:";
- }
- virtual QCString trStructDocumentation()
- {
- return "Struct Documentation";
- }
- virtual QCString trExceptionIndex()
- {
- return "Exception Index";
- }
- virtual QCString trExceptionList()
- {
- return "Exception List";
- }
- virtual QCString trExceptionListDescription()
- {
- return "Here are the exceptions with brief descriptions:";
- }
- virtual QCString trExceptionHierarchy()
- {
- return "Exception Hierarchy";
- }
- virtual QCString trExceptionHierarchyDescription()
- {
- return "This inheritance list is sorted roughly, but not completely, alphabetically:";
- }
- virtual QCString trExceptionDocumentation()
- {
- return "Exception Documentation";
- }
- virtual QCString trCompoundReferenceSlice(const char *clName, ClassDef::CompoundType compType, bool isLocal)
- {
- QCString result=(QCString)clName;
- if (isLocal) result+=" Local";
- switch(compType)
- {
- case ClassDef::Class: result+=" Class"; break;
- case ClassDef::Struct: result+=" Struct"; break;
- case ClassDef::Union: result+=" Union"; break;
- case ClassDef::Interface: result+=" Interface"; break;
- case ClassDef::Protocol: result+=" Protocol"; break;
- case ClassDef::Category: result+=" Category"; break;
- case ClassDef::Exception: result+=" Exception"; break;
- default: break;
- }
- result+=" Reference";
- return result;
- }
- virtual QCString trOperations()
- {
- return "Operations";
- }
- virtual QCString trOperationDocumentation()
- {
- return "Operation Documentation";
- }
- virtual QCString trDataMembers()
- {
- return "Data Members";
- }
- virtual QCString trDataMemberDocumentation()
- {
- return "Data Member Documentation";
- }
-
-//////////////////////////////////////////////////////////////////////////
-
};
#endif