summaryrefslogtreecommitdiffstats
path: root/src/translator_cz.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/translator_cz.h')
-rw-r--r--src/translator_cz.h19
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";
}
};