summaryrefslogtreecommitdiffstats
path: root/src/translator_en.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-11-17 15:02:52 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2018-11-17 15:02:52 (GMT)
commit8ff99363c2f6b3226fe5b57f38ae1d4805dca22c (patch)
tree61f48ffd1ddae2b718ecbb5cd393bf2c985ccd83 /src/translator_en.h
parent6d0cd13b0afabaea9dfbe0a9e354b9e278bc15de (diff)
parent9d35bd4f5865a63f3daacc8d4ab613fb4743bb72 (diff)
downloadDoxygen-8ff99363c2f6b3226fe5b57f38ae1d4805dca22c.zip
Doxygen-8ff99363c2f6b3226fe5b57f38ae1d4805dca22c.tar.gz
Doxygen-8ff99363c2f6b3226fe5b57f38ae1d4805dca22c.tar.bz2
Merge branch 'master' of https://github.com/zeroc-ice/doxygen into zeroc-ice-master
Diffstat (limited to 'src/translator_en.h')
-rw-r--r--src/translator_en.h136
1 files changed, 136 insertions, 0 deletions
diff --git a/src/translator_en.h b/src/translator_en.h
index d12621e..400e59c 100644
--- a/src/translator_en.h
+++ b/src/translator_en.h
@@ -253,6 +253,10 @@ class TranslatorEnglish : public Translator
{
return "Here are the data structures with brief descriptions:";
}
+ else if (Config_getBool(OPTIMIZE_OUTPUT_SLICE))
+ {
+ return "Here are the classes with brief descriptions:";
+ }
else
{
return "Here are the classes, structs, "
@@ -2117,6 +2121,138 @@ class TranslatorEnglish : public Translator
virtual QCString trCustomReference(const char *name)
{ return QCString(name)+" Reference"; }
+ /* 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";
+ }
+
//////////////////////////////////////////////////////////////////////////
};