Doxygen
Loading...
Searching...
No Matches
translator_hr.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// translation by Boris Bralo <boris.bralo@gmail.com>
16// Updates:
17// --------
18// 2000/08/20
19// - Better handling of ISO-8859-2/ WIN 1250 stuff based on (actually stolen from :-)) Czech translations
20// implemented by Petr Prikryl (prikrylp@skil.cz).
21// As opposed to Czech translation this one assumes that Doxygen strings are written in Linux ( it's true,
22// I don't have QT pro license ), and use ISOToWin function when built in WIN32
23//
24// 2000/09/18
25// - Added strings from 1.2.1
26// - Removed unneeeded decode() calls
27// - Changed some CS terminology
28//
29// 2001/01/22
30// - Added strings from 1.2.4
31//
32// 2001/05/25
33// - Added strings and up to and including 1.2.7_20010524
34// - Removed obsolete method trFiles()
35// - Removed obsolete method trAuthor()
36// - Removed obsolete method trVerbatimHeadert()
37// - Method latexBabelPackage() removed, ude latexLanguageSupportCommand
38//
39// 2001/11/13
40// - inherits from Translator
41// - Added strings for 1.2.11
42// - better output for C documentation (trCompoundMembersDescription(), trClassDocumentation())
43//
44// 2001/11/13
45// - Added strings for 1.2.13
46//
47// 2003/02/26
48// - Added strings for 1.2.18
49//
50// 2003/04/29
51// - Added strings for 1.3.0
52//
53// 2004/06/21
54// - Added strings for 1.3.8
55//
56// 2004/09/15
57// - Added strings for 1.3.9
58//
59// 2005/02/28
60// - Removed obsolete (unused) methods
61//
62// 2005/03/21
63// - Added strings for 1.4.1
64//
65// 2006/06/11
66// - Added strings for 1.4.6
67//
68// 2009/01/09
69// - Updated trLegendDocs
70//
71// 2010/03/04
72// - Updates for "new since 1.6.0 (mainly for the new search engine)".
73// - UTF-8
74// - removed decode()
75//
76// 2010/05/27
77// - Updates for 1.6.3
78// 2012/04/12
79// - Updates for 1.8.0
80#ifndef TRANSLATOR_HR_H
81#define TRANSLATOR_HR_H
82
84{
85 private:
86
87 public:
89 { return "croatian"; }
91 { return "\\usepackage[croatian]{babel}\n"; }
92 DString trISOLang() override
93 { return "hr"; }
95 {
96 return "0x41A Croatian";
97 }
99 { return "Povezane funkcije"; }
101 { return "(To nisu member funkcije.)"; }
103 { return "Detaljno objašnjenje"; }
105 { return "Detalji"; }
107 { return "Dokumentacija typedef članova"; }
109 { return "Dokumentacija enumeracijskih članova"; }
111 { return "Dokumentacija funkcija"; }
113 { return "Documentacija varijabli"; }
114 DString trMore() override
115 { return "Opširnije..."; }
117 { return "Popis svih članova"; }
119 { return "Popis članova."; }
121 { return "Ovo je popis svih članova"; }
123 { return ", uključujući naslijeđene članove."; }
125 { DString result="napravljeno automatski Doxygen-om";
126 if (!s.empty()) result+=" za "+s;
127 result+=" iz programskog koda.";
128 return result;
129 }
131 { return "enum ime"; }
133 { return "enum vrijednost"; }
135 { return "definirano u"; }
137 { return "Moduli"; }
139 { return "Stablo klasa"; }
141 {
142 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
143 {
144 return "Sve strukture";
145 }
146 else
147 {
148 return "Sve klase";
149 }
150 }
152 { return "Popis datoteka"; }
154 {
155 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
156 return "Svi članovi struktura";
157 else
158 return "Svi članovi klasa";
159 }
161 { return "članovi klasa u datoteci"; }
163 { return "Stranice povezane s ovom"; }
165 { return "Primjeri"; }
166 DString trSearch() override
167 { return "Traži"; }
169 { return "Stablo naslijeđivanja je složeno "
170 "približno po abecedi:";
171 }
172 DString trFileListDescription(bool extractAll) override
173 {
174 DString result="Popis svih ";
175 if (!extractAll) result+="dokumentiranih ";
176 result+="datoteka, s kratkim opisom:";
177 return result;
178 }
180 { return "Popis svih klasa, unija i struktura "
181 "s kratkim opisom :";
182 }
183 DString trCompoundMembersDescription(bool extractAll) override
184 {
185 DString result="Popis svih ";
186 if (!extractAll)
187 result+="dokumentiranih ";
188
189 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
190 result+="članova klasa s linkovima na ";
191 else
192 result+="članova struktura s linkovima na ";
193
194 if (!extractAll)
195 {
196 result+="dokumentaciju svakog člana:";
197 }
198 else
199 {
200 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
201 result+="dokumentaciju klase :";
202 else
203 result +="dokumentaciju strukture";
204 }
205 return result;
206 }
207 DString trFileMembersDescription(bool extractAll) override
208 {
209 DString result="Popis svih ";
210 if (!extractAll)
211 result+="dokumentiranih ";
212 result+="članova s linkovima na ";
213 if (extractAll)
214 result+="dokumentaciju datoteke u kojima se nalaze:";
215 else
216 result+="datoteke u kojima se nalaze:";
217 return result;
218 }
220 { return "Popis primjera :"; }
222 { return "Popis povezanih stranica:"; }
224 { return "Popis svih modula:"; }
225
226 DString trDocumentation(const DString &projName) override
227 { return (!projName.empty()?projName + " " : "") + "Dokumentacija"; }
229 { return "Kazalo modula"; }
231 { return "Hijerarhijsko kazalo"; }
233 {
234 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
235 {
236 return "Kazalo struktura podataka";
237 }
238 else
239 {
240 return "Skupno kazalo ";
241 }
242 }
244 { return "Kazalo datoteka"; }
246 { return "Dokumentacija modula"; }
248 {
249 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
250 {
251 return "Dokumentacija struktura podataka";
252 }
253 else if (Config_getBool(OPTIMIZE_OUTPUT_VHDL))
254 {
256 }
257 else
258 {
259 return "Dokumentacija klasa";
260 }
261 }
263 { return "Dokumentacija datoteka"; }
265 { return "Priručnik"; }
266
268 { return "Definicije"; }
270 { return "Typedef-ovi"; }
272 { return "Enumeracije"; }
274 { return "Funkcije"; }
276 { return "Varijable"; }
278 { return "Vrijednosti enumeracija"; }
280 { return "Dokumentacija definicija"; }
282 { return "Dokumentacija typedef-a"; }
284 { return "Dokumentacija enumeracijskog tipa"; }
286 { return "Dokumentacije funkcija"; }
288 { return "Dokumentacija varijable"; }
290 { return "Strukture"; }
291 DString trGeneratedAt(const DString &date,const DString &projName) override
292 {
293 DString result="Napravljeno "+date;
294 if (!projName.empty()) result+=" projekt: "+projName;
295 result+=" generator: ";
296 return result;
297 }
298 DString trClassDiagram(const DString &clName) override
299 {
300 return DString("Dijagram klasa za ")+clName;
301 }
303 { return "Upozorenje"; }
305 { return "Verzija"; }
306 DString trDate() override
307 { return "Datum"; }
309 { return "Povratne vrijednosti"; }
311 { return "Vidi također"; }
313 { return "Parametri"; }
315 { return "Iznimke"; }
317 { return "Generirao"; }
318
319//////////////////////////////////////////////////////////////////////////
320// new since 0.49-990307
321//////////////////////////////////////////////////////////////////////////
322
324 { return "Popis imenika"; }
325 DString trNamespaceListDescription(bool extractAll) override
326 {
327 DString result="Popis svih ";
328 if (!extractAll) result+="dokumentiranih ";
329 result+="imenika s kratkim opisom:";
330 return result;
331 }
333 { return "Friend-ovi "; }
334
335//////////////////////////////////////////////////////////////////////////
336// new since 0.49-990405
337//////////////////////////////////////////////////////////////////////////
338
340 { return "Dokumentacija povezanih funkcija"; }
341
342//////////////////////////////////////////////////////////////////////////
343// new since 0.49-990425
344//////////////////////////////////////////////////////////////////////////
345
347 ClassDef::CompoundType compType,
348 bool /*isTemplate*/) override
349 // used as the title of the HTML page of a class/struct/union
350 {
351 DString result="Opis ";
352 switch(compType)
353 {
354 case ClassDef::Class: result+=" klase "; break;
355 case ClassDef::Struct: result+=" strukture "; break;
356 case ClassDef::Union: result+=" unije "; break;
357 case ClassDef::Interface: result+=" sučelja (interface) "; break;
358 case ClassDef::Protocol: result+=" protokola "; break;
359 case ClassDef::Category: result+=" kategorije "; break;
360 case ClassDef::Exception: result+=" iznimke (exception) "; break;
361 default: break;
362 }
363 result += clName;
364 return result;
365 }
366 DString trFileReference(const DString &fileName) override
367 // used as the title of the HTML page of a file
368 {
369 DString result="Opis datoteke ";
370 result+=fileName;
371 return result;
372 }
373 DString trNamespaceReference(const DString &namespaceName) override
374 // used as the title of the HTML page of a namespace
375 {
376 DString result ="Opis imenika ";
377 result+=namespaceName;
378
379 return result;
380 }
381
382 // these are for the member sections of a class, struct or union
384 { return "Public članovi"; }
386 { return "Public slotovi"; }
388 { return "Signali"; }
390 { return "Static public članovi"; }
392 { return "Protected članovi"; }
394 { return "Protected slotovi"; }
396 { return "Static protected članovi"; }
398 { return "Privatni članovi"; }
400 { return "Privatni slotovi"; }
402 { return "Statični privatni članovi"; }
403 // end of member sections
404
405 DString trWriteList(int numEntries) override
406 {
407 // this function is used to produce a comma-separated list of items.
408 // use generateMarker(i) to indicate where item i should be put.
409 DString result;
410 // the inherits list contain `numEntries' classes
411 for (int i=0;i<numEntries;i++)
412 {
413 // use generateMarker to generate placeholders for the class links!
414 result+=generateMarker(i); // generate marker for entry i in the list
415 // (order is left to right)
416
417 if (i!=numEntries-1) // not the last entry, so we need a separator
418 {
419 if (i<numEntries-2) // not the fore last entry
420 result+=", ";
421 else // the fore last entry
422 result+="";
423 }
424 }
425 return result;
426 }
427
428 DString trInheritsList(int numEntries) override
429 // used in class documentation to produce a list of base classes,
430 // if class diagrams are disabled.
431 {
432 return "Naslijeđuje od "+trWriteList(numEntries)+".";
433 }
434 DString trInheritedByList(int numEntries) override
435 // used in class documentation to produce a list of super classes,
436 // if class diagrams are disabled.
437 {
438 return "Naslijeđena u "+trWriteList(numEntries)+".";
439 }
440 DString trReimplementedFromList(int numEntries) override
441 // used in member documentation blocks to produce a list of
442 // members that are hidden by this one.
443 {
444 return "Reimplementirano od "+trWriteList(numEntries)+".";
445 }
446 DString trReimplementedInList(int numEntries) override
447 {
448 // used in member documentation blocks to produce a list of
449 // all member that overwrite the implementation of this member.
450 return "Reimplementacija u "+trWriteList(numEntries)+".";
451 }
452
454 // This is put above each page as a link to all members of namespaces.
455 { return "članovi imenika"; }
456 DString trNamespaceMemberDescription(bool extractAll) override
457 // This is an introduction to the page with all namespace members
458 {
459 DString result="Lista svih ";
460 if (!extractAll) result+="dokumentiranih ";
461 result+="članova imenika s linkovima na ";
462 if (extractAll)
463 result+="imeničku dokumentaciju svakog člana:";
464 else
465 result+="imenike kojima pripadaju:";
466 return result;
467 }
469 // This is used in LaTeX as the title of the chapter with the
470 // index of all namespaces.
471 { return "Kazalo imenika"; }
473 // This is used in LaTeX as the title of the chapter containing
474 // the documentation of all namespaces.
475 { return "Dokumentacija namespace-a"; }
476
477//////////////////////////////////////////////////////////////////////////
478// new since 0.49-990522
479//////////////////////////////////////////////////////////////////////////
480
481 /*! This is used in the documentation before the list of all
482 * namespaces in a file.
483 */
485 {
486 return "Imenici";
487 }
488
489//////////////////////////////////////////////////////////////////////////
490// new since 0.49-990728
491//////////////////////////////////////////////////////////////////////////
492
493 /*! This is put at the bottom of a class documentation page and is
494 * followed by a list of files that were used to generate the page.
495 */
497 bool single) override
498 { // here s is one of " Class", " Struct" or " Union"
499 // single is true implies a single file
500 DString result="Dokumentacija ";
501 switch(compType)
502 {
503 case ClassDef::Class: result+="klase"; break;
504 case ClassDef::Struct: result+="strukture"; break;
505 case ClassDef::Union: result+="unije"; break;
506 case ClassDef::Interface: result+="sučelja (interface)"; break;
507 case ClassDef::Protocol: result+="protokola"; break;
508 case ClassDef::Category: result+="kategorije"; break;
509 case ClassDef::Exception: result+="iznimke (exception)"; break;
510 default: break;
511 }
512 result+=" je napravljena iz " + trFile(false, single) + ": ";
513 return result;
514 }
515
516//////////////////////////////////////////////////////////////////////////
517// new since 0.49-990901
518//////////////////////////////////////////////////////////////////////////
519
520 /*! This is used as the heading text for the retval command. */
522 { return "Povratna vrijednost"; }
523
524 /*! This is in the (quick) index as a link to the main page (index.html)
525 */
527 { return "Glavna stranica"; }
528
529 /*! This is used in references to page that are put in the LaTeX
530 * documentation. It should be an abbreviation of the word page.
531 */
533 { return "str."; }
534
535//////////////////////////////////////////////////////////////////////////
536// new since 0.49-991106
537//////////////////////////////////////////////////////////////////////////
538
540 {
541 return "Definirano u liniji @0 datoteke @1.";
542 }
544 {
545 return "Definirano u datoteci @0.";
546 }
547
548//////////////////////////////////////////////////////////////////////////
549// new since 0.49-991205
550//////////////////////////////////////////////////////////////////////////
551
553 {
554 return "Zastarjelo";
555 }
556
557//////////////////////////////////////////////////////////////////////////
558// new since 1.0.0
559//////////////////////////////////////////////////////////////////////////
560
561 /*! this text is put before a collaboration diagram */
562 DString trCollaborationDiagram(const DString &clName) override
563 {
564 return "Kolaboracijski dijagram za "+clName+ ":";
565 }
566 /*! this text is put before an include dependency graph */
567 DString trInclDepGraph(const DString &fName) override
568 {
569 return "Graf include međuovisnosti za "+fName+":";
570 }
571 /*! header that is put before the list of constructor/destructors. */
573 {
574 return "Dokumentacija konstruktora i destruktora ";
575 }
576 /*! Used in the file documentation to point to the corresponding sources. */
578 {
579 return "Izvorni kod";
580 }
581 /*! Used in the file sources to point to the corresponding documentation. */
583 {
584 return "Dokumenacija za ovu datoteku.";
585 }
586 /*! Text for the \\pre command */
588 {
589 return "Preduvjeti";
590 }
591 /*! Text for the \\post command */
593 {
594 return "Postuvjeti";
595 }
596 /*! Text for the \\invariant command */
598 {
599 return "Invarijanta";
600 }
601 /*! Text shown before a multi-line variable/enum initialization */
603 {
604 return "Početna vrijednost:";
605 }
606 /*! Text used the source code in the file index */
607 DString trCode() override
608 {
609 return "kod";
610 }
612 {
613 return "Grafičko stablo klasa";
614 }
616 {
617 return "Grafičko stablo klasa";
618 }
620 {
621 return "Tekstualno stablo klasa";
622 }
624 {
625 return "Indeks stranice";
626 }
627
628//////////////////////////////////////////////////////////////////////////
629// new since 1.1.0
630//////////////////////////////////////////////////////////////////////////
631
632 DString trNote() override
633 {
634 return "Primjedba";
635 }
637 {
638 return "Public tipovi";
639 }
641 {
642 return "Public atributi";
643 }
645 {
646 return "Static public atributi";
647 }
649 {
650 return "Protected tipovi";
651 }
653 {
654 return "Protected atributi";
655 }
657 {
658 return "Static protected atributi";
659 }
661 {
662 return "Private tipovi";
663 }
665 {
666 return "Private atributi";
667 }
669 {
670 return "Static private atributi";
671 }
672//////////////////////////////////////////////////////////////////////////
673// new since 1.1.3
674//////////////////////////////////////////////////////////////////////////
675
676 /*! Used as a marker that is put before a todo item */
677 DString trTodo() override
678 {
679 return "Za uraditi";
680 }
681 /*! Used as the header of the todo list */
683 {
684 return "Ostalo za uraditi";
685 }
686
687//////////////////////////////////////////////////////////////////////////
688// new since 1.1.4
689//////////////////////////////////////////////////////////////////////////
690
692 {
693 return "Referencirano od";
694 }
696 {
697 return "Napomene";
698 }
700 {
701 return "Pažnja";
702 }
704 {
705 return "Ovaj graf pokazuje koje datoteke izravno "
706 "ili neizravno uključuju ovu datoteku:";
707 }
708 DString trSince() override
709 {
710 return "Od";
711 }
712
713//////////////////////////////////////////////////////////////////////////
714// new since 1.1.5
715//////////////////////////////////////////////////////////////////////////
716
717 /*! title of the graph legend page */
719 {
720 return "Legenda";
721 }
722 /*! page explaining how the dot graph's should be interpreted */
724 {
725 return
726 "Ova stranica objašnjava kako interpretirati grafikone koje je generirao "
727 "doxygen.<p>\n"
728 "Na primjer:\n"
729 "\\code\n"
730 "/*! Nevidljiva klasa (neće stati na graf date visine) */\n"
731 "class Invisible { };\n\n"
732 "/*! Odrezana klasa, inheritance je skriven (klase se vidi na grafu, ali ne i sve bazne klase) */\n"
733 "class Truncated : public Invisible { };\n\n"
734 "/* Nedokumentirana klasa */\n"
735 "class Undocumented { };\n\n"
736 "/*! Klasa koja je naslijeđena public */\n"
737 "class PublicBase : public Truncated { };\n\n"
738 "/*! A template class */\n"
739 "template<class T> class Templ { };\n\n"
740 "/*! Klasa koje je naslijeđena protected */\n"
741 "class ProtectedBase { };\n\n"
742 "/*! Klasa koje je naslijeđena private */\n"
743 "class PrivateBase { };\n\n"
744 "/*! Klasa koja se koristi agregacijom */\n"
745 "class Used { };\n\n"
746 "/*! Super klasa koja naslijeđuje/koristi ostale */\n"
747 "class Inherited : public PublicBase,\n"
748 " protected ProtectedBase,\n"
749 " private PrivateBase,\n"
750 " public Undocumented,\n"
751 " public Templ<int>\n"
752 "{\n"
753 " private:\n"
754 " Used *m_usedClass;\n"
755 "};\n"
756 "\\endcode\n"
757 "To će rezultirati grafikonom:"
758 "<p><center><img src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
759 "<p>\n"
760 "Pravokutnici imaju slijedeće značenje:\n"
761 "<ul>\n"
762 "<li>Puni crni predstavlja klasu za koji je napravljen graf.\n"
763 "<li>Pravokutnik s crnim rubom predstavlja dokumentiranu klasu.\n"
764 "<li>Pravokutnik s sivim rubom predstavlja nedokumentiranu klasu.\n"
765 "<li>Pravokutnik s crvenim rubom predstavlja dokumentiranu klasu\n"
766 "Za koju nije prikazan graf naslijeđivanja. Graf je odrezan "
767 "ako ne stane unutar određenih granica."
768 "</ul>\n"
769 "Strelice imaju slijedeće značenje:\n"
770 "<ul>\n"
771 "<li>Tamnoplava strelica označava public naslijeđivanje.\n"
772 "<li>Tamnozelena strelica označava protected naslijeđivanje.\n"
773 "<li>Tamnocrvena strelica označava private naslijeđivanje.\n"
774 "<li>Ljubičasta isprekidana strelica se koristi ako je klasa dio "
775 "druge klase ili ako se klasa koristi u drugoj klasi. Natpis na "
776 "strelici je ime varijable u drugoj klasi\n"
777 "Strelica je označena imenom varijable.\n"
778 "<li>Žuta isprekidana strelica označava relaciju između template instance "
779 "i template klase. Označena je imenom template parametra\n"
780 "</ul>\n";
781 }
782 /*! text for the link to the legend page */
783 DString trLegend() override
784 {
785 return "legenda";
786 }
787//////////////////////////////////////////////////////////////////////////
788// new since 1.2.0
789//////////////////////////////////////////////////////////////////////////
790
791 /*! Used as a marker that is put before a test item */
792 DString trTest() override
793 {
794 return "Test";
795 }
796 /*! Used as the header of the test list */
798 {
799 return "Test lista";
800 }
801
802//////////////////////////////////////////////////////////////////////////
803// new since 1.2.2
804//////////////////////////////////////////////////////////////////////////
805
806 /*! Used as a section header for IDL properties */
808 {
809 return "Svojstva (property)";
810 }
811 /*! Used as a section header for IDL property documentation */
813 {
814 return "Dokumentacija svojstava";
815 }
816
817//////////////////////////////////////////////////////////////////////////
818// new since 1.2.4
819//////////////////////////////////////////////////////////////////////////
820
821 /*! Used for Java classes in the summary section of Java packages */
823 {
824 return "Klase";
825 }
826 /*! Used as the title of a Java package */
827 DString trPackage(const DString &name) override
828 {
829 return "Paket "+name;
830 }
831 /*! The description of the package index page */
833 {
834 return "Paketi s kratkim opisom (ukoliko postoji):";
835 }
836 /*! The link name in the Quick links header for each page */
838 {
839 return "Paketi";
840 }
841 /*! Text shown before a multi-line define */
843 {
844 return "Vrijednost:";
845 }
846
847//////////////////////////////////////////////////////////////////////////
848// new since 1.2.5
849//////////////////////////////////////////////////////////////////////////
850
851 /*! Used as a marker that is put before a \\bug item */
852 DString trBug() override
853 {
854 return "Greška";
855 }
856 /*! Used as the header of the bug list */
858 {
859 return "Popis grešaka";
860 }
861
862//////////////////////////////////////////////////////////////////////////
863// new since 1.2.6
864//////////////////////////////////////////////////////////////////////////
865 /*! Used as ansicpg for RTF file */
867 {
868 return "1252";
869 }
870 /*! Used as ansicpg for RTF fcharset */
872 {
873 return "238";
874 }
875 /*! Used as header RTF general index */
877 {
878 return "Sadržaj";
879 }
880
881 /*! This is used for translation of the word that will possibly
882 * be followed by a single name or by a list of names
883 * of the category.
884 */
885 DString trClass(bool first_capital, bool singular) override
886 {
887 return createNoun(first_capital, singular, "klas", "e", "a");
888 }
889
890 /*! This is used for translation of the word that will possibly
891 * be followed by a single name or by a list of names
892 * of the category.
893 */
894 DString trFile(bool first_capital, bool singular) override
895 {
896 return createNoun(first_capital, singular, "datotek", "e", "a");
897 }
898
899 /*! This is used for translation of the word that will possibly
900 * be followed by a single name or by a list of names
901 * of the category.
902 */
903 DString trNamespace(bool first_capital, bool singular) override
904 {
905 return createNoun(first_capital, singular, "imeni", "ci", "k");
906 }
907
908 /*! This is used for translation of the word that will possibly
909 * be followed by a single name or by a list of names
910 * of the category.
911 */
912 DString trGroup(bool first_capital, bool singular) override
913 {
914 return createNoun(first_capital, singular, "grup", "e", "a");
915 }
916
917 /*! This is used for translation of the word that will possibly
918 * be followed by a single name or by a list of names
919 * of the category.
920 */
921 DString trPage(bool first_capital, bool singular) override
922 {
923 return createNoun(first_capital, singular, "stranic", "e", "a");
924 }
925
926 /*! This is used for translation of the word that will possibly
927 * be followed by a single name or by a list of names
928 * of the category.
929 */
930 DString trMember(bool, bool singular) override
931 {
932 return createNoun(false, singular, "član", "ovi");
933 }
934
935 /*! This is used for translation of the word that will possibly
936 * be followed by a single name or by a list of names
937 * of the category.
938 */
939 DString trGlobal(bool first_capital, bool singular) override
940 {
941 return createNoun(first_capital, singular, "globaln", "e", "a") +
942 createNoun(false, singular, " varijabl", "e", "a");
943 }
944
945//////////////////////////////////////////////////////////////////////////
946// new since 1.2.7
947//////////////////////////////////////////////////////////////////////////
948
949 /*! This text is generated when the \\author command is used and
950 * for the author section in man pages. */
951 DString trAuthor(bool first_capital, bool singular) override
952 {
953 return createNoun(first_capital, singular, "autor", "i");
954 }
955
956//////////////////////////////////////////////////////////////////////////
957// new since 1.2.11
958//////////////////////////////////////////////////////////////////////////
959
960 /*! This text is put before the list of members referenced by a member
961 */
963 {
964 return "Reference";
965 }
966//////////////////////////////////////////////////////////////////////////
967// new since 1.2.13
968//////////////////////////////////////////////////////////////////////////
969
970 /*! used in member documentation blocks to produce a list of
971 * members that are implemented by this one.
972 */
973 DString trImplementedFromList(int numEntries) override
974 {
975 return "Implementira "+trWriteList(numEntries)+".";
976 }
977
978 /*! used in member documentation blocks to produce a list of
979 * all members that implementation this member.
980 */
981 DString trImplementedInList(int numEntries) override
982 {
983 return "Implementirano u "+trWriteList(numEntries)+".";
984 }
985//////////////////////////////////////////////////////////////////////////
986// new since 1.2.16
987//////////////////////////////////////////////////////////////////////////
988
989 /*! used in RTF documentation as a heading for the Table
990 * of Contents.
991 */
993 {
994 return "Sadržaj";
995 }
996//////////////////////////////////////////////////////////////////////////
997// new since 1.2.17
998//////////////////////////////////////////////////////////////////////////
999
1000 /*! Used as the header of the list of item that have been
1001 * flagged deprecated
1002 */
1004 {
1005 return "Popis zastarjelih metoda";
1006 }
1007//////////////////////////////////////////////////////////////////////////
1008// new since 1.2.18
1009//////////////////////////////////////////////////////////////////////////
1010
1011 /*! Used as a header for declaration section of the events found in
1012 * a C# program
1013 */
1015 {
1016 return "Događaji";
1017 }
1018 /*! Header used for the documentation section of a class' events. */
1020 {
1021 return "Dokumentacija događaja";
1022 }
1023//////////////////////////////////////////////////////////////////////////
1024// new since 1.3
1025//////////////////////////////////////////////////////////////////////////
1026
1027 /*! Used as a heading for a list of Java class types with package scope.
1028 */
1030 {
1031 return "Tipovi u paketu";
1032 }
1033 /*! Used as a heading for a list of Java class functions with package
1034 * scope.
1035 */
1037 {
1038 return "Funkcije u paketu";
1039 }
1041 {
1042 return "članovi u paketu";
1043 }
1044 /*! Used as a heading for a list of static Java class functions with
1045 * package scope.
1046 */
1048 {
1049 return "Statičke funkcije u paketu";
1050 }
1051 /*! Used as a heading for a list of Java class variables with package
1052 * scope.
1053 */
1055 {
1056 return "Atributi u paketu";
1057 }
1058 /*! Used as a heading for a list of static Java class variables with
1059 * package scope.
1060 */
1062 {
1063 return "Statički atributi u paketu";
1064 }
1065 //////////////////////////////////////////////////////////////////////////
1066 // new since 1.3.1
1067 //////////////////////////////////////////////////////////////////////////
1068
1069 /*! Used in the quick index of a class/file/namespace member list page
1070 * to link to the unfiltered list of all members.
1071 */
1072 DString trAll() override
1073 {
1074 return "Sve";
1075 }
1076 /*! Put in front of the call graph for a function. */
1078 {
1079 return "Ovo je dijagram poziva za ovu funkciju:";
1080 }
1081
1082 //////////////////////////////////////////////////////////////////////////
1083 // new since 1.3.3
1084 //////////////////////////////////////////////////////////////////////////
1085
1086 /*! This string is used as the title for the page listing the search
1087 * results.
1088 */
1090 {
1091 return "Rezultati pretrage";
1092 }
1093 /*! This string is put just before listing the search results. The
1094 * text can be different depending on the number of documents found.
1095 * Inside the text you can put the special marker $num to insert
1096 * the number representing the actual number of search results.
1097 * The @a numDocuments parameter can be either 0, 1 or 2, where the
1098 * value 2 represents 2 or more matches. HTML markup is allowed inside
1099 * the returned string.
1100 */
1101 DString trSearchResults(int numDocuments) override
1102 {
1103 if (numDocuments==0)
1104 {
1105 return "Nema dokumenta koji odgovaraju vašem upitu";
1106 }
1107 else if (numDocuments==1)
1108 {
1109 return "Nađen <b>1</b> dokument koji odgovara vašem upitu.";
1110 }
1111 else if (numDocuments<5)
1112 {
1113 // Croatian (AFAIK all Slavic languages except Macedonian and Bulgarian)
1114 // have different plural form for 2,3,4.
1115 return "Nađena <b>$num</b> dokumenta koji odgovaraju vašem upitu."
1116 "Najbolji su prikazani prvi.";
1117 }
1118 else
1119 {
1120 return "Nađeno <b>$num</b> dokumenata koji odgovaraju vašem upitu."
1121 "Najbolji su prikazani prvi.";
1122 }
1123 }
1124 /*! This string is put before the list of matched words, for each search
1125 * result. What follows is the list of words that matched the query.
1126 */
1128 {
1129 return "Pronađeno:";
1130 }
1131
1132//////////////////////////////////////////////////////////////////////////
1133// new since 1.3.8
1134//////////////////////////////////////////////////////////////////////////
1135
1136 /*! This is used in HTML as the title of page with source code for file filename
1137 */
1138 DString trSourceFile(const DString& filename) override
1139 {
1140 return "Izvorni kod datoteke " + filename;
1141 }
1142
1143//////////////////////////////////////////////////////////////////////////
1144// new since 1.3.9
1145//////////////////////////////////////////////////////////////////////////
1146
1147 /*! This is used as the name of the chapter containing the directory
1148 * hierarchy.
1149 */
1151 { return "Stablo direktorija"; }
1152
1153 /*! This is used as the name of the chapter containing the documentation
1154 * of the directories.
1155 */
1157 { return "Dokumentacija direktorija"; }
1158
1159 /*! This is used as the title of the directory index and also in the
1160 * Quick links of a HTML page, to link to the directory hierarchy.
1161 */
1163 { return "Direktoriji"; }
1164
1165 /*! This returns the title of a directory page. The name of the
1166 * directory is passed via \a dirName.
1167 */
1168 DString trDirReference(const DString &dirName) override
1169 { DString result= "Opis direktorija "; result += dirName; return result; }
1170
1171 /*! This returns the word directory with or without starting capital
1172 * (\a first_capital) and in singular or plural form (\a singular).
1173 */
1174 DString trDir(bool first_capital, bool singular) override
1175 {
1176 return createNoun(first_capital, singular, "direktorij", "i");
1177 }
1178//////////////////////////////////////////////////////////////////////////
1179// new since 1.4.1
1180//////////////////////////////////////////////////////////////////////////
1181
1182 /*! This text is added to the documentation when the \\overload command
1183 * is used for a overloaded function.
1184 */
1186 {
1187 return "Ovo je preopterećena funkcija (overload). "
1188 "Razlikuje se od navedene metode "
1189 "samo po vrsti argumenata koje prihvaća.";
1190 }
1191
1192//////////////////////////////////////////////////////////////////////////
1193// new since 1.4.6
1194//////////////////////////////////////////////////////////////////////////
1195
1196 /*! This is used to introduce a caller (or called-by) graph */
1198 {
1199 return "Ovo je graf funkcija koje pozivaju ovu funkciju:";
1200 }
1201
1202 /*! This is used in the documentation of a file/namespace before the list
1203 * of documentation blocks for enumeration values
1204 */
1206 { return "Dokumentacija enumeracija"; }
1207//////////////////////////////////////////////////////////////////////////
1208// new since 1.5.4 (mainly for Fortran)
1209//////////////////////////////////////////////////////////////////////////
1210
1211 /*! header that is put before the list of member subprograms (Fortran). */
1213 { return "Dokumentacija member funkcija/subrutina"; }
1214
1215 /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1217 { return "Lista tipova podataka"; }
1218
1219 /*! This is put above each page as a link to all members of compounds (Fortran). */
1221 { return "Polja"; }
1222
1223 /*! This is an introduction to the annotated compound list (Fortran). */
1225 { return "Tipovi podataka s kratkim opisom:"; }
1226
1227 /*! This is an introduction to the page with all data types (Fortran). */
1229 {
1230 DString result="Lista svih ";
1231 if (!extractAll)
1232 {
1233 result+="dokumentiranih ";
1234 }
1235 result+="polja";
1236 result+=" s linkovima na ";
1237 if (!extractAll)
1238 {
1239 result+="dokumentaciju struktura podataka za svako polje";
1240 }
1241 else
1242 {
1243 result+="strukture kojima pripadaju:";
1244 }
1245 return result;
1246 }
1247
1248 /*! This is used in LaTeX as the title of the chapter with the
1249 * annotated compound index (Fortran).
1250 */
1252 { return "Kazalo data tipova"; }
1253
1254 /*! This is used in LaTeX as the title of the chapter containing
1255 * the documentation of all data types (Fortran).
1256 */
1258 { return "Dokumentacija tipova podataka"; }
1259
1260 /*! This is used in the documentation of a file as a header before the
1261 * list of (global) subprograms (Fortran).
1262 */
1264 { return "Funkcije/Subrutine"; }
1265
1266 /*! This is used in the documentation of a file/namespace before the list
1267 * of documentation blocks for subprograms (Fortran)
1268 */
1270 { return "Documentacija funkcija/subrutina"; }
1271
1272 /*! This is used in the documentation of a file/namespace/group before
1273 * the list of links to documented compounds (Fortran)
1274 */
1276 { return "Tipovi podataka"; }
1277
1278 /*! used as the title of page containing all the index of all modules (Fortran). */
1280 { return "Popis modula"; }
1281
1282 /*! used as an introduction to the modules list (Fortran) */
1283 DString trModulesListDescription(bool extractAll) override
1284 {
1285 DString result="Lista svih ";
1286 if (!extractAll) result+="dokumentiranih ";
1287 result+="modula s kratkim opisom:";
1288 return result;
1289 }
1290
1291 /*! used as the title of the HTML page of a module/type (Fortran) */
1293 ClassDef::CompoundType compType,
1294 bool isTemplate) override
1295 {
1296 DString result=clName;
1297 switch(compType)
1298 {
1299 case ClassDef::Class: result+=" Modul"; break;
1300 case ClassDef::Struct: result+=" Tip"; break;
1301 case ClassDef::Union: result+=" Unija"; break;
1302 case ClassDef::Interface: result+=" Sučelje"; break;
1303 case ClassDef::Protocol: result+=" Protokol"; break;
1304 case ClassDef::Category: result+=" Kategorija"; break;
1305 case ClassDef::Exception: result+=" Iznimka"; break;
1306 default: break;
1307 }
1308 if (isTemplate) result+=" Predložak";
1309 result+=" Referenca";
1310 return result;
1311 }
1312 /*! used as the title of the HTML page of a module (Fortran) */
1313 DString trModuleReference(const DString &namespaceName) override
1314 {
1315 DString result=namespaceName;
1316 result+=" - Sadržaj modula";
1317 return result;
1318 }
1319
1320 /*! This is put above each page as a link to all members of modules. (Fortran) */
1322 { return "članovi modula"; }
1323
1324 /*! This is an introduction to the page with all modules members (Fortran) */
1325 DString trModulesMemberDescription(bool extractAll) override
1326 {
1327 DString result="Lista svih ";
1328 if (!extractAll) result+="dokumentiranih ";
1329 result+="članova modula s linkovima na ";
1330 if (extractAll)
1331 {
1332 result+="dokumentaciju modula za svaki član:";
1333 }
1334 else
1335 {
1336 result+="modul kojem pripadaju:";
1337 }
1338 return result;
1339 }
1340
1341 /*! This is used in LaTeX as the title of the chapter with the
1342 * index of all modules (Fortran).
1343 */
1345 { return "Kazalo modula"; }
1346
1347 /*! This is used for translation of the word that will possibly
1348 * be followed by a single name or by a list of names
1349 * of the category.
1350 */
1351 DString trModule(bool first_capital, bool singular) override
1352 {
1353 return createNoun(first_capital, singular, "modul", "i");
1354 }
1355 /*! This is put at the bottom of a module documentation page and is
1356 * followed by a list of files that were used to generate the page.
1357 */
1359 bool) override
1360 { // here s is one of " Module", " Struct" or " Union"
1361 // single is true implies a single file
1362 DString result="Dokumentacija ovog ";
1363 switch(compType)
1364 {
1365 case ClassDef::Class: result+="modula"; break;
1366 case ClassDef::Struct: result+="tipa"; break;
1367 case ClassDef::Union: result+="unije"; break;
1368 case ClassDef::Interface: result+="sučelja"; break;
1369 case ClassDef::Protocol: result+="protokola"; break;
1370 case ClassDef::Category: result+="kategorije"; break;
1371 case ClassDef::Exception: result+="iznimke"; break;
1372 default: break;
1373 }
1374 result+=" je napravljena iz :";
1375 return result;
1376 }
1377 /*! This is used for translation of the word that will possibly
1378 * be followed by a single name or by a list of names
1379 * of the category.
1380 */
1381 DString trType(bool first_capital, bool singular) override
1382 {
1383 return createNoun(first_capital, singular, "tip", "ovi");
1384 }
1385 /*! This is used for translation of the word that will possibly
1386 * be followed by a single name or by a list of names
1387 * of the category.
1388 */
1389 DString trSubprogram(bool first_capital, bool singular) override
1390 {
1391 return createNoun(first_capital, singular, "subprogram", "i");
1392 }
1393
1394 /*! C# Type Constraint list */
1396 {
1397 return "Ograničenja tipova (Type Constraints)";
1398 }
1399 //////////////////////////////////////////////////////////////////////////
1400 // new since 1.6.0 (mainly for the new search engine)
1401 //////////////////////////////////////////////////////////////////////////
1402
1403 /*! directory relation for \a name */
1404 DString trDirRelation(const DString &name) override
1405 {
1406 return DString("Relacije ") + name;
1407 }
1408
1409 /*! Loading message shown when loading search results */
1411 {
1412 return "Učitavam...";
1413 }
1414
1415 /*! Label used for search results in the global namespace */
1417 {
1418 return "Globalni namespace";
1419 }
1420
1421 /*! Message shown while searching */
1423 {
1424 return "Tražim...";
1425 }
1426
1427 /*! Text shown when no search results are found */
1429 {
1430 return "Nema traženih podataka";
1431 }
1432
1433//////////////////////////////////////////////////////////////////////////
1434// new since 1.6.3 (missing items for the directory pages)
1435//////////////////////////////////////////////////////////////////////////
1436
1437 /*! when clicking a directory dependency label, a page with a
1438 * table is shown. The heading for the first column mentions the
1439 * source file that has a relation to another file.
1440 */
1441 DString trFileIn(const DString &name) override
1442 {
1443 return "Datoteka u "+name;
1444 }
1445
1446 /*! when clicking a directory dependency label, a page with a
1447 * table is shown. The heading for the second column mentions the
1448 * destination file that is included.
1449 */
1450 DString trIncludesFileIn(const DString &name) override
1451 {
1452 return "Uključuje datotake u "+name;
1453 }
1454
1455 /** Compiles a date string.
1456 * @param year Year in 4 digits
1457 * @param month Month of the year: 1=January
1458 * @param day Day of the Month: 1..31
1459 * @param dayOfWeek Day of the week: 1=Monday..7=Sunday
1460 * @param hour Hour of the day: 0..23
1461 * @param minutes Minutes in the hour: 0..59
1462 * @param seconds Seconds within the minute: 0..59
1463 * @param includeTime Include time in the result string?
1464 */
1465 DString trDateTime(int year,int month,int day,int dayOfWeek,
1466 int hour,int minutes,int seconds,
1467 DateTimeType includeTime) override
1468 {
1469 static const char *days[] = { "Pon","Uto","Sri","Čet","Pet","Sub","Ned" };
1470 static const char *months[] = { "Sje","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro" };
1471 DString sdate;
1472 if (includeTime == DateTimeType::DateTime || includeTime == DateTimeType::Date)
1473 {
1474 sdate.sprintf("%s %s %d %d",days[dayOfWeek-1],months[month-1],day,year);
1475 }
1476 if (includeTime == DateTimeType::DateTime) sdate += " ";
1477 if (includeTime == DateTimeType::DateTime || includeTime == DateTimeType::Time)
1478 {
1479 DString stime;
1480 stime.sprintf("%.2d:%.2d:%.2d",hour,minutes,seconds);
1481 sdate+=stime;
1482 }
1483 return sdate;
1484 }
1485 DString trDayOfWeek(int dayOfWeek, bool, bool full) override
1486 {
1487 static const char *days_short[] = { "pon", "uto", "sri", "čet", "pet", "sub", "ned" };
1488 static const char *days_full[] = { "ponedjeljak", "utorak", "srijeda", "četvrtak", "petak", "subota", "nedjelja" };
1489 DString text = full? days_full[dayOfWeek-1] : days_short[dayOfWeek-1];
1490 return text;
1491 }
1492 DString trMonth(int month, bool, bool full) override
1493 {
1494 static const char *months_short[] = { "sij", "vlj", "ožu", "tra", "svi", "lip", "srp", "kol", "ruj", "lis", "stu", "pro" };
1495 static const char *months_full[] = { "siječanj", "veljača", "ožujak", "travanj", "svibanj", "lipanj", "srpanj", "kolovoz", "rujan", "listopad", "studeni", "prosinac" };
1496 DString text = full? months_full[month-1] : months_short[month-1];
1497 return text;
1498 }
1499 DString trDayPeriod(bool period) override
1500 {
1501 static const char *dayPeriod[] = { "AM", "PM" };
1502 return dayPeriod[period?1:0];
1503 }
1504
1505
1506//////////////////////////////////////////////////////////////////////////
1507// new since 1.7.5
1508//////////////////////////////////////////////////////////////////////////
1509
1510 /*! Header for the page with bibliographic citations */
1512 { return "Bibliografija"; }
1513
1514 /*! Text for copyright paragraph */
1516 { return "Copyright"; }
1517
1518 /*! Header for the graph showing the directory dependencies */
1519 DString trDirDepGraph(const DString &name) override
1520 { return DString("Direktoriji o kojima ovisi ")+name+":"; }
1521
1522//////////////////////////////////////////////////////////////////////////
1523// new since 1.8.0
1524//////////////////////////////////////////////////////////////////////////
1525
1526 /*! Detail level selector shown for hierarchical indices */
1528 { return "razina detalja"; }
1529
1530 /*! Section header for list of template parameters */
1532 { return "Parametri predloška"; }
1533
1534 /*! Used in dot graph when UML_LOOK is enabled and there are many fields */
1535 DString trAndMore(const DString &number) override
1536 { return "i još "+number+" ..."; }
1537
1538 /*! Used file list for a Java enum */
1539 DString trEnumGeneratedFromFiles(bool single) override
1540 { DString result = "Dokumatacija za ovu enumeraciju je generirana iz ";
1541 if (!single) result += "datoteka:";
1542 else result += "datoteke:";
1543 return result;
1544 }
1545
1546 /*! Header of a Java enum page (Java enums are represented as classes). */
1547 DString trEnumReference(const DString &name) override
1548 { return "Opis enumeracije " + name; }
1549
1550 /*! Used for a section containing inherited members */
1551 DString trInheritedFrom(const DString &members,const DString &what) override
1552 { return members+" naslijeđeni od "+what; }
1553
1554 /*! Header of the sections with inherited members specific for the
1555 * base class(es)
1556 */
1558 { return "Dodatni naslijeđeni članovi"; }
1559
1560};
1561
1562#endif
1563
1564
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:88
DString()=default
bool empty() const
Returns true iff the string is empty (std::string compatible alias for isEmpty()).
Definition dstring.h:152
DString & sprintf(const char *format,...)
Definition dstring.cpp:30
DString trDesignUnitDocumentation() override
DString trMemberTypedefDocumentation() override
DString trCode() override
DString trCompoundReferenceFortran(const DString &clName, ClassDef::CompoundType compType, bool isTemplate) override
DString trConstructorDocumentation() override
DString trModule(bool first_capital, bool singular) override
DString trStaticPrivateMembers() override
DString trCiteReferences() override
DString trModulesDescription() override
DString trDefinedAtLineInSourceFile() override
DString trCallerGraph() override
DString trTemplateParameters() override
DString trWriteList(int numEntries) override
DString trAll() override
DString trVariables() override
DString trVersion() override
DString trAdditionalInheritedMembers() override
DString trCompoundMembersDescriptionFortran(bool extractAll) override
DString trProperties() override
DString trPublicTypes() override
DString trEnumerationValues() override
DString trMonth(int month, bool, bool full) override
DString trPackages() override
DString trPageIndex() override
DString trModuleIndex() override
DString trCopyright() override
DString trGlobal(bool first_capital, bool singular) override
DString trCompoundListDescriptionFortran() override
DString trClasses() override
DString trDirRelation(const DString &name) override
DString trProtectedTypes() override
DString trMemberList() override
DString trEventDocumentation() override
DString trDirectories() override
DString trDeprecatedList() override
DString trSince() override
DString trReferenceManual() override
DString trTest() override
DString trAttention() override
DString trFriends() override
DString trDefineValue() override
DString trFileIn(const DString &name) override
DString trVariableDocumentation() override
DString trProtectedSlots() override
DString trEnumReference(const DString &name) override
DString trDirReference(const DString &dirName) override
DString trPrivateSlots() override
DString trSearching() override
DString trPrivateAttribs() override
DString trEnumerationValueDocumentation() override
DString trHierarchicalIndex() override
DString trGotoSourceCode() override
DString trClassDocumentation() override
DString trMemberFunctionDocumentationFortran() override
DString trGraphicalHierarchy() override
DString trEnumName() override
DString trPublicSlots() override
DString trMore() override
DString trExamples() override
DString trPackageMembers() override
DString trNamespaceListDescription(bool extractAll) override
DString trStaticPublicAttribs() override
DString trEnumGeneratedFromFiles(bool single) override
DString trPackageAttribs() override
DString trPublicMembers() override
DString trStaticPackageFunctions() override
DString trIncludesFileIn(const DString &name) override
DString trNote() override
DString trEvents() override
DString trMemberDataDocumentation() override
DString trDayOfWeek(int dayOfWeek, bool, bool full) override
DString trFile(bool first_capital, bool singular) override
DString trLegendDocs() override
DString trClass(bool first_capital, bool singular) override
DString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single) override
DString trWarning() override
DString trPublicAttribs() override
DString trGroup(bool first_capital, bool singular) override
DString trFunctions() override
DString trFileMembers() override
DString trNamespaceMemberDescription(bool extractAll) override
DString trInheritsList(int numEntries) override
DString trBug() override
DString trProtectedAttribs() override
DString trListOfAllMembers() override
DString trSearchResultsTitle() override
DString trDateTime(int year, int month, int day, int dayOfWeek, int hour, int minutes, int seconds, DateTimeType includeTime) override
Compiles a date string.
DString trModulesMemberDescription(bool extractAll) override
DString trReferences() override
DString trPageAbbreviation() override
DString trDeprecated() override
DString trPropertyDocumentation() override
DString trFileIndex() override
DString trTodoList() override
DString trFileListDescription(bool extractAll) override
DString trPrivateMembers() override
DString trProtectedMembers() override
DString trTypedefDocumentation() override
DString trTodo() override
DString trPrecondition() override
DString trInclByDepGraph() override
DString trDefineDocumentation() override
DString trType(bool first_capital, bool singular) override
DString trModules() override
DString trFileList() override
DString trCompoundList() override
DString trNamespace(bool first_capital, bool singular) override
DString trEnumerationTypeDocumentation() override
DString trSourceFile(const DString &filename) override
DString trNamespaceMembers() override
DString trStaticPrivateAttribs() override
DString trDate() override
DString trSeeAlso() override
DString trModulesListDescription(bool extractAll) override
DString trPostcondition() override
DString trThisIsTheListOfAllMembers() override
DString trModuleReference(const DString &namespaceName) override
DString trCompoundMembersDescription(bool extractAll) override
DString trImplementedInList(int numEntries) override
DString trGlobalNamespace() override
DString trInvariant() override
DString trSubprogramDocumentation() override
DString getLanguageString() override
language codes for Html help
DString trMemberEnumerationDocumentation() override
DString trRemarks() override
DString trAuthor(bool first_capital, bool singular) override
DString trRTFGeneralIndex() override
DString trCompounds() override
DString trGotoDocumentation() override
DString trNamespaces() override
DString trSearch() override
DString trPrivateTypes() override
DString trRelatedSubscript() override
DString trDetails() override
DString trPackageFunctions() override
DString trRelatedFunctions() override
DString trFileReference(const DString &fileName) override
DString trIncludingInheritedMembers() override
DString trImplementedFromList(int numEntries) override
DString trInclDepGraph(const DString &fName) override
DString trDataTypes() override
DString trExceptions() override
DString trPackageTypes() override
DString trClassDiagram(const DString &clName) override
DString trDirIndex() override
DString trDetailedDescription() override
DString trCompoundReference(const DString &clName, ClassDef::CompoundType compType, bool) override
DString trEnumValue() override
DString trMemberFunctionDocumentation() override
DString trReferencedBy() override
DString trMainPage() override
DString trTypeConstraints() override
DString trReimplementedFromList(int numEntries) override
DString trNamespaceDocumentation() override
DString trGeneratedBy() override
DString trBugList() override
DString trSearchMatches() override
DString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool) override
DString trModuleDocumentation() override
DString trDirDocumentation() override
DString trRelatedPages() override
DString trRTFansicp() override
DString trReimplementedInList(int numEntries) override
DString trNoMatches() override
DString trFileDocumentation() override
DString trInitialValue() override
DString trClassHierarchy() override
DString trEnumerations() override
DString trReturnValues() override
DString trSignals() override
DString trDefinedIn() override
DString trGeneratedAutomatically(const DString &s) override
DString trNamespaceList() override
DString trNamespaceReference(const DString &namespaceName) override
DString trInheritedByList(int numEntries) override
DString trCollaborationDiagram(const DString &clName) override
DString trSubprogram(bool first_capital, bool singular) override
DString trParameters() override
DString trSearchResults(int numDocuments) override
DString trExamplesDescription() override
DString trStaticProtectedAttribs() override
DString trModulesIndex() override
DString trPackageListDescription() override
DString trRelatedPagesDescription() override
DString trOverloadText() override
DString trCompoundMembersFortran() override
DString trCompoundIndexFortran() override
DString trGeneratedAt(const DString &date, const DString &projName) override
DString trCallGraph() override
DString trDayPeriod(bool period) override
DString trFunctionDocumentation() override
DString trSubprograms() override
DString trCompoundIndex() override
DString trMember(bool, bool singular) override
DString trPackage(const DString &name) override
DString trFileMembersDescription(bool extractAll) override
DString trStaticProtectedMembers() override
DString trISOLang() override
DString trCompoundMembers() override
DString trPage(bool first_capital, bool singular) override
DString trDocumentation(const DString &projName) override
DString trCompoundListFortran() override
DString trClassHierarchyDescription() override
DString trReturns() override
DString trInheritedFrom(const DString &members, const DString &what) override
DString trGotoTextualHierarchy() override
DString trLoading() override
DString trModulesList() override
DString trTypedefs() override
DString trNamespaceIndex() override
DString trLegendTitle() override
DString idLanguage() override
DString trDefines() override
DString latexLanguageSupportCommand() override
DString trAndMore(const DString &number) override
DString trRTFTableOfContents() override
DString trCompoundListDescription() override
DString trModulesMembers() override
DString trDir(bool first_capital, bool singular) override
DString trTypeDocumentation() override
DString trDetailLevel() override
DString trDefinedInSourceFile() override
DString trRelatedFunctionDocumentation() override
DString trStaticPublicMembers() override
DString trDirDepGraph(const DString &name) override
DString trTestList() override
DString trLegend() override
DString trGotoGraphicalHierarchy() override
DString trRTFCharSet() override
DString trStaticPackageAttribs() override
DString createNoun(bool first_capital, bool singular, const DString &base, const DString &plurSuffix, const DString &singSuffix="")
Definition translator.h:799
#define Config_getBool(name)
Definition config.h:33
DateTimeType
Definition datetime.h:38
DString generateMarker(int id)
Definition dstring.h:908
DString getDotImageExtension()
Definition util.cpp:4966