Doxygen
translator_sr.h
浏览该文件的文档.
1 /******************************************************************************
2  *
3  *
4  *
5  * Copyright (C) 1997-2015 by Dimitri van Heesch.
6  *
7  * Permission to use, copy, modify, and distribute this software and its
8  * documentation under the terms of the GNU General Public License is hereby
9  * granted. No representations are made about the suitability of this software
10  * for any purpose. It is provided "as is" without express or implied warranty.
11  * See the GNU General Public License for more details.
12  *
13  * Documents produced by Doxygen are derivative works derived from the
14  * input used in their production; they are not affected by this license.
15  *
16  */
17 
18 #ifndef TRANSLATOR_SR_H
19 #define TRANSLATOR_SR_H
20 
21 // translation by Dejan D. M. Milosavljevic <dmilos@email.com>;<dmilosx@ptt.yu>;<office@ddmrm.com>
22 // // 10x 2 Ivana Miletic for grammatical consultation.
23 
24 // UTF-8 patch by Nenad Bulatovic <buletina@gmail.com>
25 // translation update by Andrija M. Bosnjakovic <andrija@etf.bg.ac.yu>
26 
28 {
29  public:
30 
31  // --- Language control methods -------------------
32 
33  /*! Used for identification of the language. The identification
34  * should not be translated. It should be replaced by the name
35  * of the language in English using lower-case characters only
36  * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
37  * the identification used in language.cpp.
38  */
39  virtual QCString idLanguage()
40  { return "serbian"; }
41 
42  /*! Used to get the LaTeX command(s) for the language support.
43  * This method should return string with commands that switch
44  * LaTeX to the desired language. For example
45  * <pre>"\\usepackage[german]{babel}\n"
46  * </pre>
47  * or
48  * <pre>"\\usepackage{polski}\n"
49  * "\\usepackage[latin2]{inputenc}\n"
50  * "\\usepackage[T1]{fontenc}\n"
51  * </pre>
52  *
53  * The English LaTeX does not use such commands. Because of this
54  * the empty string is returned in this implementation.
55  */
57  {
58  QCString result="\\usepackage[serbian]{babel}\n";
59  return result;
60  }
61  virtual QCString trISOLang()
62  {
63  return "sr-Latn";
64  }
65 
66  // --- Language translation methods -------------------
67 
68  /*! used in the compound documentation before a list of related functions. */
70  //! Čini se da je ovako manje loše nego "Povezane funkcije",
71  //! što uopšte ne izgleda dobro jer ta kartica sadrži prijatelje i globalne funkcije
72  { return "Relevantne funkcije"; }
73 
74  /*! subscript for the related functions. */
76  { return "(To nisu funkcije članice.)"; }
77 
78  /*! header that is put before the detailed description of files, classes and namespaces. */
80  { return "Opširniji opis"; }
81 
82  /*! header that is put before the list of typedefs. */
84  { return "Dokumentacija unutrašnjih definicija tipa"; }
85 
86  /*! header that is put before the list of enumerations. */
88  //! Ovo je u skladu sa "unutrašnja klasa" što se može videti u knjizi.
89  { return "Dokumentacija unutrašnjih nabrajanja"; }
90 
91  /*! header that is put before the list of member functions. */
93  { return "Dokumentacija funkcija članica"; }
94 
95  /*! header that is put before the list of member attributes. */
97  {
98  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
99  {
100  return "Dokumentacija polja";
101  }
102  else
103  {
104  return "Dokumentacija atributa";
105  }
106  }
107 
108  /*! this is the text of a link put after brief descriptions. */
109  virtual QCString trMore()
110  { return "Još..."; }
111 
112  /*! put in the class documentation */
113  virtual QCString trListOfAllMembers()
114  { return "Spisak svih članova"; }
115 
116  /*! used as the title of the "list of all members" page of a class */
117  virtual QCString trMemberList()
118  { return "Spisak članova"; }
119 
120  /*! this is the first part of a sentence that is followed by a class name */
122  { return "Ovo je spisak svih članova "; }
123 
124  /*! this is the remainder of the sentence after the class name */
126  { return ", uključujući nasleđene članove."; }
127 
128  /*! this is put at the author sections at the bottom of man pages.
129  * parameter s is name of the project name.
130  */
131  virtual QCString trGeneratedAutomatically(const QCString &s)
132  { QCString result="Napravljeno automatski korišćenjem alata Doxygen";
133  if (!s.isEmpty()) result+=(QCString)" za projekat " + s;
134  result+=" od izvornog koda.";
135  return result;
136  }
137 
138  /*! put after an enum name in the list of all members */
139  virtual QCString trEnumName()
140  { return "ime nabrajanja "; }
141 
142  /*! put after an enum value in the list of all members */
143  virtual QCString trEnumValue()
144  { return "vrednost nabrojane konstante"; }
145 
146  /*! put after an undocumented member in the list of all members */
147  virtual QCString trDefinedIn()
148  { return "definicija u"; }
149 
150  // quick reference sections
151 
152  /*! This is put above each page as a link to the list of all groups of
153  * compounds or files (see the \\group command).
154  */
155  virtual QCString trModules()
156  { return "Moduli"; }
157 
158  /*! This is put above each page as a link to the class hierarchy */
159  virtual QCString trClassHierarchy()
160  { return "Hijerarhija klasa"; }
161 
162  /*! This is put above each page as a link to the list of annotated classes */
163  virtual QCString trCompoundList()
164  {
165  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
166  {
167  return "Spisak struktura";
168  }
169  else
170  {
171  return "Spisak klasa";
172  }
173  }
174 
175  /*! This is put above each page as a link to the list of documented files */
176  virtual QCString trFileList()
177  { return "Spisak datoteka"; }
178 
179  /*! This is put above each page as a link to all members of compounds. */
180  virtual QCString trCompoundMembers()
181  {
182  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
183  {
184  return "Sva polja struktura";
185  }
186  else
187  {
188  return "Svi članovi klasa";
189  }
190  }
191 
192  /*! This is put above each page as a link to all members of files. */
193  virtual QCString trFileMembers()
194  {
195  //if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
196  //{
197  // return "Članovi datoteke"; // TODO: translate me
198  //}
199  //else
200  //{
201  return "Članovi datoteke";
202  //}
203  }
204 
205  /*! This is put above each page as a link to all related pages. */
206  virtual QCString trRelatedPages()
207  { return "Stranice koje imaju veze sa ovom stranicom"; }
208 
209  /*! This is put above each page as a link to all examples. */
210  virtual QCString trExamples()
211  { return "Primeri"; }
212 
213  /*! This is put above each page as a link to the search engine. */
214  virtual QCString trSearch()
215  { return "Traži"; }
216 
217  /*! This is an introduction to the class hierarchy. */
219  { return "Hijerahija klasa uređena približno po abecedi:"; }
220 
221  /*! This is an introduction to the list with all files. */
222  virtual QCString trFileListDescription(bool extractAll)
223  {
224  QCString result="Spisak svih ";
225  if (!extractAll) result+="dokumentovanih ";
226  result+="datoteka, sa kratkim opisima:";
227  return result;
228  }
229 
230  /*! This is an introduction to the annotated compound list. */
232  {
233 
234  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
235  {
236  return "Spisak struktura sa kratkim opisima:";
237  }
238  else if (Config_getBool(OPTIMIZE_OUTPUT_SLICE))
239  {
240  return "Spisak klasa sa kratkim opisima:";
241  }
242  else
243  {
244  return "Spisak klasa, struktura, unija i interfejsa sa kratkim opisima:";
245  }
246  }
247 
248  /*! This is an introduction to the page with all class members. */
249  virtual QCString trCompoundMembersDescription(bool extractAll)
250  {
251  QCString result="Spisak svih ";
252  if (!extractAll)
253  {
254  result+="dokumentovanih ";
255  }
256  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
257  {
258  result+="članova struktura/unija";
259  }
260  else
261  {
262  result+="članova klasa";
263  }
264  result+=" sa vezama ka ";
265  if (extractAll)
266  {
267  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
268  {
269  result+="dokumentaciji svakog polja strukture/unije:";
270  }
271  else
272  {
273  result+="dokumentaciji svakog člana klase:";
274  }
275  }
276  else
277  {
278  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
279  {
280  result+="strukturama/unijama kojima pripadaju:";
281  }
282  else
283  {
284  result+="klasama kojima pripadaju:";
285  }
286  }
287  return result;
288  }
289 
290  /*! This is an introduction to the page with all file members. */
291  virtual QCString trFileMembersDescription(bool extractAll)
292  {
293  QCString result="Spisak svih ";
294  if (!extractAll) result+="dokumentovanih ";
295 
296  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
297  {
298  result+="funkcija, promenljivih, makro zamena, nabrajanja i definicija tipa";
299  }
300  else
301  {
302  result+="članova";
303  }
304  result+=" sa vezama ka ";
305  if (extractAll)
306  result+="datotekama u kojima se nalaze:";
307  else
308  result+="dokumentaciji:";
309  return result;
310  }
311 
312  /*! This is an introduction to the page with the list of all examples */
314  { return "Spisak svih primera:"; }
315 
316  /*! This is an introduction to the page with the list of related pages */
318  { return "Spisak stranica koje imaju veze sa ovom stranicom:"; }
319 
320  /*! This is an introduction to the page with the list of class/file groups */
322  { return "Spisak svih modula:"; }
323 
324  // index titles (the project name is prepended for these)
325 
326  /*! This is used in HTML as the title of index.html. */
327  virtual QCString trDocumentation()
328  { return "Dokumentacija"; }
329 
330  /*! This is used in LaTeX as the title of the chapter with the
331  * index of all groups.
332  */
333  virtual QCString trModuleIndex()
334  { return "Indeks modula"; }
335 
336  /*! This is used in LaTeX as the title of the chapter with the
337  * class hierarchy.
338  */
339  virtual QCString trHierarchicalIndex()
340  { return "Hijerarhijski sadržaj"; }
341 
342  /*! This is used in LaTeX as the title of the chapter with the
343  * annotated compound index.
344  */
345  virtual QCString trCompoundIndex()
346  {
347  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
348  {
349  return "Spisak struktura/unija";
350  }
351  else
352  {
353  return "Spisak klasa";
354  }
355  }
356 
357  /*! This is used in LaTeX as the title of the chapter with the
358  * list of all files.
359  */
361  { return "Indeks datoteka"; }
362 
363  /*! This is used in LaTeX as the title of the chapter containing
364  * the documentation of all groups.
365  */
367  { return "Dokumentacija modula"; }
368 
369  /*! This is used in LaTeX as the title of the chapter containing
370  * the documentation of all classes, structs and unions.
371  */
373  {
374  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
375  {
376  return "Dokumentacija stuktura/unija";
377  }
378  else
379  {
380  return "Dokumentacija klasa";
381  }
382  }
383 
384  /*! This is used in LaTeX as the title of the chapter containing
385  * the documentation of all files.
386  */
388  { return "Dokumentacija datoteke"; }
389 
390  /*! This is used in LaTeX as the title of the chapter containing
391  * the documentation of all examples.
392  */
394  { return "Dokumentacija primera"; }
395 
396  /*! This is used in LaTeX as the title of the chapter containing
397  * the documentation of all related pages.
398  */
399  virtual QCString trPageDocumentation()
400  { return "Dokumentacija stranice"; }
401 
402  /*! This is used in LaTeX as the title of the document */
403  virtual QCString trReferenceManual()
404  { return "Priručnik"; }
405 
406  /*! This is used in the documentation of a file as a header before the
407  * list of defines
408  */
409  virtual QCString trDefines()
410  { return "Makro zamene"; }
411 
412  /*! This is used in the documentation of a file as a header before the
413  * list of typedefs
414  */
415  virtual QCString trTypedefs()
416  { return "Definicije tipa"; }
417 
418  /*! This is used in the documentation of a file as a header before the
419  * list of enumerations
420  */
421  virtual QCString trEnumerations()
422  { return "Nabrajanja"; }
423 
424  /*! This is used in the documentation of a file as a header before the
425  * list of (global) functions
426  */
427  virtual QCString trFunctions()
428  { return "Funkcije"; }
429 
430  /*! This is used in the documentation of a file as a header before the
431  * list of (global) variables
432  */
433  virtual QCString trVariables()
434  { return "Promenljive"; }
435 
436  /*! This is used in the documentation of a file as a header before the
437  * list of (global) variables
438  */
439  virtual QCString trEnumerationValues()
440  { return "Vrednosti nabrojanih konstanti"; }
441 
442  /*! This is used in the documentation of a file before the list of
443  * documentation blocks for defines
444  */
446  { return "Dokumentacija makro zamene"; }
447 
448  /*! This is used in the documentation of a file/namespace before the list
449  * of documentation blocks for typedefs
450  */
452  { return "Dokumentacija definicije tipa"; }
453 
454  /*! This is used in the documentation of a file/namespace before the list
455  * of documentation blocks for enumeration types
456  */
458  { return "Dokumentacija nabrajanja"; }
459 
460  /*! This is used in the documentation of a file/namespace before the list
461  * of documentation blocks for functions
462  */
464  { return "Dokumentacija funkcije"; }
465 
466  /*! This is used in the documentation of a file/namespace before the list
467  * of documentation blocks for variables
468  */
470  { return "Dokumentacija promenljive"; }
471 
472  /*! This is used in the documentation of a file/namespace/group before
473  * the list of links to documented compounds
474  */
475  virtual QCString trCompounds()
476  {
477  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
478  {
479  return "Strukture i unije";
480  }
481  else
482  {
483  return "Klase, strukture i unije";
484  }
485  }
486 
487  /*! This is used in the standard footer of each page and indicates when
488  * the page was generated
489  */
490  virtual QCString trGeneratedAt(const QCString &date,const QCString &projName)
491  {
492  QCString result=(QCString)"[" + date + "] Napravljeno automatski ";
493  if (!projName.isEmpty()) result+=(QCString)" za projekat " + projName;
494  result+=(QCString)" upotrebom ";
495  return result;
496  }
497 
498  /*! this text is put before a class diagram */
499  virtual QCString trClassDiagram(const QCString &clName)
500  {
501  return QCString("Dijagram nasleđivanja za klasu ") + clName + ":";
502  }
503 
504  /*! this text is generated when the \\internal command is used. */
506  { return "Samo za unutrašnju upotrebu."; }
507 
508  /*! this text is generated when the \\warning command is used. */
509  virtual QCString trWarning()
510  { return "Upozorenje"; }
511 
512  /*! this text is generated when the \\version command is used. */
513  virtual QCString trVersion()
514  { return "Verzija"; }
515 
516  /*! this text is generated when the \\date command is used. */
517  virtual QCString trDate()
518  { return "Datum"; }
519 
520  /*! this text is generated when the \\return command is used. */
521  virtual QCString trReturns()
522  { return "Vrednost funkcije"; }
523 
524  /*! this text is generated when the \\sa command is used. */
525  virtual QCString trSeeAlso()
526  { return "Takođe pogledati"; }
527 
528  /*! this text is generated when the \\param command is used. */
529  virtual QCString trParameters()
530  { return "Parametri"; }
531 
532  /*! this text is generated when the \\exception command is used. */
533  virtual QCString trExceptions()
534  { return "Izuzeci"; }
535 
536  /*! this text is used in the title page of a LaTeX document. */
537  virtual QCString trGeneratedBy()
538  { return "Napravio"; }
539 
540 //////////////////////////////////////////////////////////////////////////
541 // new since 0.49-990307
542 //////////////////////////////////////////////////////////////////////////
543 
544  /*! used as the title of page containing all the index of all namespaces. */
545  virtual QCString trNamespaceList()
546  { return "Spisak prostora imena"; }
547 
548  /*! used as an introduction to the namespace list */
549  virtual QCString trNamespaceListDescription(bool extractAll)
550  {
551  QCString result="Spisak svih ";
552  if (!extractAll) result+="dokumentovanih ";
553  result+="prostora imena sa kratkim opisom:";
554  return result;
555  }
556 
557  /*! used in the class documentation as a header before the list of all
558  * friends of a class
559  */
560  virtual QCString trFriends()
561  { return "Prijatelji"; }
562 
563 //////////////////////////////////////////////////////////////////////////
564 // new since 0.49-990405
565 //////////////////////////////////////////////////////////////////////////
566 
567  /*! used in the class documentation as a header before the list of all
568  * related classes
569  */
571  { return "Dokumentacija prijatelja i relevantnih funkcija"; }
572 
573 //////////////////////////////////////////////////////////////////////////
574 // new since 0.49-990425
575 //////////////////////////////////////////////////////////////////////////
576 
577  /*! used as the title of the HTML page of a class/struct/union */
578  virtual QCString trCompoundReference(const QCString &clName,
579  ClassDef::CompoundType compType,
580  bool isTemplate)
581  {
582  QCString result( "Dokumentacija " );
583  switch(compType)
584  {
585  case ClassDef::Class: result+="klase "; break;
586  case ClassDef::Struct: result+="strukture "; break;
587  case ClassDef::Union: result+="unije "; break;
588  case ClassDef::Interface: result+="interfejsa "; break;
589  case ClassDef::Protocol: result+="protokola "; break;
590  case ClassDef::Category: result+="kategorije "; break;
591  case ClassDef::Exception: result+="izuzetka "; break;
592  default: break;
593  }
594  if (isTemplate) result += "šablona ";
595  result += clName;
596  return result;
597  }
598 
599  /*! used as the title of the HTML page of a file */
600  virtual QCString trFileReference(const QCString &fileName)
601  {
602  QCString result = "Opis datoteke ";
603  result += fileName;
604  return result;
605  }
606 
607  /*! used as the title of the HTML page of a namespace */
608  virtual QCString trNamespaceReference(const QCString &namespaceName)
609  {
610  QCString result="Opis prostora imena ";
611  result += namespaceName;
612  return result;
613  }
614 
616  { return "Javni članovi"; }
617  virtual QCString trPublicSlots()
618  { return "Javni slotovi"; }
619  virtual QCString trSignals()
620  { return "Signali"; }
622  { return "Zajednički javni članovi"; }
624  { return "Zaštićeni članovi"; }
625  virtual QCString trProtectedSlots()
626  { return "Zaštićeni slotovi"; }
628  { return "Zajednički zaštićeni članovi"; }
629  virtual QCString trPrivateMembers()
630  { return "Privatni članovi"; }
631  virtual QCString trPrivateSlots()
632  { return "Privatni slotovi"; }
634  { return "Zajednički privatni članovi"; }
635 
636  /*! this function is used to produce a comma-separated list of items.
637  * use generateMarker(i) to indicate where item i should be put.
638  */
639  virtual QCString trWriteList(int numEntries)
640  {
641  QCString result;
642  int i;
643  // the inherits list contain `numEntries' classes
644  for (i=0;i<numEntries;i++)
645  {
646  // use generateMarker to generate placeholders for the class links!
647  result+=generateMarker(i); // generate marker for entry i in the list
648  // (order is left to right)
649 
650  if (i!=numEntries-1) // not the last entry, so we need a separator
651  {
652  if (i<numEntries-2) // not the fore last entry
653  result+=", ";
654  else // the fore last entry
655  result+=" i ";
656  }
657  }
658  return result;
659  }
660 
661  /*! used in class documentation to produce a list of base classes,
662  * if class diagrams are disabled.
663  */
664  virtual QCString trInheritsList(int /*numEntries*/)
665  {
666  return "Spisak osnovnih klasa: ";
667  }
668 
669  /*! used in class documentation to produce a list of derived classes,
670  * if class diagrams are disabled.
671  */
672  virtual QCString trInheritedByList(int /*numEntries*/)
673  {
674  return "Spisak izvedenih klasa: ";
675  }
676 
677  /*! used in member documentation blocks to produce a list of
678  * members that are hidden by this one.
679  */
680  virtual QCString trReimplementedFromList(int numEntries)
681  {
682  return "Menja definiciju iz "+trWriteList(numEntries)+".";
683  }
684 
685  /*! used in member documentation blocks to produce a list of
686  * all member that overwrite the implementation of this member.
687  */
688  virtual QCString trReimplementedInList(int numEntries)
689  { //! Ako već ne možemo jednu reč (redefinicija), da uskladimo sa prethodnim i izbacimo upotrebu roda
690  return "Definicija je izmenjena u "+trWriteList(numEntries)+".";
691  }
692 
693  /*! This is put above each page as a link to all members of namespaces. */
694  virtual QCString trNamespaceMembers()
695  { return "Članovi prostora imena"; }
696 
697  /*! This is an introduction to the page with all namespace members */
698  virtual QCString trNamespaceMemberDescription(bool extractAll)
699  {
700  QCString result="Spisak svih ";
701  if (!extractAll) result+="dokumentovanih ";
702  result+="članova prostora imena sa vezama prema ";
703  if (extractAll)
704  result+="dokumentaciji svakog člana prostora imena: ";
705  else
706  result+="prostorima imena kojima pripadaju: ";
707  return result;
708  }
709  /*! This is used in LaTeX as the title of the chapter with the
710  * index of all namespaces.
711  */
712  virtual QCString trNamespaceIndex()
713  { return "Indeks prostora imena"; }
714 
715  /*! This is used in LaTeX as the title of the chapter containing
716  * the documentation of all namespaces.
717  */
719  { return "Dokumentacija prostora imena"; }
720 
721 //////////////////////////////////////////////////////////////////////////
722 // new since 0.49-990522
723 //////////////////////////////////////////////////////////////////////////
724 
725  /*! This is used in the documentation before the list of all
726  * namespaces in a file.
727  */
728  virtual QCString trNamespaces()
729  { return "Prostori imena"; }
730 
731 //////////////////////////////////////////////////////////////////////////
732 // new since 0.49-990728
733 //////////////////////////////////////////////////////////////////////////
734 
735  /*! This is put at the bottom of a class documentation page and is
736  * followed by a list of files that were used to generate the page.
737  */
739  bool single)
740  { // here s is one of " Class", " Struct" or " Union"
741  // single is true implies a single file
742  QCString result=(QCString)"Dokumentacija ";
743  switch(compType)
744  {
745  case ClassDef::Class: result+="ove klase"; break;
746  case ClassDef::Struct: result+="ove strukture"; break;
747  case ClassDef::Union: result+="ove unije"; break;
748  case ClassDef::Interface: result+="ovog interfejsa"; break;
749  case ClassDef::Protocol: result+="ovog protokola"; break;
750  case ClassDef::Category: result+="ove kategorije"; break;
751  case ClassDef::Exception: result+="ovog izuzetka"; break;
752  default: break;
753  }
754  result+=" je napravljena na osnovu ";
755  if (single) result+="datoteke "; else result+="sledećih datoteka:";
756  return result;
757  }
758 
759 //////////////////////////////////////////////////////////////////////////
760 // new since 0.49-990901
761 //////////////////////////////////////////////////////////////////////////
762 
763  /*! This is used as the heading text for the retval command. */
764  virtual QCString trReturnValues()
765  { return "Karakteristične vrednosti funkcije"; }
766 
767  /*! This is in the (quick) index as a link to the main page (index.html)
768  */
769  virtual QCString trMainPage()
770  { return "Glavna strana"; }
771 
772  /*! This is used in references to page that are put in the LaTeX
773  * documentation. It should be an abbreviation of the word page.
774  */
775  virtual QCString trPageAbbreviation()
776  { return "str."; }
777 
778 //////////////////////////////////////////////////////////////////////////
779 // new since 0.49-991003
780 //////////////////////////////////////////////////////////////////////////
781 
783  { //! Izbacujemo rod
784  return "Definicija je u redu @0 datoteke @1.";
785  }
787  { //! Izbacujemo rod
788  return "Definicija je u datoteci @0.";
789  }
790 
791 //////////////////////////////////////////////////////////////////////////
792 // new since 0.49-991205
793 //////////////////////////////////////////////////////////////////////////
794 
795  virtual QCString trDeprecated()
796  {
797  return "Zastarelo";
798  }
799 
800 //////////////////////////////////////////////////////////////////////////
801 // new since 1.0.0
802 //////////////////////////////////////////////////////////////////////////
803 
804  /*! this text is put before a collaboration diagram */
805  virtual QCString trCollaborationDiagram(const QCString &clName)
806  {
807  return (QCString)"Klasni dijagram za "+clName+":";
808  }
809  /*! this text is put before an include dependency graph */
810  virtual QCString trInclDepGraph(const QCString &fName)
811  {
812  return (QCString)"Graf zavisnosti datoteka za "+fName+":";
813  }
814  /*! header that is put before the list of constructor/destructors. */
816  {
817  return "Dokumentacija konstruktora i destruktora";
818  }
819  /*! Used in the file documentation to point to the corresponding sources. */
821  {
822  return "Izvorni kod.";
823  }
824  /*! Used in the file sources to point to the corresponding documentation. */
826  {
827  return "Dokumentacija.";
828  }
829  /*! Text for the \\pre command */
831  {
832  return "Preduslovi";
833  }
834  /*! Text for the \\post command */
836  {
837  return "Stanje po izvršenju";
838  }
839  /*! Text for the \\invariant command */
841  {
842  return "Invarijanta";
843  }
844  /*! Text shown before a multi-line variable/enum initialization */
846  {
847  return "Početna vrednost:";
848  }
849  /*! Text used the source code in the file index */
850  virtual QCString trCode()
851  {
852  return "programski kod";
853  }
855  {
856  return "Hijerarhija klasa u obliku grafa";
857  }
859  {
860  return "Prikaz hijerarhije klasa u obliku grafa";
861  }
863  {
864  return "Prikaz hijerarhije klasa u obliku nazubljenog teksta";
865  }
866  virtual QCString trPageIndex()
867  {
868  return "Indeks stranice";
869  }
870 
871 //////////////////////////////////////////////////////////////////////////
872 // new since 1.1.0
873 //////////////////////////////////////////////////////////////////////////
874 
875  virtual QCString trNote()
876  {
877  return "Beleška";
878  }
879  virtual QCString trPublicTypes()
880  {
881  return "Javni tipovi";
882  }
883  virtual QCString trPublicAttribs()
884  {
885  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
886  {
887  return "Polja";
888  }
889  else
890  {
891  return "Javni članovi";
892  }
893  }
895  {
896  return "Zajednički javni članovi";
897  }
899  {
900  return "Zaštićeni tipovi";
901  }
902  virtual QCString trProtectedAttribs()
903  {
904  return "Zaštićeni članovi";
905  }
907  {
908  return "Zajednički zaštićeni članovi";
909  }
910  virtual QCString trPrivateTypes()
911  {
912  return "Privatni tipovi";
913  }
914  virtual QCString trPrivateAttribs()
915  {
916  return "Privatni članovi";
917  }
919  {
920  return "Zajednički privatni članovi";
921  }
922 
923 //////////////////////////////////////////////////////////////////////////
924 // new since 1.1.3
925 //////////////////////////////////////////////////////////////////////////
926 
927  /*! Used as a marker that is put before a \\todo item */
928  virtual QCString trTodo()
929  {
930  return "Uraditi";
931  }
932  /*! Used as the header of the todo list */
934  {
935  return "Spisak stvari koje treba uraditi";
936  }
937 
938 //////////////////////////////////////////////////////////////////////////
939 // new since 1.1.4
940 //////////////////////////////////////////////////////////////////////////
941 
942  virtual QCString trReferencedBy()
943  { //! Izbegavanje roda. Uskladjivanje sa trReferences
944  return "Korisnici: ";
945  }
946  virtual QCString trRemarks()
947  {
948  return "Napomene";
949  }
950  virtual QCString trAttention()
951  {
952  return "Pažnja";
953  }
954  virtual QCString trInclByDepGraph()
955  {
956  return "Ovaj graf pokazuje koje datoteke direktno "
957  "ili indirektno uključuju ovu datoteku: ";
958  }
959  virtual QCString trSince()
960  {
961  return "Od";
962  }
963 
964 //////////////////////////////////////////////////////////////////////////
965 // new since 1.1.5
966 //////////////////////////////////////////////////////////////////////////
967 
968  /*! title of the graph legend page */
970  {
971  return "Objašnjenje korišćenih simbola";
972  }
973  /*! page explaining how the dot graph's should be interpreted
974  * The %A in the text below are to prevent link to classes called "A".
975  */
976  virtual QCString trLegendDocs()
977  {
978  return
979  "Ova stranica objašnjava kako tumačiti grafikone koje je napravio "
980  "doxygen.<p>\n"
981  "Na primer:\n"
982  "\\code\n"
983  "/*! Klasa nevidljiva zbog trenutnih ograničenja */\n"
984  "class Invisible { };\n\n"
985  "/*! Klasa kojoj se ne vidi način izvođenja */\n"
986  "class Truncated : public Invisible { };\n\n"
987  "/* Klasa bez doxygen komentara */\n"
988  "class Undocumented { };\n\n"
989  "/*! Klasa izvedena iz osnovne klase javnim izvođenjem */\n"
990  "class PublicBase : public Truncated { };\n\n"
991  "/*! Šablonska klasa */\n"
992  "template<class T> class Templ { };\n\n"
993  "/*! Klasa izvedena iz osnovne klase zaštićenim izvođenjem */\n"
994  "class ProtectedBase { };\n\n"
995  "/*! Klasa izvedena iz osnovne klase privatnim izvođenjem */\n"
996  "class PrivateBase { };\n\n"
997  "/*! Klasa korišćena u nekoj/nekim od drugih klasa */\n"
998  "class Used { };\n\n"
999  "/*! Klasa izvedena iz više osnovnih klasa */\n"
1000  "class Inherited : public PublicBase,\n"
1001  " protected ProtectedBase,\n"
1002  " private PrivateBase,\n"
1003  " public Undocumented,\n"
1004  " public Templ<int>\n"
1005  "{\n"
1006  " private:\n"
1007  " Used *m_usedClass;\n"
1008  "};\n"
1009  "\\endcode\n"
1010  "Ako je \\c MAX_DOT_GRAPH_HEIGHT tag u konfiguracionoj datoteci "
1011  "postavljen na \\c 200 graf izvođenja će izgledati ovako:"
1012  "<p><center><img src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1013  "Graf će biti odsečen ako ne stane unutar zadatih granica.\n"
1014  "<p>\n"
1015  "Pravougaonici imaju sledeća značenja:\n"
1016  "<ul>\n"
1017  "<li>Puni sivi predstavlja strukturu ili klasu za koju je graf napravljen.\n"
1018  "<li>Sa crnom ivicom predstavlja dokumentovanu strukturu ili klasu.\n"
1019  "<li>Sa sivom ivicom predstavlja strukturu ili klasu bez doxygen komentara.\n"
1020  "<li>Sa crvenom ivicom predstavlja dokumentovanu strukturu ili klasu\n"
1021  "za koju nisu prikazani svi relevantni grafovi.\n"
1022  "</ul>"
1023  "Strelice imaju sledeća značenja:\n"
1024  "<ul>\n"
1025  "<li>Tamnoplava strelica označava javno izvođenje.\n"
1026  "<li>Tamnozelena strelica označava zaštićeno izvođenje.\n"
1027  "<li>Tamnocrvena strelica označava privatno izvođenje.\n"
1028  "<li>Ljubičasta isprekidana strelica označava da je klasa sadržana "
1029  "ili korišćena u drugoj klasi. Strelica je označena imenom atributa "
1030  "preko koga se pristupa klasi/strukturi na koju pokazuje.\n"
1031  "<li>Žuta isprekidana strelica označava vezu između primerka šablona i"
1032  " šablona klase od kojeg je primerak napravljen. "
1033  "Strelica je označena stvarnim argumentima šablona.\n"
1034  "</ul>\n"
1035  ;
1036  }
1037  /*! text for the link to the legend page */
1038  virtual QCString trLegend()
1039  {
1040  return "Objašnjenje korišćenih simbola";
1041  }
1042 
1043 //////////////////////////////////////////////////////////////////////////
1044 // new since 1.2.0
1045 //////////////////////////////////////////////////////////////////////////
1046 
1047  /*! Used as a marker that is put before a test item */
1048  virtual QCString trTest()
1049  {
1050  return "Test";
1051  }
1052  /*! Used as the header of the test list */
1054  {
1055  return "Spisak testova";
1056  }
1057 
1058 //////////////////////////////////////////////////////////////////////////
1059 // new since 1.2.2
1060 //////////////////////////////////////////////////////////////////////////
1061 
1062  /*! Used as a section header for IDL properties */
1064  {
1065  return "Osobine";
1066  }
1067  /*! Used as a section header for IDL property documentation */
1069  {
1070  return "Dokumentacija osobina";
1071  }
1072 
1073 //////////////////////////////////////////////////////////////////////////
1074 // new since 1.2.4
1075 //////////////////////////////////////////////////////////////////////////
1076 
1077  /*! Used for Java classes in the summary section of Java packages */
1079  {
1080  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1081  {
1082  return "Strukture i unije";
1083  }
1084  else
1085  {
1086  return "Klase";
1087  }
1088  }
1089  /*! Used as the title of a Java package */
1090  virtual QCString trPackage(const QCString &name)
1091  {
1092  return (QCString)"Paket "+name;
1093  }
1094  /*! Title of the package index page */
1095  virtual QCString trPackageList()
1096  {
1097  return "Spisak paketa";
1098  }
1099  /*! The description of the package index page */
1101  {
1102  return "Paketi s kratkim opisom (ukoliko postoji):";
1103  }
1104  /*! The link name in the Quick links header for each page */
1106  {
1107  return "Paketi";
1108  }
1109  /*! Text shown before a multi-line define */
1111  {
1112  return "Vrednost:";
1113  }
1114 
1115 //////////////////////////////////////////////////////////////////////////
1116 // new since 1.2.5
1117 //////////////////////////////////////////////////////////////////////////
1118 
1119  /*! Used as a marker that is put before a \\bug item */
1120  virtual QCString trBug()
1121  {
1122  return "Greška";
1123  }
1124  /*! Used as the header of the bug list */
1126  {
1127  return "Spisak grešaka";
1128  }
1129 
1130 //////////////////////////////////////////////////////////////////////////
1131 // new since 1.2.6
1132 //////////////////////////////////////////////////////////////////////////
1133 
1134  /*! Used as ansicpg for RTF file
1135  *
1136  * The following table shows the correlation of Charset name, Charset Value and
1137  * <pre>
1138  * Codepage number:
1139  * Charset Name Charset Value(hex) Codepage number
1140  * ------------------------------------------------------
1141  * DEFAULT_CHARSET 1 (x01)
1142  * SYMBOL_CHARSET 2 (x02)
1143  * OEM_CHARSET 255 (xFF)
1144  * ANSI_CHARSET 0 (x00) 1252
1145  * RUSSIAN_CHARSET 204 (xCC) 1251
1146  * EE_CHARSET 238 (xEE) 1250
1147  * GREEK_CHARSET 161 (xA1) 1253
1148  * TURKISH_CHARSET 162 (xA2) 1254
1149  * BALTIC_CHARSET 186 (xBA) 1257
1150  * HEBREW_CHARSET 177 (xB1) 1255
1151  * ARABIC _CHARSET 178 (xB2) 1256
1152  * SHIFTJIS_CHARSET 128 (x80) 932
1153  * HANGEUL_CHARSET 129 (x81) 949
1154  * GB2313_CHARSET 134 (x86) 936
1155  * CHINESEBIG5_CHARSET 136 (x88) 950
1156  * </pre>
1157  *
1158  */
1159  virtual QCString trRTFansicp()
1160  {
1161  return "1252";
1162  }
1163 
1164 
1165  /*! Used as ansicpg for RTF fcharset
1166  * \see trRTFansicp() for a table of possible values.
1167  */
1168  virtual QCString trRTFCharSet()
1169  {
1170  return "238";
1171  }
1172 
1173  /*! Used as header RTF general index */
1175  {
1176  return "Sadržaj";
1177  }
1178 
1179  /*! This is used for translation of the word that will possibly
1180  * be followed by a single name or by a list of names
1181  * of the category.
1182  */
1183  virtual QCString trClass(bool first_capital, bool singular)
1184  {
1185  QCString result( (first_capital ? "Klas" : "klas") );
1186  result+= (singular ? "a" : "e");
1187  return result;
1188  }
1190  /*! This is used for translation of the word that will possibly
1191  * be followed by a single name or by a list of names
1192  * of the category.
1193  */
1194  virtual QCString trFile(bool first_capital, bool singular)
1195  {
1196  QCString result((first_capital ? "Datotek" : "datotek"));
1197  result+= (singular ? "a" : "e");
1198  return result;
1199  }
1200 
1201  /*! This is used for translation of the word that will possibly
1202  * be followed by a single name or by a list of names
1203  * of the category.
1204  */
1205  virtual QCString trNamespace(bool first_capital, bool singular)
1206  {
1207  QCString result((first_capital ? "Prostor" : "prostor"));
1208  result += (singular ? "" : "i");
1209  result += " imena";
1210  return result;
1211  }
1212 
1213  /*! This is used for translation of the word that will possibly
1214  * be followed by a single name or by a list of names
1215  * of the category.
1216  */
1217  virtual QCString trGroup(bool first_capital, bool singular)
1218  {
1219  QCString result((first_capital ? "Grup" : "grup"));
1220  result+= (singular ? "a" : "e");
1221  return result;
1222  }
1223 
1224  /*! This is used for translation of the word that will possibly
1225  * be followed by a single name or by a list of names
1226  * of the category.
1227  */
1228  virtual QCString trPage(bool first_capital, bool singular)
1229  {
1230  QCString result((first_capital ? "Stran" : "stran"));
1231  result+= (singular ? "a" : "e");
1232  return result;
1233  }
1234 
1235  /*! This is used for translation of the word that will possibly
1236  * be followed by a single name or by a list of names
1237  * of the category.
1238  */
1239  virtual QCString trMember(bool first_capital, bool singular)
1240  {
1241  QCString result((first_capital ? "Član" : "član"));
1242  result+= (singular ? "" : "ovi");
1243  return result;
1244  }
1245 
1246  /*! This is used for translation of the word that will possibly
1247  * be followed by a single name or by a list of names
1248  * of the category.
1249  */
1250  virtual QCString trGlobal(bool first_capital, bool singular)
1251  {
1252  QCString result((first_capital ? "Globalni " : "globalni "));
1253  result+= (singular ? "podatak" : "podaci");
1254  return result;
1255  }
1256 
1257 //////////////////////////////////////////////////////////////////////////
1258 // new since 1.2.7
1259 //////////////////////////////////////////////////////////////////////////
1260 
1261  /*! This text is generated when the \\author command is used and
1262  * for the author section in man pages. */
1263  virtual QCString trAuthor(bool first_capital, bool singular)
1264  {
1265  QCString result((first_capital ? "Autor" : "autor"));
1266  result+= (singular ? "" : "i");
1267  return result;
1268  }
1269 
1270 //////////////////////////////////////////////////////////////////////////
1271 // new since 1.2.11
1272 //////////////////////////////////////////////////////////////////////////
1273 
1274  /*! This text is put before the list of members referenced by a member
1275  */
1276  virtual QCString trReferences()
1277  {
1278  return "Koristi";
1279  }
1280 
1281 //////////////////////////////////////////////////////////////////////////
1282 // new since 1.2.13
1283 //////////////////////////////////////////////////////////////////////////
1284 
1285  /*! used in member documentation blocks to produce a list of
1286  * members that are implemented by this one.
1287  */
1288  virtual QCString trImplementedFromList(int /*numEntries*/)
1289  { //! "Definiše" je previše kratko, ispada sa de definišu same apstraktne klase
1290  return "Definiše apstraktnu funkciju deklarisanu u ";
1291  }
1292 
1293  /*! used in member documentation blocks to produce a list of
1294  * all members that implement this abstract member.
1295  */
1296  virtual QCString trImplementedInList(int /*numEntries*/)
1297  { //! Izbegavanje roda
1298  return "Definicija u ";
1299  }
1300 
1301 //////////////////////////////////////////////////////////////////////////
1302 // new since 1.2.16
1303 //////////////////////////////////////////////////////////////////////////
1304 
1305  /*! used in RTF documentation as a heading for the Table
1306  * of Contents.
1307  */
1308  virtual QCString trRTFTableOfContents()
1309  {
1310  return "Sadržaj";
1311  }
1312 
1313 //////////////////////////////////////////////////////////////////////////
1314 // new since 1.2.17
1315 //////////////////////////////////////////////////////////////////////////
1316 
1317  /*! Used as the header of the list of item that have been
1318  * flagged deprecated
1319  */
1320  virtual QCString trDeprecatedList()
1321  {
1322  return "Spisak zastarelih stvari";
1323  }
1324 
1325 //////////////////////////////////////////////////////////////////////////
1326 // new since 1.2.18
1327 //////////////////////////////////////////////////////////////////////////
1328 
1329  /*! Used as a header for declaration section of the events found in
1330  * a C# program
1331  */
1332  virtual QCString trEvents()
1333  {
1334  return "Događaji";
1335  }
1336  /*! Header used for the documentation section of a class' events. */
1337  virtual QCString trEventDocumentation()
1338  {
1339  return "Dokumentacija događaja";
1340  }
1341 
1342 //////////////////////////////////////////////////////////////////////////
1343 // new since 1.3
1344 //////////////////////////////////////////////////////////////////////////
1345 
1346  /*! Used as a heading for a list of Java class types with package scope.
1347  */
1348  virtual QCString trPackageTypes()
1349  {
1350  return "Tipovi u paketu";
1351  }
1352  /*! Used as a heading for a list of Java class functions with package
1353  * scope.
1354  */
1355  virtual QCString trPackageMembers()
1356  {
1357  return "Funkcije u paketu";
1358  }
1359  /*! Used as a heading for a list of static Java class functions with
1360  * package scope.
1361  */
1363  {
1364  return "Statičke funkcije u paketu"; // Zajednicke funkcije u paketu
1365  }
1366  /*! Used as a heading for a list of Java class variables with package
1367  * scope.
1368  */
1369  virtual QCString trPackageAttribs()
1370  {
1371  return "Atributi u paketu"; // Clanovi u paketu
1372  }
1373  /*! Used as a heading for a list of static Java class variables with
1374  * package scope.
1375  */
1377  {
1378  return "Statički atributi u paketu"; // Zajednicki clanovi u paketu
1379  }
1380 
1381 //////////////////////////////////////////////////////////////////////////
1382 // new since 1.3.1
1383 //////////////////////////////////////////////////////////////////////////
1385  /*! Used in the quick index of a class/file/namespace member list page
1386  * to link to the unfiltered list of all members.
1387  */
1388  virtual QCString trAll()
1389  {
1390  return "Sve";
1391  }
1392  /*! Put in front of the call graph for a function. */
1393  virtual QCString trCallGraph()
1394  {
1395  return "Graf poziva iz ove funkcije:";
1396  }
1397 
1398 //////////////////////////////////////////////////////////////////////////
1399 // new since 1.3.3
1400 //////////////////////////////////////////////////////////////////////////
1401 
1402  /*! This string is used as the title for the page listing the search
1403  * results.
1404  */
1405  virtual QCString trSearchResultsTitle()
1406  {
1407  return "Rezultati pretraživanja";
1408  }
1409  /*! This string is put just before listing the search results. The
1410  * text can be different depending on the number of documents found.
1411  * Inside the text you can put the special marker $num to insert
1412  * the number representing the actual number of search results.
1413  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1414  * value 2 represents 2 or more matches. HTML markup is allowed inside
1415  * the returned string.
1416  */
1417  virtual QCString trSearchResults(int numDocuments)
1418  {
1419  if (numDocuments==0)
1420  {
1421  return "Nema dokumenata koji odgovaraju Vašem upitu.";
1422  }
1423  else if (numDocuments==1)
1424  { return "Nađen je <b>1</b> dokument koji odgovara vašem upitu."; }
1425  else if (numDocuments<5)
1426  { return "Nađena su <b>$num</b> dokumenta koji odgovaraju vašem upitu."
1427  " Najbolji su prikazani prvi."; }
1428  else
1429  { return "Nađeno je <b>$num</b> dokumenata koji odgovaraju vašem upitu."
1430  " Najbolji su prikazani prvi.";
1431  }
1432  }
1433  /*! This string is put before the list of matched words, for each search
1434  * result. What follows is the list of words that matched the query.
1435  */
1436  virtual QCString trSearchMatches()
1437  {
1438  return "Pronađeno:";
1439  }
1440 
1441 //////////////////////////////////////////////////////////////////////////
1442 // new since 1.3.8
1443 //////////////////////////////////////////////////////////////////////////
1444 
1445  /*! This is used in HTML as the title of page with source code for file filename
1446  */
1447  virtual QCString trSourceFile(QCString& filename)
1448  {
1449  return "Izvorni kod datoteke " + filename;
1450  }
1452 //////////////////////////////////////////////////////////////////////////
1453 // new since 1.3.9
1454 //////////////////////////////////////////////////////////////////////////
1455 
1456  /*! This is used as the name of the chapter containing the directory
1457  * hierarchy.
1458  */
1459  virtual QCString trDirIndex()
1460  { return "Hijerarhija direktorijuma"; }
1461 
1462  /*! This is used as the name of the chapter containing the documentation
1463  * of the directories.
1464  */
1465  virtual QCString trDirDocumentation()
1466  { return "Dokumentacija direktorijuma"; }
1467 
1468  /*! This is used as the title of the directory index and also in the
1469  * Quick links of a HTML page, to link to the directory hierarchy.
1470  */
1471  virtual QCString trDirectories()
1472  { return "Direktorijumi"; }
1473 
1474  /*! This returns a sentences that introduces the directory hierarchy.
1475  * and the fact that it is sorted alphabetically per level
1476  */
1477  virtual QCString trDirDescription()
1478  { return "Hijerarhija direktorijuma uređena približno po abecedi:"; }
1479 
1480  /*! This returns the title of a directory page. The name of the
1481  * directory is passed via \a dirName.
1482  */
1483  virtual QCString trDirReference(const QCString &dirName)
1484  { QCString result=dirName; result+="Opis direktorijuma"; return result; }
1485 
1486  /*! This returns the word directory with or without starting capital
1487  * (\a first_capital) and in sigular or plural form (\a singular).
1488  */
1489  virtual QCString trDir(bool first_capital, bool singular)
1490  {
1491  QCString result((first_capital ? "Direktorijum" : "direktorijum"));
1492  if (!singular) result+="i";
1493  return result;
1494  }
1495 
1496 //////////////////////////////////////////////////////////////////////////
1497 // new since 1.4.1
1498 //////////////////////////////////////////////////////////////////////////
1499 
1500  /*! This text is added to the documentation when the \\overload command
1501  * is used for a overloaded function.
1502  */
1503  virtual QCString trOverloadText()
1504  {
1505  return "Ovo je funkcija prekopljenog imena, razlikuje se "
1506  "od gore navedene samo po argumentima koje prihvata.";
1507  }
1508 
1509 //////////////////////////////////////////////////////////////////////////
1510 // new since 1.4.6
1511 //////////////////////////////////////////////////////////////////////////
1512 
1513  /*! This is used to introduce a caller (or called-by) graph */
1514  virtual QCString trCallerGraph()
1515  { //! Možda je bolje "Graf pozivalaca ove funkcije"
1516  return "Graf funkcija koje pozivaju ovu funkciju:";
1517  }
1519  /*! This is used in the documentation of a file/namespace before the list
1520  * of documentation blocks for enumeration values
1521  */
1523  { return "Dokumentacija enum vrednosti"; }
1524 
1525 //////////////////////////////////////////////////////////////////////////
1526 // new since 1.5.4 (mainly for Fortran)
1527 //////////////////////////////////////////////////////////////////////////
1528 
1529  /*! header that is put before the list of member subprograms (Fortran). */
1531  { return "Dokumentacija funkcija i procedura"; }
1532 
1533  /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1534  /* TODO: Koji je prevod za Compound u Fortran kontekstu */
1536  { return "Složeni tipovi podataka"; }
1538  /*! This is put above each page as a link to all members of compounds (Fortran). */
1540  { return "Polja u složenim tipovima podataka"; }
1541 
1542  /*! This is an introduction to the annotated compound list (Fortran). */
1544  { return "Spisak složenih tipova podataka sa kratkim opisima:"; }
1546  /*! This is an introduction to the page with all data types (Fortran). */
1547  virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
1548  {
1549  QCString result=" Spisak svih ";
1550  if (!extractAll)
1551  {
1552  result+="dokumentovanih ";
1553  }
1554  result+="polja složenih tipova podataka";
1555  result+=" sa vezama ka ";
1556  if (!extractAll)
1557  {
1558  result+="dokumentaciji strukture podataka za svakog člana";
1559  }
1560  else
1561  {
1562  result+="složenim tipovima podataka kojima pripadaju:";
1563  }
1564  return result;
1565  }
1566 
1567  /*! This is used in LaTeX as the title of the chapter with the
1568  * annotated compound index (Fortran).
1569  */
1571  { return "Sadržaj složenog tipa podataka"; }
1572 
1573  /*! This is used in LaTeX as the title of the chapter containing
1574  * the documentation of all data types (Fortran).
1575  */
1576  virtual QCString trTypeDocumentation()
1577  { return "Dokumentacija tipova podataka"; }
1578 
1579  /*! This is used in the documentation of a file as a header before the
1580  * list of (global) subprograms (Fortran).
1581  */
1582  virtual QCString trSubprograms()
1583  { return "Funkcije i procedure"; }
1584 
1585  /*! This is used in the documentation of a file/namespace before the list
1586  * of documentation blocks for subprograms (Fortran)
1587  */
1589  { return "Dokumentacija funkcija i procedura"; }
1590 
1591  /*! This is used in the documentation of a file/namespace/group before
1592  * the list of links to documented compounds (Fortran)
1593  */
1594  virtual QCString trDataTypes()
1595  { return "Složeni tipovi podataka"; }
1596 
1597  /*! used as the title of page containing all the index of all modules (Fortran). */
1598  virtual QCString trModulesList()
1599  { return "Spisak modula"; }
1600 
1601  /*! used as an introduction to the modules list (Fortran) */
1602  virtual QCString trModulesListDescription(bool extractAll)
1603  {
1604  QCString result="Spisak svih ";
1605  if (!extractAll) result+="dokumentovanih ";
1606  result+="modula sa kratkim opisima:";
1607  return result;
1608  }
1610  /*! used as the title of the HTML page of a module/type (Fortran) */
1611  virtual QCString trCompoundReferenceFortran(const QCString &clName,
1612  ClassDef::CompoundType compType,
1613  bool isTemplate)
1614  {
1615  QCString result=(QCString)clName;
1616  switch(compType)
1617  {
1618  case ClassDef::Class: result+=" Modul"; break;
1619  case ClassDef::Struct: result+=" Tip"; break;
1620  case ClassDef::Union: result+=" Unija"; break;
1621  case ClassDef::Interface: result+=" Interfejs"; break;
1622  case ClassDef::Protocol: result+=" Protokol"; break;
1623  case ClassDef::Category: result+=" Kategorija"; break;
1624  case ClassDef::Exception: result+=" Izuzetak"; break;
1625  default: break;
1626  }
1627  result+=" - sažet pregled";
1628  if (isTemplate) result+=" šablona";
1629  return result;
1630  }
1631  /*! used as the title of the HTML page of a module (Fortran) */
1632  virtual QCString trModuleReference(const QCString &namespaceName)
1633  {
1634  QCString result=namespaceName;
1635  result+=" - sažet pregled modula";
1636  return result;
1637  }
1638 
1639  /*! This is put above each page as a link to all members of modules. (Fortran) */
1640  virtual QCString trModulesMembers()
1641  { return "Članovi modula"; }
1642 
1643  /*! This is an introduction to the page with all modules members (Fortran) */
1644  virtual QCString trModulesMemberDescription(bool extractAll)
1645  {
1646  QCString result="Spisak svih ";
1647  if (!extractAll) result+="dokumentovanih ";
1648  result+="članova modula sa vezama ka ";
1649  if (extractAll)
1650  {
1651  result+="dokumentaciji za svakog člana modula:";
1652  }
1653  else
1654  {
1655  result+="modulima kojima pripadaju:";
1656  }
1657  return result;
1658  }
1660  /*! This is used in LaTeX as the title of the chapter with the
1661  * index of all modules (Fortran).
1662  */
1663  virtual QCString trModulesIndex()
1664  { return "Spisak modula"; }
1665 
1666  /*! This is used for translation of the word that will possibly
1667  * be followed by a single name or by a list of names
1668  * of the category.
1669  */
1670  virtual QCString trModule(bool first_capital, bool singular)
1671  {
1672  QCString result((first_capital ? "Modul" : "modul"));
1673  if (!singular) result+="i";
1674  return result;
1675  }
1676  /*! This is put at the bottom of a module documentation page and is
1677  * followed by a list of files that were used to generate the page.
1678  */
1680  bool single)
1681  { // here s is one of " Module", " Struct" or " Union"
1682  // single is true implies a single file
1683  QCString result=(QCString)"Dokumentacija za ovaj ";
1684  switch(compType)
1685  {
1686  case ClassDef::Class: result+="modul"; break;
1687  case ClassDef::Struct: result+="tip"; break;
1688  case ClassDef::Union: result+="uniju"; break;
1689  case ClassDef::Interface: result+="interfejs"; break;
1690  case ClassDef::Protocol: result+="protokol"; break;
1691  case ClassDef::Category: result+="kategoriju"; break;
1692  case ClassDef::Exception: result+="izuzetak"; break;
1693  default: break;
1694  }
1695  result+=" napravljena je automatski od sledeć";
1696  if (single) result+="e datoteke:"; else result+="ih datoteka:";
1697  return result;
1698  }
1699  /*! This is used for translation of the word that will possibly
1700  * be followed by a single name or by a list of names
1701  * of the category.
1702  */
1703  virtual QCString trType(bool first_capital, bool singular)
1704  {
1705  QCString result((first_capital ? "Tip" : "tip"));
1706  if (!singular) result+="ovi";
1707  return result;
1708  }
1709  /*! This is used for translation of the word that will possibly
1710  * be followed by a single name or by a list of names
1711  * of the category.
1712  */
1713  virtual QCString trSubprogram(bool first_capital, bool singular)
1714  {
1715  QCString result((first_capital ? "Procedura" : "procedura"));
1716  if (!singular) result = (first_capital ? "Procedure" : "procedure");
1717  return result;
1718  }
1719 
1720  /*! C# Type Constraint list */
1721  virtual QCString trTypeConstraints()
1722  {
1723  return "Ograničenja tipova";
1724  }
1725 
1726 //////////////////////////////////////////////////////////////////////////
1727 // following methods have no corresponding entry in translator_en.h
1728 //////////////////////////////////////////////////////////////////////////
1729 
1730 // /*! This is put above each page as a link to the list of all verbatim headers */
1731 // virtual QCString trHeaderFiles()
1732 // { return "Zaglavlja"; }
1733 //
1734 // /*! This is an introduction to the page with the list of all header files. */
1735 // virtual QCString trHeaderFilesDescription()
1736 // { return "Zaglavlja koje izgraduju API:"; }
1737 //
1738 // /*! This sentences is used in the annotated class/file lists if no brief
1739 // * description is given.
1740 // */
1741 // virtual QCString trNoDescriptionAvailable()
1742 // { return "Opis nije dostupan"; }
1743 //
1744 // /*! this text is generated when the \\reimp command is used. */
1745 // virtual QCString trReimplementedForInternalReasons()
1746 // { return decode("Preuradeno zbog unutrasnjih razloga; Nema uticaja na API." ); }
1747 //
1748 // /*! this text is generated when the \\bug command is used. */
1749 // virtual QCString trBugsAndLimitations()
1750 // { return "Greske i ogranicenja"; }
1751 //
1752 // virtual QCString trSources()
1753 // {
1754 // return decode("Izvorne datoteke" );
1755 // }
1756 //
1757 // /*! Used for Java interfaces in the summary section of Java packages */
1758 // virtual QCString trInterfaces()
1759 // {
1760 // return "Interfejsi"; //!< Radna okruzenja. Ali to je dve reci.
1761 // }
1762 //
1763 // /*! Used as a chapter title for Latex & RTF output */
1764 // virtual QCString trPackageDocumentation()
1765 // {
1766 // return "Dokumentacija paketa";
1767 // }
1768 //
1769 // /*! This is used for translation of the word that will possibly
1770 // * be followed by a single name or by a list of names
1771 // * of the category.
1772 // */
1773 // virtual QCString trField(bool first_capital, bool singular)
1774 // {
1775 // QCString result((first_capital ? "Polj" : "polj"));
1776 // result+= (singular ? "e" : "a");
1777 // return result;
1778 // }
1779 
1780 };
1781 
1782 #endif
TranslatorSerbian::trLegend
virtual QCString trLegend()
Definition: translator_sr.h:1053
TranslatorSerbian::trTypeDocumentation
virtual QCString trTypeDocumentation()
Definition: translator_sr.h:1591
TranslatorSerbian::trDirIndex
virtual QCString trDirIndex()
Definition: translator_sr.h:1474
TranslatorSerbian::trStaticProtectedMembers
virtual QCString trStaticProtectedMembers()
Definition: translator_sr.h:642
getDotImageExtension
QCString getDotImageExtension()
Definition: util.cpp:7032
TranslatorSerbian::trInheritsList
virtual QCString trInheritsList(int)
Definition: translator_sr.h:679
TranslatorSerbian::trDefinedIn
virtual QCString trDefinedIn()
Definition: translator_sr.h:162
TranslatorSerbian::trRTFTableOfContents
virtual QCString trRTFTableOfContents()
Definition: translator_sr.h:1323
TranslatorSerbian::trTypedefDocumentation
virtual QCString trTypedefDocumentation()
Definition: translator_sr.h:466
TranslatorSerbian::trCompoundListDescription
virtual QCString trCompoundListDescription()
Definition: translator_sr.h:246
TranslatorSerbian::trSearch
virtual QCString trSearch()
Definition: translator_sr.h:229
TranslatorSerbian::trReturnValues
virtual QCString trReturnValues()
Definition: translator_sr.h:779
TranslatorSerbian::trSubprogram
virtual QCString trSubprogram(bool first_capital, bool singular)
Definition: translator_sr.h:1728
TranslatorSerbian::trExamples
virtual QCString trExamples()
Definition: translator_sr.h:225
TranslatorSerbian::trGotoTextualHierarchy
virtual QCString trGotoTextualHierarchy()
Definition: translator_sr.h:877
TranslatorSerbian::trOverloadText
virtual QCString trOverloadText()
Definition: translator_sr.h:1518
TranslatorSerbian::trCompoundMembersFortran
virtual QCString trCompoundMembersFortran()
Definition: translator_sr.h:1554
TranslatorSerbian::trFileDocumentation
virtual QCString trFileDocumentation()
Definition: translator_sr.h:402
TranslatorSerbian::trPackageListDescription
virtual QCString trPackageListDescription()
Definition: translator_sr.h:1115
TranslatorSerbian::trSearchMatches
virtual QCString trSearchMatches()
Definition: translator_sr.h:1451
TranslatorSerbian::trDate
virtual QCString trDate()
Definition: translator_sr.h:532
TranslatorSerbian::trDirDocumentation
virtual QCString trDirDocumentation()
Definition: translator_sr.h:1480
TranslatorSerbian::trFunctions
virtual QCString trFunctions()
Definition: translator_sr.h:442
TranslatorSerbian::trNamespace
virtual QCString trNamespace(bool first_capital, bool singular)
Definition: translator_sr.h:1220
TranslatorSerbian::trCompoundListDescriptionFortran
virtual QCString trCompoundListDescriptionFortran()
Definition: translator_sr.h:1558
TranslatorSerbian::trModulesDescription
virtual QCString trModulesDescription()
Definition: translator_sr.h:336
ClassDef::Union
@ Union
Definition: classdef.h:109
TranslatorSerbian::trExamplesDescription
virtual QCString trExamplesDescription()
Definition: translator_sr.h:328
TranslatorSerbian::trModuleDocumentation
virtual QCString trModuleDocumentation()
Definition: translator_sr.h:381
TranslatorSerbian::trWarning
virtual QCString trWarning()
Definition: translator_sr.h:524
TranslatorSerbian::trModuleReference
virtual QCString trModuleReference(const QCString &namespaceName)
Definition: translator_sr.h:1647
TranslatorSerbian::trDir
virtual QCString trDir(bool first_capital, bool singular)
Definition: translator_sr.h:1504
TranslatorSerbian::trFileMembersDescription
virtual QCString trFileMembersDescription(bool extractAll)
Definition: translator_sr.h:306
TranslatorSerbian::trModuleIndex
virtual QCString trModuleIndex()
Definition: translator_sr.h:348
TranslatorSerbian::trFriends
virtual QCString trFriends()
Definition: translator_sr.h:575
TranslatorSerbian::trDefinedAtLineInSourceFile
virtual QCString trDefinedAtLineInSourceFile()
Definition: translator_sr.h:797
TranslatorSerbian::trStaticPackageMembers
virtual QCString trStaticPackageMembers()
Definition: translator_sr.h:1377
TranslatorSerbian::trPageDocumentation
virtual QCString trPageDocumentation()
Definition: translator_sr.h:414
TranslatorSerbian::trCollaborationDiagram
virtual QCString trCollaborationDiagram(const QCString &clName)
Definition: translator_sr.h:820
TranslatorSerbian::trCompoundMembersDescriptionFortran
virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
Definition: translator_sr.h:1562
TranslatorSerbian::trGlobal
virtual QCString trGlobal(bool first_capital, bool singular)
Definition: translator_sr.h:1265
TranslatorSerbian::trRelatedPages
virtual QCString trRelatedPages()
Definition: translator_sr.h:221
generateMarker
QCString generateMarker(int id)
Definition: util.cpp:284
TranslatorSerbian::trForInternalUseOnly
virtual QCString trForInternalUseOnly()
Definition: translator_sr.h:520
QCString::isEmpty
bool isEmpty() const
Returns TRUE iff the string is empty
Definition: qcstring.h:144
TranslatorSerbian::trFileList
virtual QCString trFileList()
Definition: translator_sr.h:191
TranslatorSerbian::trProperties
virtual QCString trProperties()
Definition: translator_sr.h:1078
ClassDef::CompoundType
CompoundType
The various compound types
Definition: classdef.h:107
TranslatorSerbian::trCompoundIndex
virtual QCString trCompoundIndex()
Definition: translator_sr.h:360
TranslatorSerbian::trFileReference
virtual QCString trFileReference(const QCString &fileName)
Definition: translator_sr.h:615
TranslatorSerbian::trClassDocumentation
virtual QCString trClassDocumentation()
Definition: translator_sr.h:387
TranslatorSerbian::trGeneratedAt
virtual QCString trGeneratedAt(const QCString &date, const QCString &projName)
Definition: translator_sr.h:505
TranslatorSerbian::trNamespaceList
virtual QCString trNamespaceList()
Definition: translator_sr.h:560
ClassDef::Interface
@ Interface
Definition: classdef.h:110
TranslatorSerbian::trPrivateSlots
virtual QCString trPrivateSlots()
Definition: translator_sr.h:646
TranslatorSerbian::trFunctionDocumentation
virtual QCString trFunctionDocumentation()
Definition: translator_sr.h:478
TranslatorSerbian::trPrecondition
virtual QCString trPrecondition()
Definition: translator_sr.h:845
TranslatorSerbian::trPublicAttribs
virtual QCString trPublicAttribs()
Definition: translator_sr.h:898
TranslatorSerbian::trClasses
virtual QCString trClasses()
Definition: translator_sr.h:1093
TranslatorSerbian::trNamespaceDocumentation
virtual QCString trNamespaceDocumentation()
Definition: translator_sr.h:733
TranslatorSerbian::trRemarks
virtual QCString trRemarks()
Definition: translator_sr.h:961
TranslatorSerbian::trInitialValue
virtual QCString trInitialValue()
Definition: translator_sr.h:860
TranslatorSerbian::trSeeAlso
virtual QCString trSeeAlso()
Definition: translator_sr.h:540
TranslatorSerbian::trPublicSlots
virtual QCString trPublicSlots()
Definition: translator_sr.h:632
TranslatorSerbian::trNamespaces
virtual QCString trNamespaces()
Definition: translator_sr.h:743
TranslatorSerbian::trPublicMembers
virtual QCString trPublicMembers()
Definition: translator_sr.h:630
TranslatorSerbian::trWriteList
virtual QCString trWriteList(int numEntries)
Definition: translator_sr.h:654
TranslatorSerbian::trClass
virtual QCString trClass(bool first_capital, bool singular)
Definition: translator_sr.h:1198
TranslatorSerbian::trModulesList
virtual QCString trModulesList()
Definition: translator_sr.h:1613
TranslatorSerbian::trNamespaceMembers
virtual QCString trNamespaceMembers()
Definition: translator_sr.h:709
TranslatorSerbian::trRelatedFunctionDocumentation
virtual QCString trRelatedFunctionDocumentation()
Definition: translator_sr.h:585
TranslatorSerbian::trDefines
virtual QCString trDefines()
Definition: translator_sr.h:424
TranslatorSerbian::trListOfAllMembers
virtual QCString trListOfAllMembers()
Definition: translator_sr.h:128
TranslatorSerbian::trEnumerationValueDocumentation
virtual QCString trEnumerationValueDocumentation()
Definition: translator_sr.h:1537
TranslatorSerbian::trModules
virtual QCString trModules()
Definition: translator_sr.h:170
TranslatorSerbian::trPrivateAttribs
virtual QCString trPrivateAttribs()
Definition: translator_sr.h:929
TranslatorSerbian::trDirReference
virtual QCString trDirReference(const QCString &dirName)
Definition: translator_sr.h:1498
ClassDef::Class
@ Class
Definition: classdef.h:107
TranslatorSerbian::trStaticPackageAttribs
virtual QCString trStaticPackageAttribs()
Definition: translator_sr.h:1391
TranslatorSerbian::trMainPage
virtual QCString trMainPage()
Definition: translator_sr.h:784
TranslatorSerbian::trPackageAttribs
virtual QCString trPackageAttribs()
Definition: translator_sr.h:1384
TranslatorSerbian::trConstructorDocumentation
virtual QCString trConstructorDocumentation()
Definition: translator_sr.h:830
TranslatorSerbian::trSubprogramDocumentation
virtual QCString trSubprogramDocumentation()
Definition: translator_sr.h:1603
TranslatorSerbian::trGraphicalHierarchy
virtual QCString trGraphicalHierarchy()
Definition: translator_sr.h:869
TranslatorSerbian::trClassDiagram
virtual QCString trClassDiagram(const QCString &clName)
Definition: translator_sr.h:514
TranslatorSerbian::trCompoundListFortran
virtual QCString trCompoundListFortran()
Definition: translator_sr.h:1550
TranslatorSerbian::trReferencedBy
virtual QCString trReferencedBy()
Definition: translator_sr.h:957
TranslatorSerbian::trStaticProtectedAttribs
virtual QCString trStaticProtectedAttribs()
Definition: translator_sr.h:921
TranslatorSerbian::trClassHierarchy
virtual QCString trClassHierarchy()
Definition: translator_sr.h:174
TranslatorSerbian::trLegendDocs
virtual QCString trLegendDocs()
Definition: translator_sr.h:991
TranslatorSerbian::trSourceFile
virtual QCString trSourceFile(QCString &filename)
Definition: translator_sr.h:1462
TranslatorSerbian::trPage
virtual QCString trPage(bool first_capital, bool singular)
Definition: translator_sr.h:1243
TranslatorSerbian::trDataTypes
virtual QCString trDataTypes()
Definition: translator_sr.h:1609
TranslatorSerbian::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_sr.h:1183
TranslatorSerbian::trImplementedInList
virtual QCString trImplementedInList(int)
Definition: translator_sr.h:1311
TranslatorSerbian::trEnumValue
virtual QCString trEnumValue()
Definition: translator_sr.h:158
TranslatorSerbian::trPublicTypes
virtual QCString trPublicTypes()
Definition: translator_sr.h:894
TranslatorSerbian::trDirDescription
virtual QCString trDirDescription()
Definition: translator_sr.h:1492
TranslatorSerbian::trEnumerationValues
virtual QCString trEnumerationValues()
Definition: translator_sr.h:454
TranslatorSerbian::trGotoGraphicalHierarchy
virtual QCString trGotoGraphicalHierarchy()
Definition: translator_sr.h:873
TranslatorSerbian::trDeprecated
virtual QCString trDeprecated()
Definition: translator_sr.h:810
TranslatorSerbian::trGeneratedBy
virtual QCString trGeneratedBy()
Definition: translator_sr.h:552
TranslatorSerbian::trDefinedInSourceFile
virtual QCString trDefinedInSourceFile()
Definition: translator_sr.h:801
TranslatorSerbian::trLegendTitle
virtual QCString trLegendTitle()
Definition: translator_sr.h:984
TranslatorSerbian::trMemberFunctionDocumentation
virtual QCString trMemberFunctionDocumentation()
Definition: translator_sr.h:107
TranslatorSerbian::trVariables
virtual QCString trVariables()
Definition: translator_sr.h:448
TranslatorSerbian::trImplementedFromList
virtual QCString trImplementedFromList(int)
Definition: translator_sr.h:1303
TranslatorSerbian::trCompoundMembersDescription
virtual QCString trCompoundMembersDescription(bool extractAll)
Definition: translator_sr.h:264
TranslatorSerbian::trNamespaceIndex
virtual QCString trNamespaceIndex()
Definition: translator_sr.h:727
TranslatorSerbian::trStaticPublicAttribs
virtual QCString trStaticPublicAttribs()
Definition: translator_sr.h:909
TranslatorSerbian::latexLanguageSupportCommand
virtual QCString latexLanguageSupportCommand()
Definition: translator_sr.h:71
TranslatorSerbian::trPrivateTypes
virtual QCString trPrivateTypes()
Definition: translator_sr.h:925
TranslatorSerbian::trRelatedPagesDescription
virtual QCString trRelatedPagesDescription()
Definition: translator_sr.h:332
TranslatorSerbian::trPageIndex
virtual QCString trPageIndex()
Definition: translator_sr.h:881
TranslatorSerbian::trVersion
virtual QCString trVersion()
Definition: translator_sr.h:528
TranslatorSerbian::trExampleDocumentation
virtual QCString trExampleDocumentation()
Definition: translator_sr.h:408
TranslatorSerbian::trTodo
virtual QCString trTodo()
Definition: translator_sr.h:943
TranslatorSerbian::trInheritedByList
virtual QCString trInheritedByList(int)
Definition: translator_sr.h:687
TranslatorSerbian::trExceptions
virtual QCString trExceptions()
Definition: translator_sr.h:548
TranslatorSerbian::trModulesMembers
virtual QCString trModulesMembers()
Definition: translator_sr.h:1655
TranslatorSerbian::trStaticPrivateMembers
virtual QCString trStaticPrivateMembers()
Definition: translator_sr.h:648
TranslatorSerbian::trReimplementedInList
virtual QCString trReimplementedInList(int numEntries)
Definition: translator_sr.h:703
TranslatorSerbian::trCompoundReferenceFortran
virtual QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_sr.h:1626
TranslatorSerbian::trTestList
virtual QCString trTestList()
Definition: translator_sr.h:1068
TranslatorSerbian::trRelatedFunctions
virtual QCString trRelatedFunctions()
Čini se da je ovako manje loše nego "Povezane funkcije", što uopšte ne izgleda dobro jer ta kartica s...
Definition: translator_sr.h:84
TranslatorSerbian::trReferences
virtual QCString trReferences()
Definition: translator_sr.h:1291
TranslatorSerbian::trCode
virtual QCString trCode()
Definition: translator_sr.h:865
TranslatorSerbian::trNamespaceListDescription
virtual QCString trNamespaceListDescription(bool extractAll)
Definition: translator_sr.h:564
TranslatorSerbian::trCompounds
virtual QCString trCompounds()
Definition: translator_sr.h:490
TranslatorSerbian::trCompoundList
virtual QCString trCompoundList()
Definition: translator_sr.h:178
TranslatorSerbian::trDirectories
virtual QCString trDirectories()
Definition: translator_sr.h:1486
TranslatorSerbian::trStaticPrivateAttribs
virtual QCString trStaticPrivateAttribs()
Definition: translator_sr.h:933
ClassDef::Category
@ Category
Definition: classdef.h:112
ClassDef::Struct
@ Struct
Definition: classdef.h:108
TranslatorSerbian::trNote
virtual QCString trNote()
Definition: translator_sr.h:890
TranslatorSerbian::trGotoSourceCode
virtual QCString trGotoSourceCode()
Definition: translator_sr.h:835
TranslatorSerbian::trCompoundIndexFortran
virtual QCString trCompoundIndexFortran()
Definition: translator_sr.h:1585
TranslatorSerbian::trAttention
virtual QCString trAttention()
Definition: translator_sr.h:965
TranslatorSerbian::trMemberEnumerationDocumentation
virtual QCString trMemberEnumerationDocumentation()
Ovo je u skladu sa "unutrašnja klasa" što se može videti u knjizi.
Definition: translator_sr.h:102
TranslatorSerbian::trSearchResultsTitle
virtual QCString trSearchResultsTitle()
Definition: translator_sr.h:1420
TranslatorSerbian::trEnumName
virtual QCString trEnumName()
Definition: translator_sr.h:154
TranslatorSerbian::trType
virtual QCString trType(bool first_capital, bool singular)
Definition: translator_sr.h:1718
TranslatorSerbian::trInclDepGraph
virtual QCString trInclDepGraph(const QCString &fName)
Definition: translator_sr.h:825
TranslatorSerbian::trMemberFunctionDocumentationFortran
virtual QCString trMemberFunctionDocumentationFortran()
Definition: translator_sr.h:1545
TranslatorSerbian::trISOLang
virtual QCString trISOLang()
Definition: translator_sr.h:76
TranslatorSerbian::trClassHierarchyDescription
virtual QCString trClassHierarchyDescription()
Definition: translator_sr.h:233
TranslatorSerbian::trHierarchicalIndex
virtual QCString trHierarchicalIndex()
Definition: translator_sr.h:354
TranslatorSerbian::trTypeConstraints
virtual QCString trTypeConstraints()
Definition: translator_sr.h:1736
TranslatorSerbian::trMemberDataDocumentation
virtual QCString trMemberDataDocumentation()
Definition: translator_sr.h:111
TranslatorSerbian::trModulesListDescription
virtual QCString trModulesListDescription(bool extractAll)
Definition: translator_sr.h:1617
TranslatorSerbian::trRelatedSubscript
virtual QCString trRelatedSubscript()
Definition: translator_sr.h:90
TranslatorSerbian::trInvariant
virtual QCString trInvariant()
Definition: translator_sr.h:855
TranslatorSerbian::trMember
virtual QCString trMember(bool first_capital, bool singular)
Definition: translator_sr.h:1254
TranslatorAdapter_1_6_0
Adapter class for languages that only contain translations up to version 1.6.0.
Definition: translator_adapter.h:323
TranslatorSerbian::trFileMembers
virtual QCString trFileMembers()
Definition: translator_sr.h:208
TranslatorSerbian::trGeneratedFromFilesFortran
virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single)
Definition: translator_sr.h:1694
Config_getBool
#define Config_getBool(name)
Definition: config.h:33
ClassDef::Protocol
@ Protocol
Definition: classdef.h:111
TranslatorSerbian::trCompoundReference
virtual QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_sr.h:593
TranslatorSerbian::trTypedefs
virtual QCString trTypedefs()
Definition: translator_sr.h:430
TranslatorSerbian::trBugList
virtual QCString trBugList()
Definition: translator_sr.h:1140
TranslatorSerbian::trPackageMembers
virtual QCString trPackageMembers()
Definition: translator_sr.h:1370
TranslatorSerbian::trFile
virtual QCString trFile(bool first_capital, bool singular)
Definition: translator_sr.h:1209
TranslatorSerbian::trInclByDepGraph
virtual QCString trInclByDepGraph()
Definition: translator_sr.h:969
TranslatorSerbian::trEnumerationTypeDocumentation
virtual QCString trEnumerationTypeDocumentation()
Definition: translator_sr.h:472
TranslatorSerbian::trSubprograms
virtual QCString trSubprograms()
Definition: translator_sr.h:1597
TranslatorSerbian::trPropertyDocumentation
virtual QCString trPropertyDocumentation()
Definition: translator_sr.h:1083
TranslatorSerbian::trModule
virtual QCString trModule(bool first_capital, bool singular)
Definition: translator_sr.h:1685
TranslatorSerbian::trMore
virtual QCString trMore()
Definition: translator_sr.h:124
TranslatorSerbian::trGeneratedFromFiles
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
Definition: translator_sr.h:753
TranslatorSerbian::trSearchResults
virtual QCString trSearchResults(int numDocuments)
Definition: translator_sr.h:1432
TranslatorSerbian::trNamespaceReference
virtual QCString trNamespaceReference(const QCString &namespaceName)
Definition: translator_sr.h:623
TranslatorSerbian::trPostcondition
virtual QCString trPostcondition()
Definition: translator_sr.h:850
TranslatorSerbian::trDocumentation
virtual QCString trDocumentation()
Definition: translator_sr.h:342
TranslatorSerbian::trDefineDocumentation
virtual QCString trDefineDocumentation()
Definition: translator_sr.h:460
TranslatorSerbian::trVariableDocumentation
virtual QCString trVariableDocumentation()
Definition: translator_sr.h:484
TranslatorSerbian::trMemberTypedefDocumentation
virtual QCString trMemberTypedefDocumentation()
Definition: translator_sr.h:98
TranslatorSerbian::trFileListDescription
virtual QCString trFileListDescription(bool extractAll)
Definition: translator_sr.h:237
TranslatorSerbian::trNamespaceMemberDescription
virtual QCString trNamespaceMemberDescription(bool extractAll)
Definition: translator_sr.h:713
TranslatorSerbian::trDeprecatedList
virtual QCString trDeprecatedList()
Definition: translator_sr.h:1335
TranslatorSerbian::trProtectedMembers
virtual QCString trProtectedMembers()
Definition: translator_sr.h:638
TranslatorSerbian::trGotoDocumentation
virtual QCString trGotoDocumentation()
Definition: translator_sr.h:840
TranslatorSerbian::trStaticPublicMembers
virtual QCString trStaticPublicMembers()
Definition: translator_sr.h:636
TranslatorSerbian::trProtectedAttribs
virtual QCString trProtectedAttribs()
Definition: translator_sr.h:917
TranslatorSerbian::trEventDocumentation
virtual QCString trEventDocumentation()
Definition: translator_sr.h:1352
TranslatorSerbian::trSince
virtual QCString trSince()
Definition: translator_sr.h:974
TranslatorSerbian
Definition: translator_sr.h:27
TranslatorSerbian::trGroup
virtual QCString trGroup(bool first_capital, bool singular)
Definition: translator_sr.h:1232
TranslatorSerbian::trPackage
virtual QCString trPackage(const QCString &name)
Definition: translator_sr.h:1105
TranslatorSerbian::trParameters
virtual QCString trParameters()
Definition: translator_sr.h:544
TranslatorSerbian::trFileIndex
virtual QCString trFileIndex()
Definition: translator_sr.h:375
TranslatorSerbian::trProtectedTypes
virtual QCString trProtectedTypes()
Definition: translator_sr.h:913
TranslatorSerbian::trPackages
virtual QCString trPackages()
Definition: translator_sr.h:1120
TranslatorSerbian::trTest
virtual QCString trTest()
Definition: translator_sr.h:1063
TranslatorSerbian::trTodoList
virtual QCString trTodoList()
Definition: translator_sr.h:948
TranslatorSerbian::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_sr.h:1174
TranslatorSerbian::trSignals
virtual QCString trSignals()
Definition: translator_sr.h:634
TranslatorSerbian::trAuthor
virtual QCString trAuthor(bool first_capital, bool singular)
Definition: translator_sr.h:1278
TranslatorSerbian::trIncludingInheritedMembers
virtual QCString trIncludingInheritedMembers()
Definition: translator_sr.h:140
TranslatorSerbian::trDetailedDescription
virtual QCString trDetailedDescription()
Definition: translator_sr.h:94
ClassDef::Exception
@ Exception
Definition: classdef.h:113
TranslatorSerbian::trPackageList
virtual QCString trPackageList()
Definition: translator_sr.h:1110
TranslatorSerbian::trBug
virtual QCString trBug()
Definition: translator_sr.h:1135
TranslatorSerbian::trMemberList
virtual QCString trMemberList()
Definition: translator_sr.h:132
TranslatorSerbian::trProtectedSlots
virtual QCString trProtectedSlots()
Definition: translator_sr.h:640
TranslatorSerbian::idLanguage
virtual QCString idLanguage()
Definition: translator_sr.h:54
TranslatorSerbian::trEvents
virtual QCString trEvents()
Definition: translator_sr.h:1347
TranslatorSerbian::trGeneratedAutomatically
virtual QCString trGeneratedAutomatically(const QCString &s)
Definition: translator_sr.h:146
TranslatorSerbian::trRTFGeneralIndex
virtual QCString trRTFGeneralIndex()
Definition: translator_sr.h:1189
TranslatorSerbian::trThisIsTheListOfAllMembers
virtual QCString trThisIsTheListOfAllMembers()
Definition: translator_sr.h:136
TranslatorSerbian::trModulesIndex
virtual QCString trModulesIndex()
Definition: translator_sr.h:1678
TranslatorSerbian::trReferenceManual
virtual QCString trReferenceManual()
Definition: translator_sr.h:418
TranslatorSerbian::trDefineValue
virtual QCString trDefineValue()
Definition: translator_sr.h:1125
TranslatorSerbian::trReturns
virtual QCString trReturns()
Definition: translator_sr.h:536
TranslatorSerbian::trReimplementedFromList
virtual QCString trReimplementedFromList(int numEntries)
Definition: translator_sr.h:695
TranslatorSerbian::trPrivateMembers
virtual QCString trPrivateMembers()
Definition: translator_sr.h:644
TranslatorSerbian::trPackageTypes
virtual QCString trPackageTypes()
Definition: translator_sr.h:1363
TranslatorSerbian::trCompoundMembers
virtual QCString trCompoundMembers()
Definition: translator_sr.h:195
TranslatorSerbian::trAll
virtual QCString trAll()
Definition: translator_sr.h:1403
TranslatorSerbian::trModulesMemberDescription
virtual QCString trModulesMemberDescription(bool extractAll)
Definition: translator_sr.h:1659
TranslatorSerbian::trCallerGraph
virtual QCString trCallerGraph()
Definition: translator_sr.h:1529
TranslatorSerbian::trCallGraph
virtual QCString trCallGraph()
Definition: translator_sr.h:1408
TranslatorSerbian::trPageAbbreviation
virtual QCString trPageAbbreviation()
Definition: translator_sr.h:790
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108
TranslatorSerbian::trEnumerations
virtual QCString trEnumerations()
Definition: translator_sr.h:436