summaryrefslogtreecommitdiffstats
path: root/src/translator_hr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/translator_hr.h')
-rw-r--r--src/translator_hr.h46
1 files changed, 44 insertions, 2 deletions
diff --git a/src/translator_hr.h b/src/translator_hr.h
index 2863632..e0b81c1 100644
--- a/src/translator_hr.h
+++ b/src/translator_hr.h
@@ -34,9 +34,9 @@
#ifndef TRANSLATOR_HR_H
#define TRANSLATOR_HR_H
-#include "translator.h"
+#include "translator_adapter.h"
-class TranslatorCroatian : public Translator
+class TranslatorCroatian : public TranslatorAdapter_1_2_6
{
private:
/*! to avoid macro redefinition from translator_cz.h */
@@ -419,6 +419,18 @@ class TranslatorCroatian : public Translator
{ return "Dokumentacija namespace-a"; }
//////////////////////////////////////////////////////////////////////////
+// new since 0.49-990522
+//////////////////////////////////////////////////////////////////////////
+
+ /*! This is used in the documentation before the list of all
+ * namespaces in a file.
+ */
+ QCString trNamespaces()
+ {
+ return "Namespaces";
+ }
+
+//////////////////////////////////////////////////////////////////////////
// new since 0.49-990728
//////////////////////////////////////////////////////////////////////////
@@ -801,6 +813,36 @@ class TranslatorCroatian : public Translator
{
return "Vrijednost:";
}
+
+ //////////////////////////////////////////////////////////////////////////
+ // new since 1.2.5
+ //////////////////////////////////////////////////////////////////////////
+
+ /*! Used as a marker that is put before a \\bug item */
+ virtual QCString trBug()
+ {
+ return decode("Greška");
+ }
+ /*! Used as the header of the bug list */
+ virtual QCString trBugList()
+ {
+ return decode("Popis grešaka");
+ }
+
+ //////////////////////////////////////////////////////////////////////////
+ // new since 1.2.6
+ //////////////////////////////////////////////////////////////////////////
+
+ /*! Used as ansicpg for RTF file */
+ virtual QCString trRTFansicp()
+ {
+ return "1252";
+ }
+ /*! Used as ansicpg for RTF fcharset */
+ virtual QCString trRTFCharSet()
+ {
+ return "238";
+ }
};
#endif