summaryrefslogtreecommitdiffstats
path: root/src/translator_sr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/translator_sr.h')
-rw-r--r--src/translator_sr.h18
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" );
+ }
};