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