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.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/translator_cz.h b/src/translator_cz.h
index 987a8ed..76b6919 100644
--- a/src/translator_cz.h
+++ b/src/translator_cz.h
@@ -131,6 +131,9 @@
// 2001/11/06
// - trReferences() implemented.
//
+// 2002/01/23
+// - trImplementedFromList() and trImplementedInList() implemented
+// (new since 1.2.13)
//
// Todo
// ----
@@ -1479,6 +1482,26 @@ class TranslatorCzech : public TranslatorAdapter_1_2_13
return decode("Odkazuje se na");
}
+//////////////////////////////////////////////////////////////////////////
+// new since 1.2.13
+//////////////////////////////////////////////////////////////////////////
+
+ /*! used in member documentation blocks to produce a list of
+ * members that are implemented by this one.
+ */
+ virtual QCString trImplementedFromList(int numEntries)
+ {
+ return "Implementuje "+trWriteList(numEntries)+".";
+ }
+
+ /*! used in member documentation blocks to produce a list of
+ * all members that implement this member.
+ */
+ virtual QCString trImplementedInList(int numEntries)
+ {
+ return "Implementováno v "+trWriteList(numEntries)+".";
+ }
+
};
#endif // TRANSLATOR_CZ_H