summaryrefslogtreecommitdiffstats
path: root/src/translator_de.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2001-06-04 14:15:23 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2001-06-04 14:15:23 (GMT)
commite90eb41e09adeb8970ef9a64fb8f163f068d7b17 (patch)
tree431650e77325cdf55ef9e710fd0ac1a9d87d3486 /src/translator_de.h
parentcd76bda7e377a14bd6b3d321425cf462a46a3f75 (diff)
downloadDoxygen-e90eb41e09adeb8970ef9a64fb8f163f068d7b17.zip
Doxygen-e90eb41e09adeb8970ef9a64fb8f163f068d7b17.tar.gz
Doxygen-e90eb41e09adeb8970ef9a64fb8f163f068d7b17.tar.bz2
Release-1.2.8
Diffstat (limited to 'src/translator_de.h')
-rw-r--r--src/translator_de.h30
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