diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2002-07-15 20:10:02 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2002-07-15 20:10:02 (GMT) |
commit | a2bf2ebcf009a45c53748f0c7f9182c017c0bcd9 (patch) | |
tree | b9a5247ad8e1b7ecda53346aa9e29e3e10167e5b /src/translator_cz.h | |
parent | 457ca5c291eddeb1a4cd667e20cd8d7dfc1d7f2e (diff) | |
download | Doxygen-a2bf2ebcf009a45c53748f0c7f9182c017c0bcd9.zip Doxygen-a2bf2ebcf009a45c53748f0c7f9182c017c0bcd9.tar.gz Doxygen-a2bf2ebcf009a45c53748f0c7f9182c017c0bcd9.tar.bz2 |
Release-1.2.17
Diffstat (limited to 'src/translator_cz.h')
-rw-r--r-- | src/translator_cz.h | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/translator_cz.h b/src/translator_cz.h index 74e2ac2..d5b5f27 100644 --- a/src/translator_cz.h +++ b/src/translator_cz.h @@ -138,6 +138,9 @@ // 2002/03/05 // - ... forgot to replace TranslatorAdapter... base class by Translator. // +// 2002/07/08 (my birthday! ;) +// - The new trRTFTableOfContents() implemented. +// // Todo // ---- // - The trReimplementedFromList() should pass the kind of the @@ -157,7 +160,7 @@ // probably slightly faster. -class TranslatorCzech : public TranslatorAdapter_1_2_16 +class TranslatorCzech : public Translator { private: /*! The decode() inline assumes the source written in the @@ -1502,7 +1505,19 @@ class TranslatorCzech : public TranslatorAdapter_1_2_16 */ virtual QCString trImplementedInList(int numEntries) { - return "Implementováno v "+trWriteList(numEntries)+"."; + return decode("Implementováno v "+trWriteList(numEntries)+"."); + } + +////////////////////////////////////////////////////////////////////////// +// new since 1.2.16 +////////////////////////////////////////////////////////////////////////// + + /*! used in RTF documentation as a heading for the Table + * of Contents. + */ + virtual QCString trRTFTableOfContents() + { + return "Obsah"; } }; |