diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2001-02-11 18:24:41 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2001-02-11 18:24:41 (GMT) |
commit | d27070014e0f36246e7eec3899c7d55503b1a05a (patch) | |
tree | f98b164f024c28a0d6378b68142ed268239dba97 /src/translator_de.h | |
parent | f376c26e3dbe33a773a2f424df4b9c62c8c880ef (diff) | |
download | Doxygen-d27070014e0f36246e7eec3899c7d55503b1a05a.zip Doxygen-d27070014e0f36246e7eec3899c7d55503b1a05a.tar.gz Doxygen-d27070014e0f36246e7eec3899c7d55503b1a05a.tar.bz2 |
Release-1.2.5-20010211
Diffstat (limited to 'src/translator_de.h')
-rw-r--r-- | src/translator_de.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/translator_de.h b/src/translator_de.h index 633c984..dca9345 100644 --- a/src/translator_de.h +++ b/src/translator_de.h @@ -862,6 +862,45 @@ class TranslatorGerman : public Translator return "Legende"; } +////////////////////////////////////////////////////////////////////////// +// new since 1.2.0 +////////////////////////////////////////////////////////////////////////// + + /*! Used as a marker that is put before a test item */ + virtual QCString trTest() + { + return "Test"; + } + /*! Used as the header of the test list */ + virtual QCString trTestList() + { + return "Test-Liste"; + } + +////////////////////////////////////////////////////////////////////////// +// new since 1.2.1 +////////////////////////////////////////////////////////////////////////// + + /*! Used as a section header for KDE-2 IDL methods */ + virtual QCString trDCOPMethods() + { + return "DCOP Methoden"; + } + +////////////////////////////////////////////////////////////////////////// +// new since 1.2.2 +////////////////////////////////////////////////////////////////////////// + + /*! Used as a section header for IDL properties */ + virtual QCString trProperties() + { + return "Eigenschaften"; + } + /*! Used as a section header for IDL property documentation */ + virtual QCString trPropertyDocumentation() + { + return "Dokumentation der Eigenschaften"; + } }; |