diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-11-15 14:41:06 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-11-15 14:41:06 (GMT) |
commit | e952dab58265a6f21867e51f72d7d81ffe39e082 (patch) | |
tree | aa3814339507e0a58216fe75837a5f055b2405e2 /src/translator_sr.h | |
parent | c400bd439b3df09704e33df382ed7b08f80dd8ed (diff) | |
download | Doxygen-e952dab58265a6f21867e51f72d7d81ffe39e082.zip Doxygen-e952dab58265a6f21867e51f72d7d81ffe39e082.tar.gz Doxygen-e952dab58265a6f21867e51f72d7d81ffe39e082.tar.bz2 |
Release-1.3-rc1
Diffstat (limited to 'src/translator_sr.h')
-rw-r--r-- | src/translator_sr.h | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/translator_sr.h b/src/translator_sr.h index 3047274..dab7d15 100644 --- a/src/translator_sr.h +++ b/src/translator_sr.h @@ -272,7 +272,7 @@ private: result+="članova klasa"; } result+=" sa linkovima na "; - if (!extractAll) + if (extractAll) { if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) { @@ -331,7 +331,7 @@ private: /*! This is an introduction to the page with the list of related pages */ virtual QCString trRelatedPagesDescription() - { return decode( "Spisak svih slčinih stranica:" ); } + { return decode( "Spisak svih sličnih stranica:" ); } /*! This is an introduction to the page with the list of class/file groups */ virtual QCString trModulesDescription() @@ -945,11 +945,11 @@ private: { if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C")) { - return decode( "Član" ); + return decode( "Članovi" ); } else { - return decode( "Javni član" ); + return decode( "Javni članovi" ); } } virtual QCString trStaticPublicAttribs() @@ -1403,7 +1403,17 @@ private: return decode( "Sadržaj" ); } +////////////////////////////////////////////////////////////////////////// +// new since 1.2.17 +////////////////////////////////////////////////////////////////////////// + /*! Used as the header of the list of item that have been + * flagged deprecated + */ + virtual QCString trDeprecatedList() + { + return decode( "Spisak zastarelih funkcija članica" ); + } }; |