diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2012-04-08 14:16:03 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2012-04-08 14:16:03 (GMT) |
commit | 17ee30b327bf4f07f2411a50a46f5467456beacf (patch) | |
tree | ffd092e761289b417363c0562ceb9b93b88f19a4 /src/translator_en.h | |
parent | 0039b4f79ad7e628dcab61e1d82f26fb8fa11cfe (diff) | |
download | Doxygen-17ee30b327bf4f07f2411a50a46f5467456beacf.zip Doxygen-17ee30b327bf4f07f2411a50a46f5467456beacf.tar.gz Doxygen-17ee30b327bf4f07f2411a50a46f5467456beacf.tar.bz2 |
Release-1.8.0-20120408
Diffstat (limited to 'src/translator_en.h')
-rw-r--r-- | src/translator_en.h | 34 |
1 files changed, 32 insertions, 2 deletions
diff --git a/src/translator_en.h b/src/translator_en.h index 0dfde48..6c46913 100644 --- a/src/translator_en.h +++ b/src/translator_en.h @@ -421,7 +421,7 @@ class TranslatorEnglish : public Translator * list of defines */ virtual QCString trDefines() - { return "Defines"; } + { return "Macros"; } /*! This is used in the documentation of a file as a header before the * list of function prototypes @@ -463,7 +463,7 @@ class TranslatorEnglish : public Translator * documentation blocks for defines */ virtual QCString trDefineDocumentation() - { return "Define Documentation"; } + { return "Macro Definition Documentation"; } /*! This is used in the documentation of a file/namespace before the list * of documentation blocks for function prototypes @@ -1886,6 +1886,36 @@ class TranslatorEnglish : public Translator virtual QCString trDirDepGraph(const char *name) { return QCString("Directory dependency graph for ")+name+":"; } +////////////////////////////////////////////////////////////////////////// +// new since 1.8.0 +////////////////////////////////////////////////////////////////////////// + + /*! Detail level selector shown for hierarchical indices */ + virtual QCString trDetailLevel() + { return "detail level"; } + + /*! Section header for list of template parameters */ + virtual QCString trTemplateParameters() + { return "Template Parameters"; } + + /*! Used in dot graph when UML_LOOK is enabled and there are many fields */ + virtual QCString trAndMore(const QCString &number) + { return "and "+number+" more..."; } + + /*! Used file list for a Java enum */ + virtual QCString trEnumGeneratedFromFiles(bool single) + { QCString result = "The documentation for this enum was generated from the following file"; + if (!single) result += "s"; + result+=":"; + return result; + } + + /*! Header of a Java enum page (Java enums are represented as classes). */ + virtual QCString trEnumReference(const char *name) + { return QCString(name)+" Enum Reference"; } + +////////////////////////////////////////////////////////////////////////// + }; #endif |