diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-08-03 16:49:33 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-08-03 16:49:33 (GMT) |
commit | 6e8975abdb6b52477a5788bca969e13e467814dd (patch) | |
tree | 947221d2f202d586f7f386c57472cc941980963f /src/translator_de.h | |
parent | e305d80490e1fb2dc15eb9cf9ee13428936c8e16 (diff) | |
download | Doxygen-6e8975abdb6b52477a5788bca969e13e467814dd.zip Doxygen-6e8975abdb6b52477a5788bca969e13e467814dd.tar.gz Doxygen-6e8975abdb6b52477a5788bca969e13e467814dd.tar.bz2 |
Release-1.3.8-20040803
Diffstat (limited to 'src/translator_de.h')
-rw-r--r-- | src/translator_de.h | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/translator_de.h b/src/translator_de.h index 7af7cc8..6394f98 100644 --- a/src/translator_de.h +++ b/src/translator_de.h @@ -84,13 +84,16 @@ // - Updated a few strings which changed in CVS revision 1.22 // ("compound" vs. "class") // +// 2004/08/01 Jens Seidel (jensseidel@users.sourceforge.net) +// - Updated for "new since 1.3.8" version +// // Todo: // - see FIXME #ifndef TRANSLATOR_DE_H #define TRANSLATOR_DE_H -class TranslatorGerman : public TranslatorAdapter_1_3_8 +class TranslatorGerman : public Translator { public: @@ -156,7 +159,7 @@ class TranslatorGerman : public TranslatorAdapter_1_3_8 /*! this is the text of a link put after brief descriptions. */ virtual QCString trMore() - { return "Mehr..."; } + { return "Mehr ..."; } /*! put in the class documentation */ virtual QCString trListOfAllMembers() @@ -1604,6 +1607,18 @@ class TranslatorGerman : public TranslatorAdapter_1_3_8 { return "Treffer:"; } + +////////////////////////////////////////////////////////////////////////// +// new since 1.3.8 +////////////////////////////////////////////////////////////////////////// + + /*! This is used in HTML as the title of page with source code for file filename + */ + virtual QCString trSourceFile(QCString& filename) + { + return filename + " Quellcode"; + } + }; #endif |