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