summaryrefslogtreecommitdiffstats
path: root/src/translator_cz.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2001-02-26 19:01:28 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2001-02-26 19:01:28 (GMT)
commit8fd138270b7f599ee8e67894c2f1c6026c1ceb3d (patch)
tree2585a0e63de09add4d7d9d4515ad676b706b1f87 /src/translator_cz.h
parentba755dd4450d68ee0d47f6d465927b63e6dc3093 (diff)
downloadDoxygen-8fd138270b7f599ee8e67894c2f1c6026c1ceb3d.zip
Doxygen-8fd138270b7f599ee8e67894c2f1c6026c1ceb3d.tar.gz
Doxygen-8fd138270b7f599ee8e67894c2f1c6026c1ceb3d.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