diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-06-04 14:15:23 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-06-04 14:15:23 (GMT) |
commit | 88030e6b0efd9ac75cd61eedd75f5a38bf1713c7 (patch) | |
tree | 431650e77325cdf55ef9e710fd0ac1a9d87d3486 /src/translator_de.h | |
parent | 9c04d0ffef418ec6c771a0afa4679a4e508ba710 (diff) | |
download | Doxygen-88030e6b0efd9ac75cd61eedd75f5a38bf1713c7.zip Doxygen-88030e6b0efd9ac75cd61eedd75f5a38bf1713c7.tar.gz Doxygen-88030e6b0efd9ac75cd61eedd75f5a38bf1713c7.tar.bz2 |
Release-1.2.8
Diffstat (limited to 'src/translator_de.h')
-rw-r--r-- | src/translator_de.h | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/src/translator_de.h b/src/translator_de.h index f926ac6..b3d26dd 100644 --- a/src/translator_de.h +++ b/src/translator_de.h @@ -45,6 +45,10 @@ // - Removed implementation of latexBabelPackage(), trVerbatimText(), // trFiles(), added latexLanguageSupportCommand(). // +// 2001/05/25 Jens Seidel (jensseidel@users.sourceforge.net) +// - Update for "new since 1.2.7-20010524" version: +// removed trAuthors(), trAuthor(), added trAuthor(bool, bool) +// // Todo: // - translation of all Config_getBool("OPTIMIZE_OUTPUT_FOR_C") // strings (see translator.h) @@ -58,9 +62,7 @@ #ifndef TRANSLATOR_DE_H #define TRANSLATOR_DE_H -#include "translator.h" - -class TranslatorGerman : public TranslatorAdapterCVS +class TranslatorGerman : public Translator { public: @@ -398,10 +400,6 @@ class TranslatorGerman : public TranslatorAdapterCVS virtual QCString trEnumerationValues() { return "Aufzählungswerte"; } - /* This is used in man pages as the author section. */ - virtual QCString trAuthor() - { return "Autor"; } - /* This is used in the documentation of a file before the list of * documentation blocks for defines */ @@ -499,10 +497,6 @@ class TranslatorGerman : public TranslatorAdapterCVS virtual QCString trDate() { return "Datum"; } - /* this text is generated when the \author command is used. */ - virtual QCString trAuthors() - { return "Autor(en)"; } - /* this text is generated when the \return command is used. */ virtual QCString trReturns() { return "Rückgabe"; } @@ -1293,6 +1287,20 @@ class TranslatorGerman : public TranslatorAdapterCVS return result; } + ////////////////////////////////////////////////////////////////////////// + // new since 1.2.7-20010524 + ////////////////////////////////////////////////////////////////////////// + + /* This text is generated when the \author command is used and + * for the author section in man pages. + */ + virtual QCString trAuthor(bool, bool singular) + { + QCString result("Autor"); + if (!singular) result+="en"; + return result; + } + }; #endif |