summaryrefslogtreecommitdiffstats
path: root/src/translator_de.h
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2017-12-27 19:12:07 (GMT)
committerJoe George <joe@zeroc.com>2018-10-22 19:21:42 (GMT)
commit3a97099d5e6afd298486f219694a7fb5eff67fea (patch)
tree979abad6dd502a4d28dac1f29a1bce9e4bb3b336 /src/translator_de.h
parentd94c10574f44c10ff0df9ce24c09cb6fcaac37c0 (diff)
downloadDoxygen-3a97099d5e6afd298486f219694a7fb5eff67fea.zip
Doxygen-3a97099d5e6afd298486f219694a7fb5eff67fea.tar.gz
Doxygen-3a97099d5e6afd298486f219694a7fb5eff67fea.tar.bz2
Added *.ice files as a recognized file type.
Added a Slice-optimized output mode.
Diffstat (limited to 'src/translator_de.h')
-rw-r--r--src/translator_de.h136
1 files changed, 134 insertions, 2 deletions
diff --git a/src/translator_de.h b/src/translator_de.h
index 8e6ec2c..37d09d0 100644
--- a/src/translator_de.h
+++ b/src/translator_de.h
@@ -133,7 +133,7 @@
// 2017/10/12 Arnd Weber (arnd dot weber at bafg dot de)
// Beatrix Konz
// - Updated for 1.8.13
-// - Resynced trMemberDataDocumentation() and trFileMembers() to include the
+// - Resynced trMemberDataDocumentation() and trFileMembers() to include the
// boolean switch OPTIMIZE_OUTPUT_FOR_C
// - Replaced "\t" by " "
//
@@ -1995,7 +1995,7 @@ class TranslatorGerman : public Translator
/*! Used file list for a Java enum */
virtual QCString trEnumGeneratedFromFiles(bool single)
{ QCString result = "Die Dokumentation für diesen enum wurde aus ";
- if (single)
+ if (single)
result += "der folgenden Datei";
else
result += "den folgenden Dateien";
@@ -2254,6 +2254,138 @@ class TranslatorGerman : public Translator
virtual QCString trCustomReference(const char *name)
{ return QCString(name)+"-Referenz"; }
+ /* Slice */
+ 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";
+ }
+
//////////////////////////////////////////////////////////////////////////
};