Doxygen
Loading...
Searching...
No Matches
translator_sc.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_SC_H
17#define TRANSLATOR_SC_H
18
19/*!
20 When defining a translator class for the new language, follow
21 the description in the documentation. One of the steps says
22 that you should copy the translator_en.h (this) file to your
23 translator_xx.h new file. Your new language should use the
24 Translator class as the base class. This means that you need to
25 implement exactly the same (pure virtual) override methods as the
26 TranslatorEnglish does. Because of this, it is a good idea to
27 start with the copy of TranslatorEnglish and replace the strings
28 one by one.
29
30 It is not necessary to include "translator.h" or
31 "translator_adapter.h" here. The files are included in the
32 language.cpp correctly. Not including any of the mentioned
33 files frees the maintainer from thinking about whether the
34 first, the second, or both files should be included or not, and
35 why. This holds namely for localized translators because their
36 base class is changed occasionally to adapter classes when the
37 Translator class changes the interface, or back to the
38 Translator class (by the local maintainer) when the localized
39 translator is made up-to-date again.
40*/
42{
43 public:
44
45 // --- Language control methods -------------------
46
47 /*! Used for identification of the language. The identification
48 * should not be translated. It should be replaced by the name
49 * of the language in English using lower-case characters only
50 * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
51 * the identification used in language.cpp.
52 */
54 { return "serbian-cyrillic"; }
55
56 /*! Used to get the LaTeX command(s) for the language support.
57 * This method should return string with commands that switch
58 * LaTeX to the desired language. For example
59 * <pre>"\\usepackage[german]{babel}\n"
60 * </pre>
61 * or
62 * <pre>"\\usepackage{polski}\n"
63 * "\\usepackage[latin2]{inputenc}\n"
64 * "\\usepackage[T1]{fontenc}\n"
65 * </pre>
66 *
67 * The English LaTeX does not use such commands. Because of this
68 * the empty string is returned in this implementation.
69 */
71 {
72 return "\\usepackage[T2A]{fontenc}\n"
73 "\\usepackage[serbianc]{babel}\n";
74 }
76 {
77 return "";
78 }
79 DString trISOLang() override
80 {
81 return "sr-Cyrl";
82 }
84 {
85 return "0xC1A Serbian (Serbia, Cyrillic)";
86 }
87
88 // --- Language translation methods -------------------
89
90 /*! used in the compound documentation before a list of related functions. */
92 { return "Повезане функције"; }
93
94 /*! subscript for the related functions. */
96 { return "(Напомињемо да ово нису функције чланице.)"; }
97
98 /*! header that is put before the detailed description of files, classes and namespaces. */
100 { return "Опширније"; }
101
102 /*! header that is used when the summary tag is missing inside the details tag */
104 { return "Детаљи"; }
105
106 /*! header that is put before the list of typedefs. */
108 { return "Документација дефиниције типа"; }
109
110 /*! header that is put before the list of enumerations. */
112 { return "Документација члана набрајања"; }
113
114 /*! header that is put before the list of member functions. */
116 { return "Документација функције чланице"; }
117
118 /*! header that is put before the list of member attributes. */
120 {
121 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
122 {
123 return "Документација поља";
124 }
125 else
126 {
127 return "Документација атрибута";
128 }
129 }
130
131 /*! this is the text of a link put after brief descriptions. */
132 DString trMore() override
133 { return "Још..."; }
134
135 /*! put in the class documentation */
137 { return "Списак свих чланова"; }
138
139 /*! used as the title of the "list of all members" page of a class */
141 { return "Списак чланова"; }
142
143 /*! this is the first part of a sentence that is followed by a class name */
145 { return "Ово је списак свих чланова од"; }
146
147 /*! this is the remainder of the sentence after the class name */
149 { return ", укључујући све наслеђене чланове."; }
150
151 /*! this is put at the author sections at the bottom of man pages.
152 * parameter s is name of the project name.
153 */
155 { DString result="Аутоматски направљено помоћу Doxygen-а";
156 if (!s.empty()) result+=" за "+s;
157 result+=" из изворног кода.";
158 return result;
159 }
160
161 /*! put after an enum name in the list of all members */
163 { return "назив набрајања"; }
164
165 /*! put after an enum value in the list of all members */
167 { return "вредност набрајања"; }
168
169 /*! put after an undocumented member in the list of all members */
171 { return "дефинисано у"; }
172
173 // quick reference sections
174
175 /*! This is put above each page as a link to the list of all groups of
176 * compounds or files (see the \\group command).
177 */
179 { return "Модули"; }
180
181 /*! This is put above each page as a link to the class hierarchy */
183 { return "Хијерархија класа"; }
184
185 /*! This is put above each page as a link to the list of annotated classes */
187 {
188 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
189 {
190 return "Структуре";
191 }
192 else
193 {
194 return "Списак класа";
195 }
196 }
197
198 /*! This is put above each page as a link to the list of documented files */
200 { return "Списак датотека"; }
201
202 /*! This is put above each page as a link to all members of compounds. */
204 {
205 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
206 {
207 return "Поља";
208 }
209 else
210 {
211 return "Чланови класе";
212 }
213 }
214
215 /*! This is put above each page as a link to all members of files. */
217 {
218 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
219 {
220 return "Глобално";
221 }
222 else
223 {
224 return "Чланови датотеке";
225 }
226 }
227
228 /*! This is put above each page as a link to all related pages. */
230 { return "Повезане странице"; }
231
232 /*! This is put above each page as a link to all examples. */
234 { return "Примери"; }
235
236 /*! This is put above each page as a link to the search engine. */
237 DString trSearch() override
238 { return "Тражи"; }
239
240 /*! This is an introduction to the class hierarchy. */
242 { return "Овај списак наслеђивања је уређен "
243 "скоро по абецеди:";
244 }
245
246 /*! This is an introduction to the list with all files. */
247 DString trFileListDescription(bool extractAll) override
248 {
249 DString result="Овде је списак свих ";
250 if (!extractAll) result+="документованих ";
251 result+="датотека са кратким описима:";
252 return result;
253 }
254
255 /*! This is an introduction to the annotated compound list. */
257 {
258
259 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
260 {
261 return "Овде су структуре са кратким описима:";
262 }
263 else if (Config_getBool(OPTIMIZE_OUTPUT_SLICE))
264 {
265 return "Овде су класе са кратким описима:";
266 }
267 else
268 {
269 return "Овде су класе, структуре, "
270 "уније и интерфејси са кратким описима:";
271 }
272 }
273
274 /*! This is an introduction to the page with all class members. */
275 DString trCompoundMembersDescription(bool extractAll) override
276 {
277 DString result="Овде је списак свих ";
278 if (!extractAll)
279 {
280 result+="документованих ";
281 }
282 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
283 {
284 result+="поља структура и унија";
285 }
286 else
287 {
288 result+="чланова класа";
289 }
290 result+=" са везама ка ";
291 if (!extractAll)
292 {
293 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
294 {
295 result+="документацији структуре/уније за свако поље:";
296 }
297 else
298 {
299 result+="документацији класе за сваки члан:";
300 }
301 }
302 else
303 {
304 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
305 {
306 result+="структури/унији којој припадају:";
307 }
308 else
309 {
310 result+="класи којој припадају:";
311 }
312 }
313 return result;
314 }
315
316 /*! This is an introduction to the page with all file members. */
317 DString trFileMembersDescription(bool extractAll) override
318 {
319 DString result="Овде је списак свих ";
320 if (!extractAll) result+="документованих ";
321
322 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
323 {
324 result+="фрункција, променљивих, макро замена, набрајања, и дефиниција типова";
325 }
326 else
327 {
328 result+="чланова датотеке";
329 }
330 result+=" са везама ка ";
331 if (extractAll)
332 result+="датотекама којима припадају:";
333 else
334 result+="документацији:";
335 return result;
336 }
337
338 /*! This is an introduction to the page with the list of all examples */
340 { return "Овде је списак свих примера:"; }
341
342 /*! This is an introduction to the page with the list of related pages */
344 { return "Овде је списак свих повезаних страница документације:"; }
345
346 /*! This is an introduction to the page with the list of class/file groups */
348 { return "Овде је списак свих модула:"; }
349
350 // index titles (the project name is prepended for these)
351
352 /*! This is used in HTML as the title of index.html. */
353 DString trDocumentation(const DString &projName) override
354 { return (!projName.empty()?projName + " " : "") + "Документација"; }
355
356 /*! This is used in LaTeX as the title of the chapter with the
357 * index of all groups.
358 */
360 { return "Индекс модула"; }
361
362 /*! This is used in LaTeX as the title of the chapter with the
363 * class hierarchy.
364 */
366 { return "Хијерархијски индекс"; }
367
368 /*! This is used in LaTeX as the title of the chapter with the
369 * annotated compound index.
370 */
372 {
373 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
374 {
375 return "Индекс структура";
376 }
377 else
378 {
379 return "Индекс класа";
380 }
381 }
382
383 /*! This is used in LaTeX as the title of the chapter with the
384 * list of all files.
385 */
387 { return "Индекс датотека"; }
388
389 /*! This is used in LaTeX as the title of the chapter containing
390 * the documentation of all groups.
391 */
393 { return "Документација модула"; }
394
395 /*! This is used in LaTeX as the title of the chapter containing
396 * the documentation of all classes, structs and unions.
397 */
399 {
400 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
401 {
402 return "Документација структуре";
403 }
404 else if (Config_getBool(OPTIMIZE_OUTPUT_VHDL))
405 {
407 }
408 else
409 {
410 return "Документација класе";
411 }
412 }
413
414 /*! This is used in LaTeX as the title of the chapter containing
415 * the documentation of all files.
416 */
418 { return "Документација датотеке"; }
419
420 /*! This is used in LaTeX as the title of the document */
422 { return "Приручник"; }
423
424 /*! This is used in the documentation of a file as a header before the
425 * list of defines
426 */
428 { return "Дефиниције"; }
429
430 /*! This is used in the documentation of a file as a header before the
431 * list of typedefs
432 */
434 { return "Дефиниције типова"; }
435
436 /*! This is used in the documentation of a file as a header before the
437 * list of enumerations
438 */
440 { return "Набрајања"; }
441
442 /*! This is used in the documentation of a file as a header before the
443 * list of (global) functions
444 */
446 { return "Функције"; }
447
448 /*! This is used in the documentation of a file as a header before the
449 * list of (global) variables
450 */
452 { return "Променљиве"; }
453
454 /*! This is used in the documentation of a file as a header before the
455 * list of (global) variables
456 */
458 { return "Вредности набрајања"; }
459
460 /*! This is used in the documentation of a file before the list of
461 * documentation blocks for defines
462 */
464 { return "Документација дефиниције"; }
465
466 /*! This is used in the documentation of a file/namespace before the list
467 * of documentation blocks for typedefs
468 */
470 { return "Документација дефиниције типа"; }
471
472 /*! This is used in the documentation of a file/namespace before the list
473 * of documentation blocks for enumeration types
474 */
476 { return "Документација набрајања"; }
477
478 /*! This is used in the documentation of a file/namespace before the list
479 * of documentation blocks for functions
480 */
482 { return "Документација функције"; }
483
484 /*! This is used in the documentation of a file/namespace before the list
485 * of documentation blocks for variables
486 */
488 { return "Документација променљиве"; }
489
490 /*! This is used in the documentation of a file/namespace/group before
491 * the list of links to documented compounds
492 */
494 {
495 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
496 {
497 return "Структуре";
498 }
499 else
500 {
501 return "Класе";
502 }
503 }
504
505 /*! This is used in the standard footer of each page and indicates when
506 * the page was generated
507 */
508 DString trGeneratedAt(const DString &date,const DString &projName) override
509 {
510 DString result="Направљено "+date;
511 if (!projName.empty()) result+=" за "+projName;
512 result+=" помоћу";
513 return result;
514 }
515
516 /*! this text is put before a class diagram */
517 DString trClassDiagram(const DString &clName) override
518 {
519 return "Дијаграм наслеђивања за "+clName+":";
520 }
521
522 /*! this text is generated when the \\warning command is used. */
524 { return "Упозорење"; }
525
526 /*! this text is generated when the \\version command is used. */
528 { return "Верзија"; }
529
530 /*! this text is generated when the \\date command is used. */
531 DString trDate() override
532 { return "Датум"; }
533
534 /*! this text is generated when the \\return command is used. */
536 { return "Враћа"; }
537
538 /*! this text is generated when the \\sa command is used. */
540 { return "Види"; }
541
542 /*! this text is generated when the \\param command is used. */
544 { return "Параметри"; }
545
546 /*! this text is generated when the \\exception command is used. */
548 { return "Изизеци"; }
549
550 /*! this text is used in the title page of a LaTeX document. */
552 { return "Направљено помоћу"; }
553
554//////////////////////////////////////////////////////////////////////////
555// new since 0.49-990307
556//////////////////////////////////////////////////////////////////////////
557
558 /*! used as the title of page containing all the index of all namespaces. */
560 { return "Списак простора имена"; }
561
562 /*! used as an introduction to the namespace list */
563 DString trNamespaceListDescription(bool extractAll) override
564 {
565 DString result="Овде је списак свих ";
566 if (!extractAll) result+="документованих ";
567 result+="простора имена са кратким описима:";
568 return result;
569 }
570
571 /*! used in the class documentation as a header before the list of all
572 * friends of a class
573 */
575 { return "Пријатељи"; }
576
577//////////////////////////////////////////////////////////////////////////
578// new since 0.49-990405
579//////////////////////////////////////////////////////////////////////////
580
581 /*! used in the class documentation as a header before the list of all
582 * related classes
583 */
585 { return "Документација за пријатеље и повезане функције"; }
586
587//////////////////////////////////////////////////////////////////////////
588// new since 0.49-990425
589//////////////////////////////////////////////////////////////////////////
590
591 /*! used as the title of the HTML page of a class/struct/union */
593 ClassDef::CompoundType compType,
594 bool isTemplate) override
595 {
596 DString result=clName;
597 if (isTemplate)
598 {
599 result+=" Шаблон";
600 switch(compType)
601 {
602 case ClassDef::Class: result+="ска класа"; break;
603 case ClassDef::Struct: result+="ска структура"; break;
604 case ClassDef::Union: result+="ска унија"; break;
605 case ClassDef::Interface: result+="ски интерфејс"; break;
606 case ClassDef::Protocol: result+="ски протокол"; break;
607 case ClassDef::Category: result+="ска категорија"; break;
608 case ClassDef::Exception: result+="ски изузетак"; break;
609 default: break;
610 }
611 }
612 else
613 {
614 result+=" Референца";
615 switch(compType)
616 {
617 case ClassDef::Class: result+=" класе"; break;
618 case ClassDef::Struct: result+=" структуре"; break;
619 case ClassDef::Union: result+=" уније"; break;
620 case ClassDef::Interface: result+=" интерфејса"; break;
621 case ClassDef::Protocol: result+=" протокола"; break;
622 case ClassDef::Category: result+=" категорије"; break;
623 case ClassDef::Exception: result+=" изузетка"; break;
624 default: break;
625 }
626 }
627 return result;
628 }
629
630 /*! used as the title of the HTML page of a file */
631 DString trFileReference(const DString &fileName) override
632 {
633 DString result=fileName;
634 result+=" Референца датотеке";
635 return result;
636 }
637
638 /*! used as the title of the HTML page of a namespace */
639 DString trNamespaceReference(const DString &namespaceName) override
640 {
641 DString result=namespaceName;
642 result+=" Референца простора имена";
643 return result;
644 }
645
647 { return "Јавне функције чланице"; }
649 { return "Јавни слотови"; }
651 { return "Сигнали"; }
653 { return "Статичке јавне функције чланице"; }
655 { return "Заштићене функције чланице"; }
657 { return "Заштићени слотови"; }
659 { return "Статичке заштићене функције чланице"; }
661 { return "Приватне функције чланице"; }
663 { return "Приватни слотови"; }
665 { return "Статичке приватне функције чланице"; }
666
667 /*! this function is used to produce a comma-separated list of items.
668 * use generateMarker(i) to indicate where item i should be put.
669 */
670 DString trWriteList(int numEntries) override
671 {
672 DString result;
673 // the inherits list contain `numEntries' classes
674 for (int i=0;i<numEntries;i++)
675 {
676 // use generateMarker to generate placeholders for the class links!
677 result+=generateMarker(i); // generate marker for entry i in the list
678 // (order is left to right)
679
680 if (i!=numEntries-1) // not the last entry, so we need a separator
681 {
682 if (i<numEntries-2) // not the fore last entry
683 result+=", ";
684 else // the fore last entry
685 result+=" и ";
686 }
687 }
688 return result;
689 }
690
691 /*! used in class documentation to produce a list of base classes,
692 * if class diagrams are disabled.
693 */
694 DString trInheritsList(int numEntries) override
695 {
696 return "Наслеђује "+trWriteList(numEntries)+".";
697 }
698
699 /*! used in class documentation to produce a list of super classes,
700 * if class diagrams are disabled.
701 */
702 DString trInheritedByList(int numEntries) override
703 {
704 return "Наслеђују "+trWriteList(numEntries)+".";
705 }
706
707 /*! used in member documentation blocks to produce a list of
708 * members that are hidden by this one.
709 */
710 DString trReimplementedFromList(int numEntries) override
711 {
712 return "Поново имплементирано од "+trWriteList(numEntries)+".";
713 }
714
715 /*! used in member documentation blocks to produce a list of
716 * all member that overwrite the implementation of this member.
717 */
718 DString trReimplementedInList(int numEntries) override
719 {
720 return "Поново имплементирано у "+trWriteList(numEntries)+".";
721 }
722
723 /*! This is put above each page as a link to all members of namespaces. */
725 { return "Чланови простора имена"; }
726
727 /*! This is an introduction to the page with all namespace members */
728 DString trNamespaceMemberDescription(bool extractAll) override
729 {
730 DString result="Овде је списак свих ";
731 if (!extractAll) result+="документованих ";
732 result+="чланова простора имена са везама ка ";
733 if (extractAll)
734 result+="документацији простора имена за сваки члан:";
735 else
736 result+="просторима имена којима припадају:";
737 return result;
738 }
739 /*! This is used in LaTeX as the title of the chapter with the
740 * index of all namespaces.
741 */
743 { return "Индекс простора имена"; }
744
745 /*! This is used in LaTeX as the title of the chapter containing
746 * the documentation of all namespaces.
747 */
749 { return "Документација простора имена"; }
750
751//////////////////////////////////////////////////////////////////////////
752// new since 0.49-990522
753//////////////////////////////////////////////////////////////////////////
754
755 /*! This is used in the documentation before the list of all
756 * namespaces in a file.
757 */
759 { return "Простори имена"; }
760
761//////////////////////////////////////////////////////////////////////////
762// new since 0.49-990728
763//////////////////////////////////////////////////////////////////////////
764
765 /*! This is put at the bottom of a class documentation page and is
766 * followed by a list of files that were used to generate the page.
767 */
769 bool single) override
770 { // here s is one of " Class", " Struct" or " Union"
771 // single is true implies a single file
772 DString result="Документација за ";
773 switch(compType)
774 {
775 case ClassDef::Class: result+="ову класу"; break;
776 case ClassDef::Struct: result+="ову структуру"; break;
777 case ClassDef::Union: result+="ову унију"; break;
778 case ClassDef::Interface: result+="овај интерфејс"; break;
779 case ClassDef::Protocol: result+="овај протокол"; break;
780 case ClassDef::Category: result+="ову категорију"; break;
781 case ClassDef::Exception: result+="овај изузетак"; break;
782 default: break;
783 }
784 result+=" је произведена из";
785 if (single) result+="следеће датотеке:"; else result+="следећих датотека:";
786 return result;
787 }
788
789//////////////////////////////////////////////////////////////////////////
790// new since 0.49-990901
791//////////////////////////////////////////////////////////////////////////
792
793 /*! This is used as the heading text for the retval command. */
795 { return "Враћене вредности"; }
796
797 /*! This is in the (quick) index as a link to the main page (index.html)
798 */
800 { return "Главна страница"; }
801
802 /*! This is used in references to page that are put in the LaTeX
803 * documentation. It should be an abbreviation of the word page.
804 */
806 { return "стр."; }
807
808//////////////////////////////////////////////////////////////////////////
809// new since 0.49-991003
810//////////////////////////////////////////////////////////////////////////
811
813 {
814 return "Дефиниција у линији @0 датотеке @1.";
815 }
817 {
818 return "Дефиниција у датотеци @0.";
819 }
820
821//////////////////////////////////////////////////////////////////////////
822// new since 0.49-991205
823//////////////////////////////////////////////////////////////////////////
824
826 {
827 return "Застарело";
828 }
829
830//////////////////////////////////////////////////////////////////////////
831// new since 1.0.0
832//////////////////////////////////////////////////////////////////////////
833
834 /*! this text is put before a collaboration diagram */
835 DString trCollaborationDiagram(const DString &clName) override
836 {
837 return "Дијаграм сарадње за "+clName+":";
838 }
839 /*! this text is put before an include dependency graph */
840 DString trInclDepGraph(const DString &fName) override
841 {
842 return "Дијаграм зависности укључивања за "+fName+":";
843 }
844 /*! header that is put before the list of constructor/destructors. */
846 {
847 return "Документација конструктора и деструктора";
848 }
849 /*! Used in the file documentation to point to the corresponding sources. */
851 {
852 return "Иди на изворни код овог фајла.";
853 }
854 /*! Used in the file sources to point to the corresponding documentation. */
856 {
857 return "Иди на документацију овог фајла.";
858 }
859 /*! Text for the \\pre command */
861 {
862 return "Услов пре";
863 }
864 /*! Text for the \\post command */
866 {
867 return "Услов после";
868 }
869 /*! Text for the \\invariant command */
871 {
872 return "Инваријанта";
873 }
874 /*! Text shown before a multi-line variable/enum initialization */
876 {
877 return "Почетна вредност:";
878 }
879 /*! Text used the source code in the file index */
880 DString trCode() override
881 {
882 return "код";
883 }
885 {
886 return "Графичка хијерархија класа";
887 }
889 {
890 return "Иди на графичку хијерархију класа";
891 }
893 {
894 return "Иди на текстуалну хијерархију класа";
895 }
897 {
898 return "Индекс страна";
899 }
900
901//////////////////////////////////////////////////////////////////////////
902// new since 1.1.0
903//////////////////////////////////////////////////////////////////////////
904
905 DString trNote() override
906 {
907 return "Напомена";
908 }
910 {
911 return "Јавни типови";
912 }
914 {
915 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
916 {
917 return "Поља";
918 }
919 else
920 {
921 return "Јавни атрибути";
922 }
923 }
925 {
926 return "Статички јавни атрибути";
927 }
929 {
930 return "Заштићени типови";
931 }
933 {
934 return "Заштићени атрибути";
935 }
937 {
938 return "Статички заштићени атрибути";
939 }
941 {
942 return "Приватни типови";
943 }
945 {
946 return "Приватни атрибути";
947 }
949 {
950 return "Статички приватни атрибути";
951 }
952
953//////////////////////////////////////////////////////////////////////////
954// new since 1.1.3
955//////////////////////////////////////////////////////////////////////////
956
957 /*! Used as a marker that is put before a \\todo item */
958 DString trTodo() override
959 {
960 return "Урадити";
961 }
962 /*! Used as the header of the todo list */
964 {
965 return "Подсетник шта још урадити";
966 }
967
968//////////////////////////////////////////////////////////////////////////
969// new since 1.1.4
970//////////////////////////////////////////////////////////////////////////
971
973 {
974 return "Референцирано од";
975 }
977 {
978 return "Напомене";
979 }
981 {
982 return "Пажња";
983 }
985 {
986 return "Овај граф показује које датотеке директно или "
987 "или индиректно укључују овај фајл:";
988 }
989 DString trSince() override
990 {
991 return "Од";
992 }
993
994//////////////////////////////////////////////////////////////////////////
995// new since 1.1.5
996//////////////////////////////////////////////////////////////////////////
997
998 /*! title of the graph legend page */
1000 {
1001 return "Легенда графова";
1002 }
1003 /*! page explaining how the dot graph's should be interpreted
1004 * The %A in the text below are to prevent link to classes called "A".
1005 */
1007 {
1008 return
1009 "Ова страница објашњава како тумачити графове који су направљени "
1010 "doxygen-ом.<p>\n"
1011 "Размотримо следећи пример:\n"
1012 "\\code\n"
1013 "/*! Невидљива класа због одсецања */\n"
1014 "class Invisible { };\n\n"
1015 "/*! Одсечена класа, веза наслеђивања је скривена */\n"
1016 "class Truncated : public Invisible { };\n\n"
1017 "/* Класа која није документована doxygen коментарима */\n"
1018 "class Undocumented { };\n\n"
1019 "/*! Класа која је наслеђена јавним наслеђивањем */\n"
1020 "class PublicBase : public Truncated { };\n\n"
1021 "/*! Шаблонска класа */\n"
1022 "template<class T> class Templ { };\n\n"
1023 "/*! Класа која је наслеђена заштићеним наслеђивањем */\n"
1024 "class ProtectedBase { };\n\n"
1025 "/*! Класа која је наслеђена јавним наслеђивањем */\n"
1026 "class PrivateBase { };\n\n"
1027 "/*! Класа коју користи наслеђена класа */\n"
1028 "class Used { };\n\n"
1029 "/*! Надкласа која наслеђује неки број других класа */\n"
1030 "class Inherited : public PublicBase,\n"
1031 " protected ProtectedBase,\n"
1032 " private PrivateBase,\n"
1033 " public Undocumented,\n"
1034 " public Templ<int>\n"
1035 "{\n"
1036 " private:\n"
1037 " Used *m_usedClass;\n"
1038 "};\n"
1039 "\\endcode\n"
1040 "Ако је \\c MAX_DOT_GRAPH_HEIGHT таг у конфигурационој датотеци "
1041 "подешен на 240, то ће резултовати на следећи начин:"
1042 "<p><center><img alt=\"\" src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1043 "<p>\n"
1044 "Правоугаоници имају следеће значење:\n"
1045 "<ul>\n"
1046 "<li>%Пуни сиви правоугаоник представља структуру или класу за коју је "
1047 "граф направљен.\n"
1048 "<li>%Правоугаоник са црним оквиром означава документовану структуру или класу.\n"
1049 "<li>%Правоугаоник са сивим оквиром означава недокументовану структуру или класу.\n"
1050 "<li>%Правоугаоник са црвеним оквиром означава документовану структуру или класу за"
1051 "за коју нису све релације наслеђивања/садржавања приказане. %Граф је "
1052 "одсечен ако излази из специфицираних оквира.\n"
1053 "</ul>\n"
1054 "Стрелице имају следећа значења:\n"
1055 "<ul>\n"
1056 "<li>%Тамноплава стрелица се користи да прикаже релацију јавног извођења "
1057 "између двеју класа.\n"
1058 "<li>%Тамнозелена стрелица се користи за заштићено наслеђивање.\n"
1059 "<li>%Тамноцрвена стрелица се користи за приватно наслеђивање.\n"
1060 "<li>%Љубичаста испрекидана стрелица се користи ако класа садржи или користи "
1061 "друга класа. Стрелица је означена променљивом/променљивама "
1062 "кроз које је показивана класа или структура доступна.\n"
1063 "<li>%Жута испрекидана стрелица означава везу између примерка шаблона и "
1064 "и шаблонске класе из које је инстанцирана. Стрелица је означена "
1065 "параметрима примерка шаблона.\n"
1066 "</ul>\n";
1067 }
1068 /*! text for the link to the legend page */
1070 {
1071 return "легенда";
1072 }
1073
1074//////////////////////////////////////////////////////////////////////////
1075// new since 1.2.0
1076//////////////////////////////////////////////////////////////////////////
1077
1078 /*! Used as a marker that is put before a test item */
1079 DString trTest() override
1080 {
1081 return "Тест";
1082 }
1083 /*! Used as the header of the test list */
1085 {
1086 return "Списак тестова";
1087 }
1088
1089//////////////////////////////////////////////////////////////////////////
1090// new since 1.2.2
1091//////////////////////////////////////////////////////////////////////////
1092
1093 /*! Used as a section header for IDL properties */
1095 {
1096 return "Своства";
1097 }
1098 /*! Used as a section header for IDL property documentation */
1100 {
1101 return "Документација свосјтва";
1102 }
1103
1104//////////////////////////////////////////////////////////////////////////
1105// new since 1.2.4
1106//////////////////////////////////////////////////////////////////////////
1107
1108 /*! Used for Java classes in the summary section of Java packages */
1110 {
1111 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1112 {
1113 return "Структуре";
1114 }
1115 else
1116 {
1117 return "Класе";
1118 }
1119 }
1120 /*! Used as the title of a Java package */
1121 DString trPackage(const DString &name) override
1122 {
1123 return "Пакет "+name;
1124 }
1125 /*! The description of the package index page */
1127 {
1128 return "Овде су пакети са кратким описима (ако су доступни):";
1129 }
1130 /*! The link name in the Quick links header for each page */
1132 {
1133 return "Пакети";
1134 }
1135 /*! Text shown before a multi-line define */
1137 {
1138 return "Вредност:";
1139 }
1140
1141//////////////////////////////////////////////////////////////////////////
1142// new since 1.2.5
1143//////////////////////////////////////////////////////////////////////////
1144
1145 /*! Used as a marker that is put before a \\bug item */
1146 DString trBug() override
1147 {
1148 return "Грешка";
1149 }
1150 /*! Used as the header of the bug list */
1152 {
1153 return "Списак грешака";
1154 }
1155
1156//////////////////////////////////////////////////////////////////////////
1157// new since 1.2.6
1158//////////////////////////////////////////////////////////////////////////
1159
1160 /*! Used as ansicpg for RTF file
1161 *
1162 * The following table shows the correlation of Charset name, Charset Value and
1163 * <pre>
1164 * Codepage number:
1165 * Charset Name Charset Value(hex) Codepage number
1166 * ------------------------------------------------------
1167 * DEFAULT_CHARSET 1 (x01)
1168 * SYMBOL_CHARSET 2 (x02)
1169 * OEM_CHARSET 255 (xFF)
1170 * ANSI_CHARSET 0 (x00) 1252
1171 * RUSSIAN_CHARSET 204 (xCC) 1251
1172 * EE_CHARSET 238 (xEE) 1250
1173 * GREEK_CHARSET 161 (xA1) 1253
1174 * TURKISH_CHARSET 162 (xA2) 1254
1175 * BALTIC_CHARSET 186 (xBA) 1257
1176 * HEBREW_CHARSET 177 (xB1) 1255
1177 * ARABIC _CHARSET 178 (xB2) 1256
1178 * SHIFTJIS_CHARSET 128 (x80) 932
1179 * HANGEUL_CHARSET 129 (x81) 949
1180 * GB2313_CHARSET 134 (x86) 936
1181 * CHINESEBIG5_CHARSET 136 (x88) 950
1182 * </pre>
1183 *
1184 */
1186 {
1187 return "1251";
1188 }
1189
1190
1191 /*! Used as ansicpg for RTF fcharset
1192 * \see trRTFansicp() for a table of possible values.
1193 */
1195 {
1196 return "204";
1197 }
1198
1199 /*! Used as header RTF general index */
1201 {
1202 return "Индекс";
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 DString trClass(bool first_capital, bool singular) override
1210 {
1211 return createNoun(first_capital, singular, "клас", "e", "a");
1212 }
1213
1214 /*! This is used for translation of the word that will possibly
1215 * be followed by a single name or by a list of names
1216 * of the category.
1217 */
1218 DString trFile(bool first_capital, bool singular) override
1219 {
1220 return createNoun(first_capital, singular, "датотек", "e", "a");
1221 }
1222
1223 /*! This is used for translation of the word that will possibly
1224 * be followed by a single name or by a list of names
1225 * of the category.
1226 */
1227 DString trNamespace(bool first_capital, bool singular) override
1228 {
1229 return createNoun(first_capital, singular, "простор", "и имена", " имена");
1230 }
1231
1232 /*! This is used for translation of the word that will possibly
1233 * be followed by a single name or by a list of names
1234 * of the category.
1235 */
1236 DString trGroup(bool first_capital, bool singular) override
1237 {
1238 return createNoun(first_capital, singular, "груп", "е", "a");
1239 }
1240
1241 /*! This is used for translation of the word that will possibly
1242 * be followed by a single name or by a list of names
1243 * of the category.
1244 */
1245 DString trPage(bool first_capital, bool singular) override
1246 {
1247 return createNoun(first_capital, singular, "страниц", "е", "a");
1248 }
1249
1250 /*! This is used for translation of the word that will possibly
1251 * be followed by a single name or by a list of names
1252 * of the category.
1253 */
1254 DString trMember(bool first_capital, bool singular) override
1255 {
1256 return createNoun(first_capital, singular, "члан", "ови");
1257 }
1258
1259 /*! This is used for translation of the word that will possibly
1260 * be followed by a single name or by a list of names
1261 * of the category.
1262 */
1263 DString trGlobal(bool first_capital, bool singular) override
1264 {
1265 return createNoun(first_capital, singular, "глобалн", "а", "о");
1266 }
1267
1268//////////////////////////////////////////////////////////////////////////
1269// new since 1.2.7
1270//////////////////////////////////////////////////////////////////////////
1271
1272 /*! This text is generated when the \\author command is used and
1273 * for the author section in man pages. */
1274 DString trAuthor(bool first_capital, bool singular) override
1275 {
1276 return createNoun(first_capital, singular, "аутор", "и");
1277 }
1278
1279//////////////////////////////////////////////////////////////////////////
1280// new since 1.2.11
1281//////////////////////////////////////////////////////////////////////////
1282
1283 /*! This text is put before the list of members referenced by a member
1284 */
1286 {
1287 return "Референце";
1288 }
1289
1290//////////////////////////////////////////////////////////////////////////
1291// new since 1.2.13
1292//////////////////////////////////////////////////////////////////////////
1293
1294 /*! used in member documentation blocks to produce a list of
1295 * members that are implemented by this one.
1296 */
1297 DString trImplementedFromList(int numEntries) override
1298 {
1299 return "Имплементира "+trWriteList(numEntries)+".";
1300 }
1301
1302 /*! used in member documentation blocks to produce a list of
1303 * all members that implement this abstract member.
1304 */
1305 DString trImplementedInList(int numEntries) override
1306 {
1307 return "Имплементирано у "+trWriteList(numEntries)+".";
1308 }
1309
1310//////////////////////////////////////////////////////////////////////////
1311// new since 1.2.16
1312//////////////////////////////////////////////////////////////////////////
1313
1314 /*! used in RTF documentation as a heading for the Table
1315 * of Contents.
1316 */
1318 {
1319 return "Садржај";
1320 }
1321
1322//////////////////////////////////////////////////////////////////////////
1323// new since 1.2.17
1324//////////////////////////////////////////////////////////////////////////
1325
1326 /*! Used as the header of the list of item that have been
1327 * flagged deprecated
1328 */
1330 {
1331 return "Списак застарелог";
1332 }
1333
1334//////////////////////////////////////////////////////////////////////////
1335// new since 1.2.18
1336//////////////////////////////////////////////////////////////////////////
1337
1338 /*! Used as a header for declaration section of the events found in
1339 * a C# program
1340 */
1342 {
1343 return "Догађаји";
1344 }
1345 /*! Header used for the documentation section of a class' events. */
1347 {
1348 return "Документација догажаја";
1349 }
1350
1351//////////////////////////////////////////////////////////////////////////
1352// new since 1.3
1353//////////////////////////////////////////////////////////////////////////
1354
1355 /*! Used as a heading for a list of Java class types with package scope.
1356 */
1358 {
1359 return "Типови пакета";
1360 }
1361 /*! Used as a heading for a list of Java class functions with package
1362 * scope.
1363 */
1365 {
1366 return "Функције пакета";
1367 }
1369 {
1370 return "Чланови пакета";
1371 }
1372 /*! Used as a heading for a list of static Java class functions with
1373 * package scope.
1374 */
1376 {
1377 return "Статичке функције пакета";
1378 }
1379 /*! Used as a heading for a list of Java class variables with package
1380 * scope.
1381 */
1383 {
1384 return "Атрибути пакета";
1385 }
1386 /*! Used as a heading for a list of static Java class variables with
1387 * package scope.
1388 */
1390 {
1391 return "Статички атрибути пакета";
1392 }
1393
1394//////////////////////////////////////////////////////////////////////////
1395// new since 1.3.1
1396//////////////////////////////////////////////////////////////////////////
1397
1398 /*! Used in the quick index of a class/file/namespace member list page
1399 * to link to the unfiltered list of all members.
1400 */
1401 DString trAll() override
1402 {
1403 return "Све";
1404 }
1405 /*! Put in front of the call graph for a function. */
1407 {
1408 return "Овде је граф позивања за ову функцију:";
1409 }
1410
1411//////////////////////////////////////////////////////////////////////////
1412// new since 1.3.3
1413//////////////////////////////////////////////////////////////////////////
1414
1415 /*! This string is used as the title for the page listing the search
1416 * results.
1417 */
1419 {
1420 return "Резултати претраге";
1421 }
1422 /*! This string is put just before listing the search results. The
1423 * text can be different depending on the number of documents found.
1424 * Inside the text you can put the special marker $num to insert
1425 * the number representing the actual number of search results.
1426 * The @a numDocuments parameter can be either 0, 1 or 2, where the
1427 * value 2 represents 2 or more matches. HTML markup is allowed inside
1428 * the returned string.
1429 */
1430 DString trSearchResults(int numDocuments) override
1431 {
1432 if (numDocuments==0)
1433 {
1434 return "Жао ми је, али нема докумената који одговарају упиту.";
1435 }
1436 else if (numDocuments==1)
1437 {
1438 return "Пронађен <b>1</b> документ који одговара упиту.";
1439 }
1440 else if (numDocuments==2)
1441 {
1442 return "Пронађена <b>а</b> документа која одговарају упиту.";
1443 }
1444 else if (numDocuments==3)
1445 {
1446 return "Пронађена <b>3</b> документа која одговарају упиту.";
1447 }
1448 else if (numDocuments==4)
1449 {
1450 return "Пронађена <b>4</b> документа која одговарају упиту.";
1451 }
1452 else
1453 {
1454 return "Пронађено <b>$num</b> докумената који одговарају упиту. "
1455 "Приказују се прво најбољи поготци.";
1456 }
1457 }
1458 /*! This string is put before the list of matched words, for each search
1459 * result. What follows is the list of words that matched the query.
1460 */
1462 {
1463 return "Поготци:";
1464 }
1465
1466//////////////////////////////////////////////////////////////////////////
1467// new since 1.3.8
1468//////////////////////////////////////////////////////////////////////////
1469
1470 /*! This is used in HTML as the title of page with source code for file filename
1471 */
1472 DString trSourceFile(const DString& filename) override
1473 {
1474 return filename + " Изворна датотека";
1475 }
1476
1477//////////////////////////////////////////////////////////////////////////
1478// new since 1.3.9
1479//////////////////////////////////////////////////////////////////////////
1480
1481 /*! This is used as the name of the chapter containing the directory
1482 * hierarchy.
1483 */
1485 { return "Хијерархија директоријума"; }
1486
1487 /*! This is used as the name of the chapter containing the documentation
1488 * of the directories.
1489 */
1491 { return "Документација директоријума"; }
1492
1493 /*! This is used as the title of the directory index and also in the
1494 * Quick links of an HTML page, to link to the directory hierarchy.
1495 */
1497 { return "Директоријуми"; }
1498
1499 /*! This returns the title of a directory page. The name of the
1500 * directory is passed via \a dirName.
1501 */
1502 DString trDirReference(const DString &dirName) override
1503 { DString result=dirName; result+=" Референца директоријума"; return result; }
1504
1505 /*! This returns the word directory with or without starting capital
1506 * (\a first_capital) and in singular or plural form (\a singular).
1507 */
1508 DString trDir(bool first_capital, bool singular) override
1509 {
1510 return createNoun(first_capital, singular, "директоријум", "и");
1511 }
1512
1513//////////////////////////////////////////////////////////////////////////
1514// new since 1.4.1
1515//////////////////////////////////////////////////////////////////////////
1516
1517 /*! This text is added to the documentation when the \\overload command
1518 * is used for a overloaded function.
1519 */
1521 {
1522 return "Ово је преоптерећена функција чланица. "
1523 "Разликује се од наведене само по врсти аргумената кое прихвата";
1524 }
1525
1526//////////////////////////////////////////////////////////////////////////
1527// new since 1.4.6
1528//////////////////////////////////////////////////////////////////////////
1529
1530 /*! This is used to introduce a caller (or called-by) graph */
1532 {
1533 return "Ово је граф функција које позивају ову функцију:";
1534 }
1535
1536 /*! This is used in the documentation of a file/namespace before the list
1537 * of documentation blocks for enumeration values
1538 */
1540 { return "Документација вредности набрајања"; }
1541
1542//////////////////////////////////////////////////////////////////////////
1543// new since 1.5.4 (mainly for Fortran)
1544//////////////////////////////////////////////////////////////////////////
1545
1546 /*! header that is put before the list of member subprograms (Fortran). */
1548 { return "Документацијаr функције чланице, односно потпрограма члана"; }
1549
1550 /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1552 { return "Списак типова података"; }
1553
1554 /*! This is put above each page as a link to all members of compounds (Fortran). */
1556 { return "Поља"; }
1557
1558 /*! This is an introduction to the annotated compound list (Fortran). */
1560 { return "Овде су типови података са кратким описима:"; }
1561
1562 /*! This is an introduction to the page with all data types (Fortran). */
1564 {
1565 DString result="Овде је списак свих ";
1566 if (!extractAll)
1567 {
1568 result+="документованих ";
1569 }
1570 result+="чланова типова података";
1571 result+=" са везама ка ";
1572 if (!extractAll)
1573 {
1574 result+="документацији структуре података за сваки члан";
1575 }
1576 else
1577 {
1578 result+="типовима података којима припадају:";
1579 }
1580 return result;
1581 }
1582
1583 /*! This is used in LaTeX as the title of the chapter with the
1584 * annotated compound index (Fortran).
1585 */
1587 { return "Индекс типова података"; }
1588
1589 /*! This is used in LaTeX as the title of the chapter containing
1590 * the documentation of all data types (Fortran).
1591 */
1593 { return "Документација типова података"; }
1594
1595 /*! This is used in the documentation of a file as a header before the
1596 * list of (global) subprograms (Fortran).
1597 */
1599 { return "Функције/потпрограми"; }
1600
1601 /*! This is used in the documentation of a file/namespace before the list
1602 * of documentation blocks for subprograms (Fortran)
1603 */
1605 { return "Документација функције/потпрограма"; }
1606
1607 /*! This is used in the documentation of a file/namespace/group before
1608 * the list of links to documented compounds (Fortran)
1609 */
1611 { return "Типови података"; }
1612
1613 /*! used as the title of page containing all the index of all modules (Fortran). */
1615 { return "Списак модула"; }
1616
1617 /*! used as an introduction to the modules list (Fortran) */
1618 DString trModulesListDescription(bool extractAll) override
1619 {
1620 DString result="Овде је списак свих ";
1621 if (!extractAll) result+="документованих ";
1622 result+="модула са кратким описима:";
1623 return result;
1624 }
1625
1626 /*! used as the title of the HTML page of a module/type (Fortran) */
1628 ClassDef::CompoundType compType,
1629 bool isTemplate) override
1630 {
1631 DString result=clName;
1632 if (isTemplate) result+=" Шаблон";
1633 result+=" Референца";
1634 switch(compType)
1635 {
1636 case ClassDef::Class: result+=" модула"; break;
1637 case ClassDef::Struct: result+=" типа"; break;
1638 case ClassDef::Union: result+=" уније"; break;
1639 case ClassDef::Interface: result+=" интерфејса"; break;
1640 case ClassDef::Protocol: result+=" протокола"; break;
1641 case ClassDef::Category: result+=" категорије"; break;
1642 case ClassDef::Exception: result+=" изузетка"; break;
1643 default: break;
1644 }
1645 return result;
1646 }
1647 /*! used as the title of the HTML page of a module (Fortran) */
1648 DString trModuleReference(const DString &namespaceName) override
1649 {
1650 DString result=namespaceName;
1651 result+=" Референца модула";
1652 return result;
1653 }
1654
1655 /*! This is put above each page as a link to all members of modules. (Fortran) */
1657 { return "Чланови модула"; }
1658
1659 /*! This is an introduction to the page with all modules members (Fortran) */
1660 DString trModulesMemberDescription(bool extractAll) override
1661 {
1662 DString result="Овде је списак свих ";
1663 if (!extractAll) result+="документованих ";
1664 result+="чланова модула са везама ка ";
1665 if (extractAll)
1666 {
1667 result+="документацији модула за сваки члан:";
1668 }
1669 else
1670 {
1671 result+="модулима којима припадају:";
1672 }
1673 return result;
1674 }
1675
1676 /*! This is used in LaTeX as the title of the chapter with the
1677 * index of all modules (Fortran).
1678 */
1680 { return "Индекс модула"; }
1681
1682 /*! This is used for translation of the word that will possibly
1683 * be followed by a single name or by a list of names
1684 * of the category.
1685 */
1686 DString trModule(bool first_capital, bool singular) override
1687 {
1688 return createNoun(first_capital, singular, "модул", "и");
1689 }
1690 /*! This is put at the bottom of a module documentation page and is
1691 * followed by a list of files that were used to generate the page.
1692 */
1694 bool single) override
1695 { // here s is one of " Module", " Struct" or " Union"
1696 // single is true implies a single file
1697 DString result="Документација за ";
1698 switch(compType)
1699 {
1700 case ClassDef::Class: result+="овај модул"; break;
1701 case ClassDef::Struct: result+="овај тип"; break;
1702 case ClassDef::Union: result+="ову унију"; break;
1703 case ClassDef::Interface: result+="овај интерфејс"; break;
1704 case ClassDef::Protocol: result+="овај протокол"; break;
1705 case ClassDef::Category: result+="ову категорију"; break;
1706 case ClassDef::Exception: result+="овај изузетак"; break;
1707 default: break;
1708 }
1709 result+=" је направљен из следећ";
1710 if (single) result+="е датотеке:"; else result+="их датотека:";
1711 return result;
1712 }
1713 /*! This is used for translation of the word that will possibly
1714 * be followed by a single name or by a list of names
1715 * of the category.
1716 */
1717 DString trType(bool first_capital, bool singular) override
1718 {
1719 return createNoun(first_capital, singular, "тип", "ови");
1720 }
1721 /*! This is used for translation of the word that will possibly
1722 * be followed by a single name or by a list of names
1723 * of the category.
1724 */
1725 DString trSubprogram(bool first_capital, bool singular) override
1726 {
1727 return createNoun(first_capital, singular, "потпрограм", "и");
1728 }
1729
1730 /*! C# Type Constraint list */
1732 {
1733 return "Ограничења типова";
1734 }
1735
1736 DString trDayOfWeek(int dayOfWeek, bool, bool full) override
1737 {
1738 static const char *days_short[] = { "пон", "уто", "сри", "чет", "пет", "суб", "нед" };
1739 static const char *days_full[] = { "Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота", "Недеља" };
1740 DString text = full? days_full[dayOfWeek-1] : days_short[dayOfWeek-1];
1741 return text;
1742 }
1743 DString trMonth(int month, bool, bool full) override
1744 {
1745 static const char *months_short[] = { "Јан", "Феб", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", " новембар", "дец" };
1746 static const char *months_full[] = { "јануар", "фебруар", "март", "април", "мај", "јун", "јул", "август", "септембар", "октобар", " Новембар Децембар" };
1747 DString text = full? months_full[month-1] : months_short[month-1];
1748 return text;
1749 }
1750 DString trDayPeriod(bool period) override
1751 {
1752 static const char *dayPeriod[] = { "пре подне", "по подне" };
1753 return dayPeriod[period?1:0];
1754 }
1755};
1756
1757#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
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 trDayOfWeek(int dayOfWeek, bool, bool full) override
DString trVariableDocumentation() override
DString trDirDocumentation() override
DString trNamespaceDocumentation() override
DString trModule(bool first_capital, bool singular) override
DString trPackageAttribs() override
DString trAll() override
DString trDefinedInSourceFile() override
DString trPublicAttribs() override
DString trModulesDescription() override
DString trGotoDocumentation() override
DString trProtectedMembers() override
DString trStaticPublicAttribs() override
DString trPublicTypes() override
DString trTestList() override
DString trClass(bool first_capital, bool singular) override
DString trNamespaceIndex() override
DString trSubprogram(bool first_capital, bool singular) override
DString trTypedefDocumentation() override
DString trFileDocumentation() override
DString trPage(bool first_capital, bool singular) override
DString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single) override
DString trCompoundReference(const DString &clName, ClassDef::CompoundType compType, bool isTemplate) override
DString trStaticPackageFunctions() override
DString trModulesMemberDescription(bool extractAll) override
DString trSourceFile(const DString &filename) override
DString trFileMembers() override
DString trClassHierarchy() override
DString trPackageMembers() override
DString trSignals() override
DString trNamespaces() override
DString trLegendTitle() override
DString trSubprograms() override
DString trAuthor(bool first_capital, bool singular) override
DString trDefineDocumentation() override
DString trGeneratedAutomatically(const DString &s) override
DString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single) override
DString trDefines() override
DString trNote() override
DString trFileListDescription(bool extractAll) override
DString trCompoundMembersFortran() override
DString trCallGraph() override
DString trStaticProtectedAttribs() override
DString trRTFTableOfContents() override
DString trPostcondition() override
DString trNamespaceList() override
DString trModulesListDescription(bool extractAll) override
DString trNamespaceMemberDescription(bool extractAll) override
DString trExamplesDescription() override
DString trInheritedByList(int numEntries) override
DString trDataTypes() override
DString trSearchResults(int numDocuments) override
DString trFileReference(const DString &fileName) override
DString trStaticPrivateAttribs() override
DString trRTFCharSet() override
DString trExamples() override
DString trFile(bool first_capital, bool singular) override
DString trRTFansicp() override
DString trDeprecated() override
DString trClassDocumentation() override
DString trEvents() override
DString trMemberEnumerationDocumentation() override
DString trNamespaceListDescription(bool extractAll) override
DString trImplementedFromList(int numEntries) override
DString trLegend() override
DString latexLanguageSupportCommand() override
DString trWriteList(int numEntries) override
DString trListOfAllMembers() override
DString trNamespaceReference(const DString &namespaceName) override
DString trDeprecatedList() override
DString trFileList() override
DString trRelatedPagesDescription() override
DString trProperties() override
DString trPrivateAttribs() override
DString trReferencedBy() override
DString trPageAbbreviation() override
DString trOverloadText() override
DString trMonth(int month, bool, bool full) override
DString trCompoundIndexFortran() override
DString trRelatedSubscript() override
DString trMemberFunctionDocumentationFortran() override
DString trCompoundListFortran() override
DString trMemberFunctionDocumentation() override
DString trPackage(const DString &name) override
DString trCompoundMembersDescription(bool extractAll) override
DString trHierarchicalIndex() override
DString trGraphicalHierarchy() override
DString trClassHierarchyDescription() override
DString trGeneratedBy() override
DString trPageIndex() override
DString trPackageTypes() override
DString trIncludingInheritedMembers() override
DString trDirectories() override
DString trPrivateMembers() override
DString trLegendDocs() override
DString trEnumerationValues() override
DString trPackageFunctions() override
DString trTypeDocumentation() override
DString trDetails() override
DString trTypedefs() override
DString trTypeConstraints() override
DString trWarning() override
DString trFunctions() override
DString trInitialValue() override
DString trClassDiagram(const DString &clName) override
DString trMemberDataDocumentation() override
DString trPrivateSlots() override
DString trMember(bool first_capital, bool singular) override
DString trPublicMembers() override
DString trCompoundReferenceFortran(const DString &clName, ClassDef::CompoundType compType, bool isTemplate) override
DString trRelatedFunctions() override
DString trCompoundMembersDescriptionFortran(bool extractAll) override
DString trFileMembersDescription(bool extractAll) override
DString trStaticProtectedMembers() override
DString trStaticPackageAttribs() override
DString trCompoundIndex() override
DString trGotoGraphicalHierarchy() override
DString trSearchMatches() override
DString trConstructorDocumentation() override
DString trReturns() override
DString trPublicSlots() override
DString trModuleReference(const DString &namespaceName) override
DString trInvariant() override
DString trMemberTypedefDocumentation() override
DString getLanguageString() override
language codes for Html help
DString latexFontenc() override
DString trReturnValues() override
DString trDocumentation(const DString &projName) override
DString trInheritsList(int numEntries) override
DString trSince() override
DString trRTFGeneralIndex() override
DString trPackageListDescription() override
DString trNamespaceMembers() override
DString trParameters() override
DString trStaticPrivateMembers() override
DString trModulesMembers() override
DString trDate() override
DString trGotoSourceCode() override
DString trFileIndex() override
DString trRelatedPages() override
DString trDayPeriod(bool period) override
DString trCompoundListDescriptionFortran() override
DString trProtectedAttribs() override
DString trModules() override
DString trMore() override
DString trEnumName() override
DString trEnumerationTypeDocumentation() override
DString trPrecondition() override
DString trDirReference(const DString &dirName) override
DString trVariables() override
DString trSeeAlso() override
DString trProtectedSlots() override
DString trEventDocumentation() override
DString idLanguage() override
DString trModuleDocumentation() override
DString trRemarks() override
DString trType(bool first_capital, bool singular) override
DString trCompoundMembers() override
DString trReimplementedFromList(int numEntries) override
DString trReimplementedInList(int numEntries) override
DString trDefineValue() override
DString trClasses() override
DString trEnumerationValueDocumentation() override
DString trFriends() override
DString trExceptions() override
DString trReferences() override
DString trCallerGraph() override
DString trTest() override
DString trDefinedAtLineInSourceFile() override
DString trMainPage() override
DString trDirIndex() override
DString trNamespace(bool first_capital, bool singular) override
DString trCompoundListDescription() override
DString trDetailedDescription() override
DString trThisIsTheListOfAllMembers() override
DString trInclByDepGraph() override
DString trBug() override
DString trGeneratedAt(const DString &date, const DString &projName) override
DString trEnumerations() override
DString trCompounds() override
DString trCompoundList() override
DString trPackages() override
DString trTodoList() override
DString trGotoTextualHierarchy() override
DString trCollaborationDiagram(const DString &clName) override
DString trReferenceManual() override
DString trModulesList() override
DString trVersion() override
DString trStaticPublicMembers() override
DString trAttention() override
DString trEnumValue() override
DString trCode() override
DString trDir(bool first_capital, bool singular) override
DString trGroup(bool first_capital, bool singular) override
DString trTodo() override
DString trSearchResultsTitle() override
DString trPropertyDocumentation() override
DString trModuleIndex() override
DString trInclDepGraph(const DString &fName) override
DString trFunctionDocumentation() override
DString trImplementedInList(int numEntries) override
DString trSearch() override
DString trSubprogramDocumentation() override
DString trGlobal(bool first_capital, bool singular) override
DString trPrivateTypes() override
DString trProtectedTypes() override
DString trRelatedFunctionDocumentation() override
DString trDefinedIn() override
DString trBugList() override
DString trISOLang() override
DString trModulesIndex() override
DString trMemberList() override
#define Config_getBool(name)
Definition config.h:33
DString generateMarker(int id)
Definition dstring.h:904
DString getDotImageExtension()
Definition util.cpp:4964