summaryrefslogtreecommitdiffstats
path: root/src/translator_hr.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2001-02-11 18:24:41 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2001-02-11 18:24:41 (GMT)
commit863353b89b228b87789e6d6c9257605acd796fff (patch)
treef98b164f024c28a0d6378b68142ed268239dba97 /src/translator_hr.h
parent1b90a1cf58b6b94d00e28d8212828956e8f9d177 (diff)
downloadDoxygen-863353b89b228b87789e6d6c9257605acd796fff.zip
Doxygen-863353b89b228b87789e6d6c9257605acd796fff.tar.gz
Doxygen-863353b89b228b87789e6d6c9257605acd796fff.tar.bz2
Release-1.2.5-20010211
Diffstat (limited to 'src/translator_hr.h')
-rw-r--r--src/translator_hr.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/translator_hr.h b/src/translator_hr.h
index 20ed696..a32e2fa 100644
--- a/src/translator_hr.h
+++ b/src/translator_hr.h
@@ -28,6 +28,9 @@
// - Removed unneeeded decode() calls
// - Changed some CS terminology
//
+// 2001/01/22
+// - Added strings from 1.2.4
+//
#ifndef TRANSLATOR_HR_H
#define TRANSLATOR_HR_H
@@ -749,6 +752,65 @@ class TranslatorCroatian : public Translator
{
return "DCOP metode";
}
+//////////////////////////////////////////////////////////////////////////
+// new since 1.2.2
+//////////////////////////////////////////////////////////////////////////
+
+ /*! Used as a section header for IDL properties */
+ virtual QCString trProperties()
+ {
+ return "Svojstva (property)";
+ }
+ /*! Used as a section header for IDL property documentation */
+ virtual QCString trPropertyDocumentation()
+ {
+ return "Dokumentacija svojstava";
+ }
+
+//////////////////////////////////////////////////////////////////////////
+// new since 1.2.4
+//////////////////////////////////////////////////////////////////////////
+
+ /*! Used for Java interfaces in the summary section of Java packages */
+ virtual QCString trInterfaces()
+ {
+ return decode("Sučelja (interfaces)");
+ }
+ /*! Used for Java classes in the summary section of Java packages */
+ virtual QCString trClasses()
+ {
+ return "Klase";
+ }
+ /*! Used as the title of a Java package */
+ virtual QCString trPackage(const char *name)
+ {
+ return decode((QCString)"Paket "+name);
+ }
+ /*! Title of the package index page */
+ virtual QCString trPackageList()
+ {
+ return "Lista paketa";
+ }
+ /*! The description of the package index page */
+ virtual QCString trPackageListDescription()
+ {
+ return "Paketi s kratkim opisom (ukoliko postoji):";
+ }
+ /*! The link name in the Quick links header for each page */
+ virtual QCString trPackages()
+ {
+ return "Paketi";
+ }
+ /*! Used as a chapter title for Latex & RTF output */
+ virtual QCString trPackageDocumentation()
+ {
+ return "Dokumentacija paketa";
+ }
+ /*! Text shown before a multi-line define */
+ virtual QCString trDefineValue()
+ {
+ return "Vrijednost:";
+ }
};
#endif