summaryrefslogtreecommitdiffstats
path: root/src/translator_cz.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2003-05-14 19:55:59 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2003-05-14 19:55:59 (GMT)
commit64200b5e975b19f38f9a68569b98c6f53e6fe4d9 (patch)
treed211455e0cef95445694e7630c63dd0e90d3f3a5 /src/translator_cz.h
parenta9f41d99f3651cd66850e9020bc3af7cb559306e (diff)
downloadDoxygen-64200b5e975b19f38f9a68569b98c6f53e6fe4d9.zip
Doxygen-64200b5e975b19f38f9a68569b98c6f53e6fe4d9.tar.gz
Doxygen-64200b5e975b19f38f9a68569b98c6f53e6fe4d9.tar.bz2
Release-1.3-20030514
Diffstat (limited to 'src/translator_cz.h')
-rw-r--r--src/translator_cz.h49
1 files changed, 45 insertions, 4 deletions
diff --git a/src/translator_cz.h b/src/translator_cz.h
index 0b2c5e0..c493e33 100644
--- a/src/translator_cz.h
+++ b/src/translator_cz.h
@@ -147,6 +147,9 @@
// 2002/10/15
// - The new trEvents() and trEventDocumentation() implemented.
//
+// 2003/04/28
+// - The five new methods "since 1.3" implemented.
+//
// Todo
// ----
// - The trReimplementedFromList() should pass the kind of the
@@ -165,8 +168,7 @@
// Windows version. The version which does not call the function is
// probably slightly faster.
-
-class TranslatorCzech : public TranslatorAdapter_1_3
+class TranslatorCzech : public Translator
{
private:
/*! The decode() inline assumes the source written in the
@@ -1553,12 +1555,51 @@ class TranslatorCzech : public TranslatorAdapter_1_3
*/
virtual QCString trEvents()
{
- return "Události";
+ return decode("Události");
}
/*! Header used for the documentation section of a class' events. */
virtual QCString trEventDocumentation()
{
- return "Dokumentace událostí";
+ return decode("Dokumentace událostí");
+ }
+
+//////////////////////////////////////////////////////////////////////////
+// new since 1.3
+//////////////////////////////////////////////////////////////////////////
+
+ /*! Used as a heading for a list of Java class types with package scope.
+ */
+ virtual QCString trPackageTypes()
+ {
+ return decode("Typy v balíku");
+ }
+ /*! Used as a heading for a list of Java class functions with package
+ * scope.
+ */
+ virtual QCString trPackageMembers()
+ {
+ return decode("Funkce v balíku");
+ }
+ /*! Used as a heading for a list of static Java class functions with
+ * package scope.
+ */
+ virtual QCString trStaticPackageMembers()
+ {
+ return decode("Statické funkce v balíku");
+ }
+ /*! Used as a heading for a list of Java class variables with package
+ * scope.
+ */
+ virtual QCString trPackageAttribs()
+ {
+ return decode("Atributy balíku");
+ }
+ /*! Used as a heading for a list of static Java class variables with
+ * package scope.
+ */
+ virtual QCString trStaticPackageAttribs()
+ {
+ return decode("Statické atributy balíku");
}
};