diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-02-03 10:42:52 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-02-03 10:42:52 (GMT) |
commit | e1fea2781d4928ce1125933b073e19e9768ddf51 (patch) | |
tree | c6e72204c112ad8646d737990b93aa290c61c34c /src/translator_hr.h | |
parent | 8efa01a96e2bac6ecc718da17b3fa1f29c9afccf (diff) | |
download | Doxygen-e1fea2781d4928ce1125933b073e19e9768ddf51.zip Doxygen-e1fea2781d4928ce1125933b073e19e9768ddf51.tar.gz Doxygen-e1fea2781d4928ce1125933b073e19e9768ddf51.tar.bz2 |
Release-1.2.13-20020203
Diffstat (limited to 'src/translator_hr.h')
-rw-r--r-- | src/translator_hr.h | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/src/translator_hr.h b/src/translator_hr.h index 603d766..0783a5d 100644 --- a/src/translator_hr.h +++ b/src/translator_hr.h @@ -44,11 +44,13 @@ // - Added strings for 1.2.11 // - better output for C documentation (trCompoundMembersDescription(), trClassDocumentation()) // +// 2001/11/13 +// - Added strings for 1.2.13 #ifndef TRANSLATOR_HR_H #define TRANSLATOR_HR_H -class TranslatorCroatian : public TranslatorAdapter_1_2_13 +class TranslatorCroatian : public Translator { private: /*! to avoid macro redefinition from translator_cz.h */ @@ -1019,6 +1021,25 @@ class TranslatorCroatian : public TranslatorAdapter_1_2_13 { return "Reference"; } +////////////////////////////////////////////////////////////////////////// +// new since 1.2.13 +////////////////////////////////////////////////////////////////////////// + + /*! used in member documentation blocks to produce a list of + * members that are implemented by this one. + */ + virtual QCString trImplementedFromList(int numEntries) + { + return "Implementira "+trWriteList(numEntries)+"."; + } + + /*! used in member documentation blocks to produce a list of + * all members that implementation this member. + */ + virtual QCString trImplementedInList(int numEntries) + { + return "Implementirano u "+trWriteList(numEntries)+"."; + } }; #endif |