summaryrefslogtreecommitdiffstats
path: root/src/translator_cz.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2001-02-26 19:01:28 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2001-02-26 19:01:28 (GMT)
commitef3faee6f1fd013ae63914140ea7ff59a28199c1 (patch)
tree2585a0e63de09add4d7d9d4515ad676b706b1f87 /src/translator_cz.h
parent69fbf29b9b2be1bdf9132adb799f31ab343a642e (diff)
downloadDoxygen-ef3faee6f1fd013ae63914140ea7ff59a28199c1.zip
Doxygen-ef3faee6f1fd013ae63914140ea7ff59a28199c1.tar.gz
Doxygen-ef3faee6f1fd013ae63914140ea7ff59a28199c1.tar.bz2
Release-1.2.5-20010226
Diffstat (limited to 'src/translator_cz.h')
-rw-r--r--src/translator_cz.h26
1 files changed, 25 insertions, 1 deletions
diff --git a/src/translator_cz.h b/src/translator_cz.h
index a3e5606..60fa31f 100644
--- a/src/translator_cz.h
+++ b/src/translator_cz.h
@@ -85,6 +85,14 @@
// I tried my best to guess the Czech terminology for the Java.
// Let me know if some wording should be changed/improved.
//
+// 2001/02/15 (Petr Prikryl)
+// - trMore() now returns only "..." (ellipsis). The Czech replacement
+// of "(more)" was too much visible. The previous "(...)" did not
+// look well.
+//
+// 2001/02/26 (Petr Prikryl)
+// - Update for "new since 1.2.5" version (trBug(), trBugList()).
+//
// Notices:
// --------
// The conditional compilation ensures or the neutral functionality
@@ -166,7 +174,7 @@ class TranslatorCzech : public Translator
/*! this is the text of a link put after brief descriptions. */
virtual QCString trMore()
- { return Decode("(...)"); }
+ { return Decode("..."); }
/*! put in the class documentation */
virtual QCString trListOfAllMembers()
@@ -1182,6 +1190,22 @@ class TranslatorCzech : public Translator
{
return Decode("Hodnota:");
}
+
+//////////////////////////////////////////////////////////////////////////
+// new since 1.2.5
+//////////////////////////////////////////////////////////////////////////
+
+ /*! Used as a marker that is put before a \bug item */
+ virtual QCString trBug()
+ {
+ return Decode("Chyba");
+ }
+ /*! Used as the header of the bug list */
+ virtual QCString trBugList()
+ {
+ return Decode("Seznam chyb");
+ }
+
};
#endif // TRANSLATOR_CZ_H