summaryrefslogtreecommitdiffstats
path: root/src/translator_cz.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-05-20 08:28:56 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-05-20 09:00:01 (GMT)
commit2099b0bb692257e2f3b55c84b87e76864e473f8c (patch)
tree383c683c44861e418fbf83de7dc8420173f96b42 /src/translator_cz.h
parent8fc085331be87d732c7652c7dd3c6b46b31fa30e (diff)
downloadDoxygen-2099b0bb692257e2f3b55c84b87e76864e473f8c.zip
Doxygen-2099b0bb692257e2f3b55c84b87e76864e473f8c.tar.gz
Doxygen-2099b0bb692257e2f3b55c84b87e76864e473f8c.tar.bz2
Fixed translation base class and updated Czech translation
Diffstat (limited to 'src/translator_cz.h')
-rw-r--r--src/translator_cz.h59
1 files changed, 58 insertions, 1 deletions
diff --git a/src/translator_cz.h b/src/translator_cz.h
index 31d645f..6fb4259 100644
--- a/src/translator_cz.h
+++ b/src/translator_cz.h
@@ -20,6 +20,7 @@
// Updates:
// --------
+// 2013/04/11 - Updates for "new since 1.8.4".
// 2012/07/31 - Updates for "new since 1.8.2".
// 2012/04/10 - Updates for "new since 1.8.0".
// 2011/07/28 - Updates for "new since 1.7.5".
@@ -84,7 +85,7 @@
// something else. It is difficult to find the general translation
// for all kinds in the Czech language.
-class TranslatorCzech : public TranslatorAdapter_1_8_2
+class TranslatorCzech : public Translator
{
public:
// --- Language control methods -------------------
@@ -2032,6 +2033,62 @@ class TranslatorCzech : public TranslatorAdapter_1_8_2
}
//////////////////////////////////////////////////////////////////////////
+// new since 1.8.4
+//////////////////////////////////////////////////////////////////////////
+
+ /** old style UNO IDL services: implemented interfaces */
+ virtual QCString trInterfaces()
+ { return "Exportovaná rozhraní"; }
+
+ /** old style UNO IDL services: inherited services */
+ virtual QCString trServices()
+ { return "Začleněné služby"; }
+
+ /** UNO IDL constant groups */
+ virtual QCString trConstantGroups()
+ { return "Konstantní skupiny"; }
+
+ /** UNO IDL constant groups */
+ virtual QCString trConstantGroupReference(const char *namespaceName)
+ {
+ QCString result="Konstantní skupiny z ";
+ result += namespaceName;
+ return result;
+ }
+ /** UNO IDL service page title */
+ virtual QCString trServiceReference(const char *sName)
+ {
+ QCString result="Popis služby ";
+ result += sName;
+ return result;
+ }
+ /** UNO IDL singleton page title */
+ virtual QCString trSingletonReference(const char *sName)
+ {
+ QCString result="Popis singletonu ";
+ result += sName;
+ return result;
+ }
+ /** UNO IDL service page */
+ virtual QCString trServiceGeneratedFromFiles(bool single)
+ {
+ // single is true implies a single file
+ QCString result="Dokumentace k této službě byla generována ";
+ if (single) result+="z následujícího souboru:";
+ else result+="z následujících souborů:";
+ return result;
+ }
+ /** UNO IDL singleton page */
+ virtual QCString trSingletonGeneratedFromFiles(bool single)
+ {
+ // single is true implies a single file
+ QCString result="Dokumentace k tomuto singletonu byla generována ";
+ if (single) result+="z následujícího souboru:";
+ else result+="z následujících souborů:";
+ return result;
+ }
+
+//////////////////////////////////////////////////////////////////////////
};