Doxygen
translator_hr.h
浏览该文件的文档.
1 /******************************************************************************
2  *
3  *
4  *
5  * Copyright (C) 1997-2015 by Dimitri van Heesch.
6  *
7  * Permission to use, copy, modify, and distribute this software and its
8  * documentation under the terms of the GNU General Public License is hereby
9  * granted. No representations are made about the suitability of this software
10  * for any purpose. It is provided "as is" without express or implied warranty.
11  * See the GNU General Public License for more details.
12  *
13  * Documents produced by Doxygen are derivative works derived from the
14  * input used in their production; they are not affected by this license.
15  *
16 */
17 // translation by Boris Bralo <boris.bralo@gmail.com>
18 // Updates:
19 // --------
20 // 2000/08/20
21 // - Better handling of ISO-8859-2/ WIN 1250 stuff based on (actually stolen from :-)) Czech translations
22 // implemented by Petr Prikryl (prikrylp@skil.cz).
23 // As opposed to Czech translation this one assumes that Doxygen strings are written in Linux ( it's true,
24 // I don't have QT pro licence ) , and uses ISOToWin function when built in WIN32
25 //
26 // 2000/09/18
27 // - Added strings from 1.2.1
28 // - Removed unneeeded decode() calls
29 // - Changed some CS terminology
30 //
31 // 2001/01/22
32 // - Added strings from 1.2.4
33 //
34 // 2001/05/25
35 // - Added strings and up to and including 1.2.7_20010524
36 // - Removed obsolete method trFiles()
37 // - Removed obsolete method trAuthor()
38 // - Removed obsolete method trAuthor()
39 // - Removed obsolete method trVerbatimHeadert()
40 // - Method latexBabelPackage() removed, ude latexLanguageSupportCommand
41 //
42 // 2001/11/13
43 // - inherits from Translator
44 // - Added strings for 1.2.11
45 // - better output for C documentation (trCompoundMembersDescription(), trClassDocumentation())
46 //
47 // 2001/11/13
48 // - Added strings for 1.2.13
49 //
50 // 2003/02/26
51 // - Added strings for 1.2.18
52 //
53 // 2003/04/29
54 // - Added strings for 1.3.0
55 //
56 // 2004/06/21
57 // - Added strings for 1.3.8
58 //
59 // 2004/09/15
60 // - Added strings for 1.3.9
61 //
62 // 2005/02/28
63 // - Removed obsolete (unused) methods
64 //
65 // 2005/03/21
66 // - Added strings for 1.4.1
67 //
68 // 2006/06/11
69 // - Added strings for 1.4.6
70 //
71 // 2009/01/09
72 // - Updated trLegendDocs
73 //
74 // 2010/03/04
75 // - Updates for "new since 1.6.0 (mainly for the new search engine)".
76 // - UTF-8
77 // - removed decode()
78 //
79 // 2010/05/27
80 // - Updates for 1.6.3
81 // 2012/04/12
82 // - Updates for 1.8.0
83 #ifndef TRANSLATOR_HR_H
84 #define TRANSLATOR_HR_H
85 
87 {
88  private:
89 
90  public:
92  { return "croatian"; }
94  { return "\\usepackage[croatian]{babel}\n"; }
96  { return "hr"; }
98  { return "Povezane funkcije"; }
100  { return "(To nisu member funkcije.)"; }
102  { return "Detaljno objašnjenje"; }
104  { return "Dokumentacija typedef članova"; }
106  { return "Dokumentacija enumeracijskih članova"; }
108  { return "Dokumentacija funkcija"; }
110  { return "Documentacija varijabli"; }
111  QCString trMore()
112  { return "Opširnije..."; }
114  { return "Popis svih članova"; }
116  { return "Popis članova."; }
118  { return "Ovo je popis svih članova"; }
120  { return ", uključujući naslijeđene članove."; }
122  { QCString result="napravljeno automatski Doxygen-om";
123  if (!s.isEmpty()) result+=(QCString)" za "+s;
124  result+=" iz programskog koda.";
125  return result;
126  }
128  { return "enum ime"; }
130  { return "enum vrijednost"; }
132  { return "definirano u"; }
134  { return "Moduli"; }
136  { return "Stablo klasa"; }
138  {
139  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
140  {
141  return "Sve strukture";
142  }
143  else
144  {
145  return "Sve klase";
146  }
147  }
149  { return "Popis datoteka"; }
151  {
152  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
153  return "Svi članovi struktura";
154  else
155  return "Svi članovi klasa";
156  }
158  { return "članovi klasa u datoteci"; }
160  { return "Stranice povezane s ovom"; }
162  { return "Primjeri"; }
164  { return "Traži"; }
166  { return "Stablo naslijeđivanja je složeno "
167  "približno po abecedi:";
168  }
169  QCString trFileListDescription(bool extractAll)
170  {
171  QCString result="Popis svih ";
172  if (!extractAll) result+="dokumentiranih ";
173  result+="datoteka, s kratkim opisom:";
174  return result;
175  }
177  { return "Popis svih klasa, unija i struktura "
178  "s kratkim opisom :";
179  }
181  {
182  QCString result="Popis svih ";
183  if (!extractAll)
184  result+="dokumentiranih ";
185 
186  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
187  result+="članova klasa s linkovima na ";
188  else
189  result+="članova struktura s linkovima na ";
190 
191  if (!extractAll)
192  {
193  result+="dokumentaciju svakog člana:";
194  }
195  else
196  {
197  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
198  result+="dokumentaciju klase :";
199  else
200  result +="dokumentaciju strukture";
201  }
202  return result;
203  }
204  QCString trFileMembersDescription(bool extractAll)
205  {
206  QCString result="Popis svih ";
207  if (!extractAll)
208  result+="dokumentiranih ";
209  result+="članova s linkovima na ";
210  if (extractAll)
211  result+="dokumentaciju datoteke u kojima se nalaze:";
212  else
213  result+="datoteke u kojima se nalaze:";
214  return result;
215  }
217  { return "Popis primjera :"; }
219  { return "Popis povezanih stranica:"; }
221  { return "Popis svih modula:"; }
222 
224  { return "Dokumentacija"; }
226  { return "Kazalo modula"; }
228  { return "Hijerarhijsko kazalo"; }
230  {
231  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
232  {
233  return "Kazalo struktura podataka";
234  }
235  else
236  {
237  return "Skupno kazalo ";
238  }
239  }
241  { return "Kazalo datoteka"; }
243  { return "Dokumentacija modula"; }
245  {
246  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
247  {
248  return "Dokumentacija struktura podataka";
249  }
250  else
251  {
252  return "Dokumentacija klasa";
253  }
254  }
256  { return "Dokumentacija datoteka"; }
258  { return "Dokumentacija primjera"; }
260  { return "Dokumentacija vezane stranice"; }
262  { return "Priručnik"; }
263 
265  { return "Definicije"; }
267  { return "Typedef-ovi"; }
269  { return "Enumeracije"; }
271  { return "Funkcije"; }
273  { return "Varijable"; }
275  { return "Vrijednosti enumeracija"; }
277  { return "Dokumentacija definicija"; }
279  { return "Dokumentacija typedef-a"; }
281  { return "Dokumentacija enumeracijskog tipa"; }
283  { return "Dokumentacije funkcija"; }
285  { return "Dokumentacija varijable"; }
287  { return "Strukture"; }
288  QCString trGeneratedAt(const QCString &date,const QCString &projName)
289  {
290  QCString result=(QCString)"Napravljeno "+date;
291  if (!projName.isEmpty()) result+=(QCString)" projekt: "+projName;
292  result+=" generator: ";
293  return result;
294  }
296  {
297  return QCString("Dijagram klasa za ")+clName;
298  }
300  { return "Isključivo za internu uporabu."; }
302  { return "Upozorenje"; }
304  { return "Verzija"; }
305  QCString trDate()
306  { return "Datum"; }
308  { return "Povratne vrijednosti"; }
310  { return "Vidi također"; }
312  { return "Parametri"; }
314  { return "Iznimke"; }
316  { return "Generirao"; }
317 
318 //////////////////////////////////////////////////////////////////////////
319 // new since 0.49-990307
320 //////////////////////////////////////////////////////////////////////////
321 
323  { return "Popis imenika"; }
325  {
326  QCString result="Popis svih ";
327  if (!extractAll) result+="dokumentiranih ";
328  result+="imenika s kratkim opisom:";
329  return result;
330  }
332  { return "Friend-ovi "; }
333 
334 //////////////////////////////////////////////////////////////////////////
335 // new since 0.49-990405
336 //////////////////////////////////////////////////////////////////////////
337 
339  { return "Dokumentacija povezanih funkcija"; }
340 
341 //////////////////////////////////////////////////////////////////////////
342 // new since 0.49-990425
343 //////////////////////////////////////////////////////////////////////////
344 
345  QCString trCompoundReference(const QCString &clName,
347  bool /*isTemplate*/)
348  // used as the title of the HTML page of a class/struct/union
349  {
350  QCString result="Opis ";
351  switch(compType)
352  {
353  case ClassDef::Class: result+=" klase "; break;
354  case ClassDef::Struct: result+=" strukture "; break;
355  case ClassDef::Union: result+=" unije "; break;
356  case ClassDef::Interface: result+=" sučelja (interface) "; break;
357  case ClassDef::Protocol: result+=" protokola "; break;
358  case ClassDef::Category: result+=" kategorije "; break;
359  case ClassDef::Exception: result+=" iznimke (exception) "; break;
360  default: break;
361  }
362  result += clName;
363  return result;
364  }
365  QCString trFileReference(const QCString &fileName)
366  // used as the title of the HTML page of a file
367  {
368  QCString result="Opis datoteke ";
369  result+=fileName;
370  return result;
371  }
372  QCString trNamespaceReference(const QCString &namespaceName)
373  // used as the title of the HTML page of a namespace
374  {
375  QCString result ="Opis imenika ";
376  result+=namespaceName;
377 
378  return result;
379  }
380 
381  // these are for the member sections of a class, struct or union
383  { return "Public članovi"; }
385  { return "Public slotovi"; }
387  { return "Signali"; }
389  { return "Static public članovi"; }
391  { return "Protected članovi"; }
393  { return "Protected slotovi"; }
395  { return "Static protected članovi"; }
397  { return "Privatni članovi"; }
399  { return "Privatni slotovi"; }
401  { return "Statični privatni članovi"; }
402  // end of member sections
403 
404  QCString trWriteList(int numEntries)
405  {
406  // this function is used to produce a comma-separated list of items.
407  // use generateMarker(i) to indicate where item i should be put.
408  QCString result;
409  int i;
410  // the inherits list contain `numEntries' classes
411  for (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  QCString trInheritsList(int numEntries)
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  QCString trInheritedByList(int numEntries)
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  QCString trReimplementedFromList(int numEntries)
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  QCString trReimplementedInList(int numEntries)
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  QCString trNamespaceMemberDescription(bool extractAll)
457  // This is an introduction to the page with all namespace members
458  {
459  QCString 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)
498  { // here s is one of " Class", " Struct" or " Union"
499  // single is true implies a single file
500  QCString 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 */
563  {
564  return (QCString)"Kolaboracijski dijagram za "+clName+ ":";
565  }
566  /*! this text is put before an include dependency graph */
568  {
569  return (QCString)"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 */
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  QCString trNote()
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  virtual QCString trTodo()
678  {
679  return "Za uraditi";
680  }
681  /*! Used as the header of the todo list */
682  virtual QCString trTodoList()
683  {
684  return "Ostalo za uraditi";
685  }
686 
687 //////////////////////////////////////////////////////////////////////////
688 // new since 1.1.4
689 //////////////////////////////////////////////////////////////////////////
690 
691  virtual QCString trReferencedBy()
692  {
693  return "Referencirano od";
694  }
695  virtual QCString trRemarks()
696  {
697  return "Napomene";
698  }
699  virtual QCString trAttention()
700  {
701  return "Pažnja";
702  }
703  virtual QCString trInclByDepGraph()
704  {
705  return "Ovaj graf pokazuje koje datoteke izravno "
706  "ili neizravno uključuju ovu datoteku:";
707  }
708  virtual QCString trSince()
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  virtual QCString trLegend()
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  virtual QCString trTest()
793  {
794  return "Test";
795  }
796  /*! Used as the header of the test list */
797  virtual QCString trTestList()
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 */
822  virtual QCString trClasses()
823  {
824  return "Klase";
825  }
826  /*! Used as the title of a Java package */
827  virtual QCString trPackage(const QCString &name)
828  {
829  return (QCString)"Paket "+name;
830  }
831  /*! Title of the package index page */
832  virtual QCString trPackageList()
833  {
834  return "Lista paketa";
835  }
836  /*! The description of the package index page */
838  {
839  return "Paketi s kratkim opisom (ukoliko postoji):";
840  }
841  /*! The link name in the Quick links header for each page */
843  {
844  return "Paketi";
845  }
846  /*! Text shown before a multi-line define */
848  {
849  return "Vrijednost:";
850  }
851 
852 //////////////////////////////////////////////////////////////////////////
853 // new since 1.2.5
854 //////////////////////////////////////////////////////////////////////////
855 
856  /*! Used as a marker that is put before a \\bug item */
857  virtual QCString trBug()
858  {
859  return "Greška";
860  }
861  /*! Used as the header of the bug list */
862  virtual QCString trBugList()
863  {
864  return "Popis grešaka";
865  }
866 
867 //////////////////////////////////////////////////////////////////////////
868 // new since 1.2.6
869 //////////////////////////////////////////////////////////////////////////
870  /*! Used as ansicpg for RTF file */
871  virtual QCString trRTFansicp()
872  {
873  return "1252";
874  }
875  /*! Used as ansicpg for RTF fcharset */
876  virtual QCString trRTFCharSet()
877  {
878  return "238";
879  }
880  /*! Used as header RTF general index */
881  virtual QCString trRTFGeneralIndex()
882  {
883  return "Sadržaj";
884  }
885 
886  /*! This is used for translation of the word that will possibly
887  * be followed by a single name or by a list of names
888  * of the category.
889  */
890  virtual QCString trClass(bool first_capital, bool singular)
891  {
892  QCString result((first_capital ? "Klas" : "klas"));
893  result+= (singular ? "a" : "e");
894  return result;
895  }
896 
897  /*! This is used for translation of the word that will possibly
898  * be followed by a single name or by a list of names
899  * of the category.
900  */
901  virtual QCString trFile(bool first_capital, bool singular)
902  {
903  QCString result((first_capital ? "Datotek" : "datotek"));
904  result+= (singular ? "a" : "e");
905  return result;
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  virtual QCString trNamespace(bool first_capital, bool singular)
913  {
914  QCString result;
915  if (singular)
916  result = ((first_capital ? "Imenik" : "imenik"));
917  else
918  result = ((first_capital ? "Imenici" : "imenici"));
919  return result;
920  }
921 
922  /*! This is used for translation of the word that will possibly
923  * be followed by a single name or by a list of names
924  * of the category.
925  */
926  virtual QCString trGroup(bool first_capital, bool singular)
927  {
928  QCString result((first_capital ? "Grup" : "grup"));
929  result+= (singular ? "a" : "e");
930  return result;
931  }
932 
933  /*! This is used for translation of the word that will possibly
934  * be followed by a single name or by a list of names
935  * of the category.
936  */
937  virtual QCString trPage(bool first_capital, bool singular)
938  {
939  QCString result((first_capital ? "Stranic" : "stranic"));
940  result+= (singular ? "a" : "e");
941  return result;
942  }
943 
944  /*! This is used for translation of the word that will possibly
945  * be followed by a single name or by a list of names
946  * of the category.
947  */
948  virtual QCString trMember(bool, bool singular)
949  {
950  QCString result("član");
951  if (!singular) result+="ovi";
952  return result;
953  }
954 
955  /*! This is used for translation of the word that will possibly
956  * be followed by a single name or by a list of names
957  * of the category.
958  */
959  virtual QCString trGlobal(bool first_capital, bool singular)
960  {
961  QCString result((first_capital ? "G" : "g"));
962  if( singular )
963  result += "lobalna varijabla";
964  else
965  result += "lobalne varijable";
966 
967  return result;
968  }
969 
970 //////////////////////////////////////////////////////////////////////////
971 // new since 1.2.7
972 //////////////////////////////////////////////////////////////////////////
973 
974  /*! This text is generated when the \\author command is used and
975  * for the author section in man pages. */
976  virtual QCString trAuthor(bool first_capital, bool singular)
977  {
978  QCString result((first_capital ? "Autor" : "autor"));
979  if (!singular) result+="i";
980  return result;
981  }
982 
983 //////////////////////////////////////////////////////////////////////////
984 // new since 1.2.11
985 //////////////////////////////////////////////////////////////////////////
986 
987  /*! This text is put before the list of members referenced by a member
988  */
989  virtual QCString trReferences()
990  {
991  return "Reference";
992  }
993 //////////////////////////////////////////////////////////////////////////
994 // new since 1.2.13
995 //////////////////////////////////////////////////////////////////////////
996 
997  /*! used in member documentation blocks to produce a list of
998  * members that are implemented by this one.
999  */
1000  virtual QCString trImplementedFromList(int numEntries)
1001  {
1002  return "Implementira "+trWriteList(numEntries)+".";
1003  }
1005  /*! used in member documentation blocks to produce a list of
1006  * all members that implementation this member.
1007  */
1008  virtual QCString trImplementedInList(int numEntries)
1009  {
1010  return "Implementirano u "+trWriteList(numEntries)+".";
1011  }
1012 //////////////////////////////////////////////////////////////////////////
1013 // new since 1.2.16
1014 //////////////////////////////////////////////////////////////////////////
1016  /*! used in RTF documentation as a heading for the Table
1017  * of Contents.
1018  */
1019  virtual QCString trRTFTableOfContents()
1020  {
1021  return "Sadržaj";
1022  }
1023 //////////////////////////////////////////////////////////////////////////
1024 // new since 1.2.17
1025 //////////////////////////////////////////////////////////////////////////
1026 
1027  /*! Used as the header of the list of item that have been
1028  * flagged deprecated
1029  */
1030  virtual QCString trDeprecatedList()
1031  {
1032  return "Popis zastarjelih metoda";
1033  }
1034 //////////////////////////////////////////////////////////////////////////
1035 // new since 1.2.18
1036 //////////////////////////////////////////////////////////////////////////
1037 
1038  /*! Used as a header for declaration section of the events found in
1039  * a C# program
1040  */
1041  virtual QCString trEvents()
1042  {
1043  return "Događaji";
1044  }
1045  /*! Header used for the documentation section of a class' events. */
1046  virtual QCString trEventDocumentation()
1047  {
1048  return "Dokumentacija događaja";
1049  }
1050 //////////////////////////////////////////////////////////////////////////
1051 // new since 1.3
1052 //////////////////////////////////////////////////////////////////////////
1053 
1054  /*! Used as a heading for a list of Java class types with package scope.
1055  */
1057  {
1058  return "Tipovi u paketu";
1059  }
1060  /*! Used as a heading for a list of Java class functions with package
1061  * scope.
1062  */
1063  virtual QCString trPackageMembers()
1064  {
1065  return "Funkcije u paketu";
1066  }
1067  /*! Used as a heading for a list of static Java class functions with
1068  * package scope.
1069  */
1071  {
1072  return "Statičke funkcije u paketu";
1073  }
1074  /*! Used as a heading for a list of Java class variables with package
1075  * scope.
1076  */
1077  virtual QCString trPackageAttribs()
1078  {
1079  return "Atributi u paketu";
1080  }
1081  /*! Used as a heading for a list of static Java class variables with
1082  * package scope.
1083  */
1085  {
1086  return "Statički atributi u paketu";
1087  }
1088  //////////////////////////////////////////////////////////////////////////
1089  // new since 1.3.1
1090  //////////////////////////////////////////////////////////////////////////
1091 
1092  /*! Used in the quick index of a class/file/namespace member list page
1093  * to link to the unfiltered list of all members.
1094  */
1095  virtual QCString trAll()
1096  {
1097  return "Sve";
1098  }
1099  /*! Put in front of the call graph for a function. */
1100  virtual QCString trCallGraph()
1101  {
1102  return "Ovo je dijagram poziva za ovu funkciju:";
1103  }
1104 
1105  //////////////////////////////////////////////////////////////////////////
1106  // new since 1.3.3
1107  //////////////////////////////////////////////////////////////////////////
1108 
1109  /*! This string is used as the title for the page listing the search
1110  * results.
1111  */
1112  virtual QCString trSearchResultsTitle()
1113  {
1114  return "Rezultati pretrage";
1115  }
1116  /*! This string is put just before listing the search results. The
1117  * text can be different depending on the number of documents found.
1118  * Inside the text you can put the special marker $num to insert
1119  * the number representing the actual number of search results.
1120  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1121  * value 2 represents 2 or more matches. HTML markup is allowed inside
1122  * the returned string.
1123  */
1124  virtual QCString trSearchResults(int numDocuments)
1125  {
1126  if (numDocuments==0)
1127  {
1128  return "Nema dokumenta koji odgovaraju vašem upitu";
1129  }
1130  else if (numDocuments==1)
1131  {
1132  return "Nađen <b>1</b> dokument koji odgovara vašem upitu.";
1133  }
1134  else if (numDocuments<5)
1135  {
1136  // Croatian (AFAIK all Slavic languages except Macedonian and Bulgarian)
1137  // have different plural form for 2,3,4.
1138  return "Nađena <b>$num</b> dokumenta koji odgovaraju vašem upitu."
1139  "Najbolji su prikazani prvi.";
1140  }
1141  else
1142  {
1143  return "Nađeno <b>$num</b> dokumenata koji odgovaraju vašem upitu."
1144  "Najbolji su prikazani prvi.";
1145  }
1146  }
1147  /*! This string is put before the list of matched words, for each search
1148  * result. What follows is the list of words that matched the query.
1149  */
1150  virtual QCString trSearchMatches()
1151  {
1152  return "Pronađeno:";
1153  }
1154 
1155 //////////////////////////////////////////////////////////////////////////
1156 // new since 1.3.8
1157 //////////////////////////////////////////////////////////////////////////
1158 
1159  /*! This is used in HTML as the title of page with source code for file filename
1160  */
1161  virtual QCString trSourceFile(QCString& filename)
1162  {
1163  return "Izvorni kod datoteke " + filename;
1164  }
1166 //////////////////////////////////////////////////////////////////////////
1167 // new since 1.3.9
1168 //////////////////////////////////////////////////////////////////////////
1169 
1170  /*! This is used as the name of the chapter containing the directory
1171  * hierarchy.
1172  */
1173  virtual QCString trDirIndex()
1174  { return "Stablo direktorija"; }
1175 
1176  /*! This is used as the name of the chapter containing the documentation
1177  * of the directories.
1178  */
1179  virtual QCString trDirDocumentation()
1180  { return "Dokumentacija direktorija"; }
1181 
1182  /*! This is used as the title of the directory index and also in the
1183  * Quick links of a HTML page, to link to the directory hierarchy.
1184  */
1185  virtual QCString trDirectories()
1186  { return "Direktoriji"; }
1187 
1188  /*! This returns a sentences that introduces the directory hierarchy.
1189  * and the fact that it is sorted alphabetically per level
1190  */
1191  virtual QCString trDirDescription()
1192  { return "Stablo direktorija sortirano abecednim redom:"; }
1193 
1194  /*! This returns the title of a directory page. The name of the
1195  * directory is passed via \a dirName.
1196  */
1197  virtual QCString trDirReference(const QCString &dirName)
1198  { QCString result= "Opis direktorija "; result += dirName; return result; }
1199 
1200  /*! This returns the word directory with or without starting capital
1201  * (\a first_capital) and in sigular or plural form (\a singular).
1202  */
1203  virtual QCString trDir(bool first_capital, bool singular)
1204  {
1205  QCString result((first_capital ? "Direktorij" : "direktorij"));
1206  if (!singular) result+="i";
1207  return result;
1208  }
1209 //////////////////////////////////////////////////////////////////////////
1210 // new since 1.4.1
1211 //////////////////////////////////////////////////////////////////////////
1213  /*! This text is added to the documentation when the \\overload command
1214  * is used for a overloaded function.
1215  */
1216  virtual QCString trOverloadText()
1217  {
1218  return "Ovo je preopterećena funkcija (overload). "
1219  "Razlikuje se od navedene metode "
1220  "samo po vrsti argumenata koje prihvaća.";
1221  }
1222 
1223 //////////////////////////////////////////////////////////////////////////
1224 // new since 1.4.6
1225 //////////////////////////////////////////////////////////////////////////
1226 
1227  /*! This is used to introduce a caller (or called-by) graph */
1228  virtual QCString trCallerGraph()
1229  {
1230  return "Ovo je graf funkcija koje pozivaju ovu funkciju:";
1231  }
1232 
1233  /*! This is used in the documentation of a file/namespace before the list
1234  * of documentation blocks for enumeration values
1235  */
1237  { return "Dokumentacija enumeracija"; }
1238 //////////////////////////////////////////////////////////////////////////
1239 // new since 1.5.4 (mainly for Fortran)
1240 //////////////////////////////////////////////////////////////////////////
1241 
1242  /*! header that is put before the list of member subprograms (Fortran). */
1244  { return "Dokumentacija member funkcija/subrutina"; }
1245 
1246  /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1248  { return "Lista tipova podataka"; }
1249 
1250  /*! This is put above each page as a link to all members of compounds (Fortran). */
1252  { return "Polja"; }
1253 
1254  /*! This is an introduction to the annotated compound list (Fortran). */
1256  { return "Tipovi podataka s kratkim opisom:"; }
1257 
1258  /*! This is an introduction to the page with all data types (Fortran). */
1259  virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
1260  {
1261  QCString result="Lista svih ";
1262  if (!extractAll)
1263  {
1264  result+="dokumentiranih ";
1265  }
1266  result+="polja";
1267  result+=" s linkovima na ";
1268  if (!extractAll)
1269  {
1270  result+="dokumentaciju struktura podataka za svako polje";
1271  }
1272  else
1273  {
1274  result+="strukture kojima pripadaju:";
1275  }
1276  return result;
1277  }
1278 
1279  /*! This is used in LaTeX as the title of the chapter with the
1280  * annotated compound index (Fortran).
1281  */
1283  { return "Kazalo data tipova"; }
1284 
1285  /*! This is used in LaTeX as the title of the chapter containing
1286  * the documentation of all data types (Fortran).
1287  */
1288  virtual QCString trTypeDocumentation()
1289  { return "Dokumentacija tipova podataka"; }
1290 
1291  /*! This is used in the documentation of a file as a header before the
1292  * list of (global) subprograms (Fortran).
1293  */
1294  virtual QCString trSubprograms()
1295  { return "Funkcije/Subrutine"; }
1296 
1297  /*! This is used in the documentation of a file/namespace before the list
1298  * of documentation blocks for subprograms (Fortran)
1299  */
1301  { return "Documentacija funkcija/subrutina"; }
1302 
1303  /*! This is used in the documentation of a file/namespace/group before
1304  * the list of links to documented compounds (Fortran)
1305  */
1306  virtual QCString trDataTypes()
1307  { return "Tipovi podataka"; }
1308 
1309  /*! used as the title of page containing all the index of all modules (Fortran). */
1310  virtual QCString trModulesList()
1311  { return "Popis modula"; }
1312 
1313  /*! used as an introduction to the modules list (Fortran) */
1314  virtual QCString trModulesListDescription(bool extractAll)
1315  {
1316  QCString result="Lista svih ";
1317  if (!extractAll) result+="dokumentiranih ";
1318  result+="modula s kratkim opisom:";
1319  return result;
1320  }
1322  /*! used as the title of the HTML page of a module/type (Fortran) */
1323  virtual QCString trCompoundReferenceFortran(const QCString &clName,
1324  ClassDef::CompoundType compType,
1325  bool isTemplate)
1326  {
1327  QCString result=(QCString)clName;
1328  switch(compType)
1329  {
1330  case ClassDef::Class: result+=" Modul"; break;
1331  case ClassDef::Struct: result+=" Tip"; break;
1332  case ClassDef::Union: result+=" Unija"; break;
1333  case ClassDef::Interface: result+=" Sučelje"; break;
1334  case ClassDef::Protocol: result+=" Protokol"; break;
1335  case ClassDef::Category: result+=" Kategorija"; break;
1336  case ClassDef::Exception: result+=" Iznimka"; break;
1337  default: break;
1338  }
1339  if (isTemplate) result+=" Predložak";
1340  result+=" Referenca";
1341  return result;
1342  }
1343  /*! used as the title of the HTML page of a module (Fortran) */
1344  virtual QCString trModuleReference(const QCString &namespaceName)
1345  {
1346  QCString result=namespaceName;
1347  result+=" - Sadržaj modula";
1348  return result;
1349  }
1350 
1351  /*! This is put above each page as a link to all members of modules. (Fortran) */
1352  virtual QCString trModulesMembers()
1353  { return "članovi modula"; }
1354 
1355  /*! This is an introduction to the page with all modules members (Fortran) */
1356  virtual QCString trModulesMemberDescription(bool extractAll)
1357  {
1358  QCString result="Lista svih ";
1359  if (!extractAll) result+="dokumentiranih ";
1360  result+="članova modula s linkovima na ";
1361  if (extractAll)
1362  {
1363  result+="dokumentaciju modula za svaki član:";
1364  }
1365  else
1366  {
1367  result+="modul kojem pripadaju:";
1368  }
1369  return result;
1370  }
1372  /*! This is used in LaTeX as the title of the chapter with the
1373  * index of all modules (Fortran).
1374  */
1375  virtual QCString trModulesIndex()
1376  { return "Kazalo modula"; }
1377 
1378  /*! This is used for translation of the word that will possibly
1379  * be followed by a single name or by a list of names
1380  * of the category.
1381  */
1382  virtual QCString trModule(bool first_capital, bool singular)
1383  {
1384  QCString result((first_capital ? "Modul" : "modul"));
1385  if (!singular) result+="i";
1386  return result;
1387  }
1388  /*! This is put at the bottom of a module documentation page and is
1389  * followed by a list of files that were used to generate the page.
1390  */
1392  bool)
1393  { // here s is one of " Module", " Struct" or " Union"
1394  // single is true implies a single file
1395  QCString result=(QCString)"Dokumentacija ovog ";
1396  switch(compType)
1397  {
1398  case ClassDef::Class: result+="modula"; break;
1399  case ClassDef::Struct: result+="tipa"; break;
1400  case ClassDef::Union: result+="unije"; break;
1401  case ClassDef::Interface: result+="sučelja"; break;
1402  case ClassDef::Protocol: result+="protokola"; break;
1403  case ClassDef::Category: result+="kategorije"; break;
1404  case ClassDef::Exception: result+="iznimke"; break;
1405  default: break;
1406  }
1407  result+=" je napravljena iz :";
1408  return result;
1409  }
1410  /*! This is used for translation of the word that will possibly
1411  * be followed by a single name or by a list of names
1412  * of the category.
1413  */
1414  virtual QCString trType(bool first_capital, bool singular)
1415  {
1416  QCString result((first_capital ? "Tip" : "tip"));
1417  if (!singular) result+="ovi";
1418  return result;
1419  }
1420  /*! This is used for translation of the word that will possibly
1421  * be followed by a single name or by a list of names
1422  * of the category.
1423  */
1424  virtual QCString trSubprogram(bool first_capital, bool singular)
1425  {
1426  QCString result((first_capital ? "Subprogram" : "subprogram"));
1427  if (!singular) result+="i";
1428  return result;
1429  }
1430 
1431  /*! C# Type Constraint list */
1432  virtual QCString trTypeConstraints()
1433  {
1434  return "Ograničenja tipova (Type Constraints)";
1435  }
1436  //////////////////////////////////////////////////////////////////////////
1437  // new since 1.6.0 (mainly for the new search engine)
1438  //////////////////////////////////////////////////////////////////////////
1440  /*! directory relation for \a name */
1441  virtual QCString trDirRelation(const QCString &name)
1442  {
1443  return QCString("Relacije ") + QCString(name);
1444  }
1445 
1446  /*! Loading message shown when loading search results */
1448  {
1449  return "Učitavam...";
1450  }
1451 
1452  /*! Label used for search results in the global namespace */
1453  virtual QCString trGlobalNamespace()
1454  {
1455  return "Globalni namespace";
1456  }
1457 
1458  /*! Message shown while searching */
1459  virtual QCString trSearching()
1460  {
1461  return "Tražim...";
1462  }
1463 
1464  /*! Text shown when no search results are found */
1465  virtual QCString trNoMatches()
1466  {
1467  return "Nema traženih podataka";
1468  }
1469 
1470 //////////////////////////////////////////////////////////////////////////
1471 // new since 1.6.3 (missing items for the directory pages)
1472 //////////////////////////////////////////////////////////////////////////
1473 
1474  /*! when clicking a directory dependency label, a page with a
1475  * table is shown. The heading for the first column mentions the
1476  * source file that has a relation to another file.
1477  */
1478  virtual QCString trFileIn(const QCString &name)
1479  {
1480  return (QCString)"Datoteka u "+name;
1481  }
1482 
1483  /*! when clicking a directory dependency label, a page with a
1484  * table is shown. The heading for the second column mentions the
1485  * destination file that is included.
1486  */
1487  virtual QCString trIncludesFileIn(const QCString &name)
1488  {
1489  return (QCString)"Uključuje datotake u "+name;
1490  }
1491 
1492  /** Compiles a date string.
1493  * @param year Year in 4 digits
1494  * @param month Month of the year: 1=January
1495  * @param day Day of the Month: 1..31
1496  * @param dayOfWeek Day of the week: 1=Monday..7=Sunday
1497  * @param hour Hour of the day: 0..23
1498  * @param minutes Minutes in the hour: 0..59
1499  * @param seconds Seconds within the minute: 0..59
1500  * @param includeTime Include time in the result string?
1501  */
1502  virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
1503  int hour,int minutes,int seconds,
1504  bool includeTime)
1505  {
1506  static const char *days[] = { "Pon","Uto","Sri","Čet","Pet","Sub","Ned" };
1507  static const char *months[] = { "Sje","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro" };
1508  QCString sdate;
1509  sdate.sprintf("%s %s %d %d",days[dayOfWeek-1],months[month-1],day,year);
1510  if (includeTime)
1511  {
1512  QCString stime;
1513  stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds);
1514  sdate+=stime;
1515  }
1516  return sdate;
1517  }
1518 //////////////////////////////////////////////////////////////////////////
1519 // new since 1.7.5
1520 //////////////////////////////////////////////////////////////////////////
1521 
1522  /*! Header for the page with bibliographic citations */
1523  virtual QCString trCiteReferences()
1524  { return "Bibliografija"; }
1525 
1526  /*! Text for copyright paragraph */
1527  virtual QCString trCopyright()
1528  { return "Copyright"; }
1529 
1530  /*! Header for the graph showing the directory dependencies */
1531  virtual QCString trDirDepGraph(const QCString &name)
1532  { return QCString("Direktoriji o kojima ovisi ")+name+":"; }
1533 
1534 //////////////////////////////////////////////////////////////////////////
1535 // new since 1.8.0
1536 //////////////////////////////////////////////////////////////////////////
1537 
1538  /*! Detail level selector shown for hierarchical indices */
1539  virtual QCString trDetailLevel()
1540  { return "razina detalja"; }
1541 
1542  /*! Section header for list of template parameters */
1543  virtual QCString trTemplateParameters()
1544  { return "Parametri predloška"; }
1545 
1546  /*! Used in dot graph when UML_LOOK is enabled and there are many fields */
1547  virtual QCString trAndMore(const QCString &number)
1548  { return "i još "+number+" ..."; }
1549 
1550  /*! Used file list for a Java enum */
1551  virtual QCString trEnumGeneratedFromFiles(bool single)
1552  { QCString result = "Dokumatacija za ovu enumeraciju je generirana iz ";
1553  if (!single) result += "datoteka:";
1554  else result += "datoteke:";
1555  return result;
1556  }
1557 
1558  /*! Header of a Java enum page (Java enums are represented as classes). */
1559  virtual QCString trEnumReference(const QCString &name)
1560  { return "Opis enumeracije " + QCString(name); }
1561 
1562  /*! Used for a section containing inherited members */
1563  virtual QCString trInheritedFrom(const QCString &members,const QCString &what)
1564  { return QCString(members)+" naslijeđeni od "+what; }
1565 
1566  /*! Header of the sections with inherited members specific for the
1567  * base class(es)
1568  */
1570  { return "Dodatni naslijeđeni članovi"; }
1571 
1572 };
1573 
1574 #endif
1575 
1576 
TranslatorCroatian::trInvariant
QCString trInvariant()
Definition: translator_hr.h:612
TranslatorCroatian::trThisIsTheListOfAllMembers
QCString trThisIsTheListOfAllMembers()
Definition: translator_hr.h:132
TranslatorCroatian::trPageAbbreviation
QCString trPageAbbreviation()
Definition: translator_hr.h:547
TranslatorCroatian::trVariables
QCString trVariables()
Definition: translator_hr.h:287
TranslatorCroatian::trPostcondition
QCString trPostcondition()
Definition: translator_hr.h:607
getDotImageExtension
QCString getDotImageExtension()
Definition: util.cpp:7032
TranslatorCroatian::trSignals
QCString trSignals()
Definition: translator_hr.h:401
TranslatorCroatian::trSubprogramDocumentation
virtual QCString trSubprogramDocumentation()
Definition: translator_hr.h:1315
TranslatorCroatian::trStaticProtectedAttribs
QCString trStaticProtectedAttribs()
Definition: translator_hr.h:671
TranslatorCroatian::trPublicSlots
QCString trPublicSlots()
Definition: translator_hr.h:399
TranslatorCroatian::trProtectedAttribs
QCString trProtectedAttribs()
Definition: translator_hr.h:667
TranslatorCroatian::trReimplementedInList
QCString trReimplementedInList(int numEntries)
Definition: translator_hr.h:461
TranslatorCroatian::trClass
virtual QCString trClass(bool first_capital, bool singular)
Definition: translator_hr.h:905
TranslatorCroatian::trPackageMembers
virtual QCString trPackageMembers()
Definition: translator_hr.h:1078
TranslatorCroatian::trEventDocumentation
virtual QCString trEventDocumentation()
Definition: translator_hr.h:1061
TranslatorCroatian::trConstructorDocumentation
QCString trConstructorDocumentation()
Definition: translator_hr.h:587
TranslatorCroatian::trNamespace
virtual QCString trNamespace(bool first_capital, bool singular)
Definition: translator_hr.h:927
TranslatorCroatian::trGeneratedFromFilesFortran
virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool)
Definition: translator_hr.h:1406
TranslatorCroatian::trPrivateSlots
QCString trPrivateSlots()
Definition: translator_hr.h:413
TranslatorCroatian::trPageDocumentation
QCString trPageDocumentation()
Definition: translator_hr.h:274
ClassDef::Union
@ Union
Definition: classdef.h:109
TranslatorCroatian::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_hr.h:891
TranslatorCroatian::trPackages
virtual QCString trPackages()
Definition: translator_hr.h:857
TranslatorCroatian::trAndMore
virtual QCString trAndMore(const QCString &number)
Definition: translator_hr.h:1562
TranslatorCroatian::trModulesMemberDescription
virtual QCString trModulesMemberDescription(bool extractAll)
Definition: translator_hr.h:1371
TranslatorCroatian::trRTFGeneralIndex
virtual QCString trRTFGeneralIndex()
Definition: translator_hr.h:896
TranslatorCroatian::trStaticPublicAttribs
QCString trStaticPublicAttribs()
Definition: translator_hr.h:659
TranslatorCroatian::trStaticPublicMembers
QCString trStaticPublicMembers()
Definition: translator_hr.h:403
TranslatorCroatian::trParameters
QCString trParameters()
Definition: translator_hr.h:326
TranslatorCroatian::trEnumerations
QCString trEnumerations()
Definition: translator_hr.h:283
TranslatorCroatian::trCompoundList
QCString trCompoundList()
Definition: translator_hr.h:152
TranslatorCroatian::trReimplementedFromList
QCString trReimplementedFromList(int numEntries)
Definition: translator_hr.h:455
TranslatorCroatian::trCompoundMembersDescription
QCString trCompoundMembersDescription(bool extractAll)
Definition: translator_hr.h:195
TranslatorCroatian::trDefineValue
virtual QCString trDefineValue()
Definition: translator_hr.h:862
TranslatorCroatian::trGotoGraphicalHierarchy
QCString trGotoGraphicalHierarchy()
Definition: translator_hr.h:630
TranslatorCroatian::trTemplateParameters
virtual QCString trTemplateParameters()
Definition: translator_hr.h:1558
TranslatorCroatian::trGeneratedBy
QCString trGeneratedBy()
Definition: translator_hr.h:330
TranslatorCroatian::trCiteReferences
virtual QCString trCiteReferences()
Definition: translator_hr.h:1538
TranslatorCroatian::trClasses
virtual QCString trClasses()
Definition: translator_hr.h:837
TranslatorCroatian::trImplementedFromList
virtual QCString trImplementedFromList(int numEntries)
Definition: translator_hr.h:1015
TranslatorCroatian::trLegendTitle
virtual QCString trLegendTitle()
Definition: translator_hr.h:733
TranslatorCroatian::trDefinedAtLineInSourceFile
QCString trDefinedAtLineInSourceFile()
Definition: translator_hr.h:554
TranslatorCroatian::trCompoundListDescriptionFortran
virtual QCString trCompoundListDescriptionFortran()
Definition: translator_hr.h:1270
TranslatorCroatian::trPackageTypes
virtual QCString trPackageTypes()
Definition: translator_hr.h:1071
TranslatorCroatian::trMemberEnumerationDocumentation
QCString trMemberEnumerationDocumentation()
Definition: translator_hr.h:120
TranslatorCroatian::trFileMembersDescription
QCString trFileMembersDescription(bool extractAll)
Definition: translator_hr.h:219
TranslatorCroatian::trStaticPrivateAttribs
QCString trStaticPrivateAttribs()
Definition: translator_hr.h:683
generateMarker
QCString generateMarker(int id)
Definition: util.cpp:284
QCString::isEmpty
bool isEmpty() const
Returns TRUE iff the string is empty
Definition: qcstring.h:144
TranslatorCroatian::trVariableDocumentation
QCString trVariableDocumentation()
Definition: translator_hr.h:299
TranslatorCroatian::trLoading
virtual QCString trLoading()
Definition: translator_hr.h:1462
ClassDef::CompoundType
CompoundType
The various compound types
Definition: classdef.h:107
TranslatorCroatian::trFileReference
QCString trFileReference(const QCString &fileName)
Definition: translator_hr.h:380
TranslatorCroatian::trClassHierarchyDescription
QCString trClassHierarchyDescription()
Definition: translator_hr.h:180
TranslatorCroatian::trTestList
virtual QCString trTestList()
Definition: translator_hr.h:812
TranslatorCroatian::trPage
virtual QCString trPage(bool first_capital, bool singular)
Definition: translator_hr.h:952
TranslatorCroatian::trSearch
QCString trSearch()
Definition: translator_hr.h:178
ClassDef::Interface
@ Interface
Definition: classdef.h:110
TranslatorCroatian::trPrivateMembers
QCString trPrivateMembers()
Definition: translator_hr.h:411
TranslatorCroatian::trStaticPackageMembers
virtual QCString trStaticPackageMembers()
Definition: translator_hr.h:1085
TranslatorCroatian::trPrivateTypes
QCString trPrivateTypes()
Definition: translator_hr.h:675
TranslatorCroatian::trTypeDocumentation
virtual QCString trTypeDocumentation()
Definition: translator_hr.h:1303
TranslatorCroatian::trNamespaceMembers
QCString trNamespaceMembers()
Definition: translator_hr.h:468
TranslatorCroatian::trEnumerationTypeDocumentation
QCString trEnumerationTypeDocumentation()
Definition: translator_hr.h:295
TranslatorCroatian::trTest
virtual QCString trTest()
Definition: translator_hr.h:807
TranslatorCroatian::trEnumReference
virtual QCString trEnumReference(const QCString &name)
Definition: translator_hr.h:1574
TranslatorCroatian::trStaticPrivateMembers
QCString trStaticPrivateMembers()
Definition: translator_hr.h:415
TranslatorCroatian::trFile
virtual QCString trFile(bool first_capital, bool singular)
Definition: translator_hr.h:916
TranslatorCroatian::trCompoundIndexFortran
virtual QCString trCompoundIndexFortran()
Definition: translator_hr.h:1297
TranslatorCroatian::trNamespaceList
QCString trNamespaceList()
Definition: translator_hr.h:337
TranslatorCroatian::trCallerGraph
virtual QCString trCallerGraph()
Definition: translator_hr.h:1243
TranslatorCroatian::trImplementedInList
virtual QCString trImplementedInList(int numEntries)
Definition: translator_hr.h:1023
TranslatorCroatian::trModuleDocumentation
QCString trModuleDocumentation()
Definition: translator_hr.h:257
TranslatorCroatian::trVersion
QCString trVersion()
Definition: translator_hr.h:318
TranslatorCroatian::trCopyright
virtual QCString trCopyright()
Definition: translator_hr.h:1542
TranslatorCroatian::trTypeConstraints
virtual QCString trTypeConstraints()
Definition: translator_hr.h:1447
TranslatorCroatian::trDetailedDescription
QCString trDetailedDescription()
Definition: translator_hr.h:116
TranslatorCroatian::trISOLang
QCString trISOLang()
Definition: translator_hr.h:110
TranslatorCroatian::trExamplesDescription
QCString trExamplesDescription()
Definition: translator_hr.h:231
TranslatorCroatian::trRelatedFunctionDocumentation
QCString trRelatedFunctionDocumentation()
Definition: translator_hr.h:353
TranslatorCroatian::trStaticProtectedMembers
QCString trStaticProtectedMembers()
Definition: translator_hr.h:409
ClassDef::Class
@ Class
Definition: classdef.h:107
TranslatorCroatian::trReturns
QCString trReturns()
Definition: translator_hr.h:322
TranslatorCroatian::trRemarks
virtual QCString trRemarks()
Definition: translator_hr.h:710
TranslatorCroatian::trGroup
virtual QCString trGroup(bool first_capital, bool singular)
Definition: translator_hr.h:941
TranslatorCroatian::trSince
virtual QCString trSince()
Definition: translator_hr.h:723
TranslatorCroatian::trMemberTypedefDocumentation
QCString trMemberTypedefDocumentation()
Definition: translator_hr.h:118
TranslatorCroatian::trExampleDocumentation
QCString trExampleDocumentation()
Definition: translator_hr.h:272
TranslatorCroatian::trProtectedMembers
QCString trProtectedMembers()
Definition: translator_hr.h:405
TranslatorCroatian::latexLanguageSupportCommand
QCString latexLanguageSupportCommand()
Definition: translator_hr.h:108
TranslatorCroatian::trTodo
virtual QCString trTodo()
Definition: translator_hr.h:692
TranslatorCroatian::trSearching
virtual QCString trSearching()
Definition: translator_hr.h:1474
TranslatorCroatian::trDateTime
virtual QCString trDateTime(int year, int month, int day, int dayOfWeek, int hour, int minutes, int seconds, bool includeTime)
Compiles a date string.
Definition: translator_hr.h:1517
TranslatorCroatian::trDirIndex
virtual QCString trDirIndex()
Definition: translator_hr.h:1188
TranslatorCroatian::trTypedefDocumentation
QCString trTypedefDocumentation()
Definition: translator_hr.h:293
TranslatorCroatian::idLanguage
QCString idLanguage()
Definition: translator_hr.h:106
TranslatorCroatian::trListOfAllMembers
QCString trListOfAllMembers()
Definition: translator_hr.h:128
TranslatorCroatian::trSubprograms
virtual QCString trSubprograms()
Definition: translator_hr.h:1309
TranslatorCroatian::trModuleIndex
QCString trModuleIndex()
Definition: translator_hr.h:240
TranslatorCroatian::trMemberFunctionDocumentation
QCString trMemberFunctionDocumentation()
Definition: translator_hr.h:122
TranslatorCroatian::trNamespaceIndex
QCString trNamespaceIndex()
Definition: translator_hr.h:483
TranslatorCroatian::trGeneratedFromFiles
QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
Definition: translator_hr.h:511
TranslatorAdapter_1_8_2
Definition: translator_adapter.h:234
TranslatorCroatian::trDefineDocumentation
QCString trDefineDocumentation()
Definition: translator_hr.h:291
TranslatorCroatian::trSearchResults
virtual QCString trSearchResults(int numDocuments)
Definition: translator_hr.h:1139
TranslatorCroatian::trAttention
virtual QCString trAttention()
Definition: translator_hr.h:714
TranslatorCroatian::trWarning
QCString trWarning()
Definition: translator_hr.h:316
TranslatorCroatian::trPrecondition
QCString trPrecondition()
Definition: translator_hr.h:602
TranslatorCroatian::trAll
virtual QCString trAll()
Definition: translator_hr.h:1110
TranslatorCroatian::trMember
virtual QCString trMember(bool, bool singular)
Definition: translator_hr.h:963
TranslatorCroatian::trInheritedByList
QCString trInheritedByList(int numEntries)
Definition: translator_hr.h:449
TranslatorCroatian::trPublicMembers
QCString trPublicMembers()
Definition: translator_hr.h:397
TranslatorCroatian::trNamespaceReference
QCString trNamespaceReference(const QCString &namespaceName)
Definition: translator_hr.h:387
TranslatorCroatian::trModulesDescription
QCString trModulesDescription()
Definition: translator_hr.h:235
TranslatorCroatian::trNoMatches
virtual QCString trNoMatches()
Definition: translator_hr.h:1480
TranslatorCroatian::trMemberFunctionDocumentationFortran
virtual QCString trMemberFunctionDocumentationFortran()
Definition: translator_hr.h:1258
TranslatorCroatian::trModuleReference
virtual QCString trModuleReference(const QCString &namespaceName)
Definition: translator_hr.h:1359
TranslatorCroatian::trDetailLevel
virtual QCString trDetailLevel()
Definition: translator_hr.h:1554
TranslatorCroatian::trReferenceManual
QCString trReferenceManual()
Definition: translator_hr.h:276
TranslatorCroatian::trDeprecated
QCString trDeprecated()
Definition: translator_hr.h:567
TranslatorCroatian::trPublicAttribs
QCString trPublicAttribs()
Definition: translator_hr.h:655
TranslatorCroatian::trNamespaces
QCString trNamespaces()
Definition: translator_hr.h:499
TranslatorCroatian::trFileIndex
QCString trFileIndex()
Definition: translator_hr.h:255
TranslatorCroatian::trProperties
virtual QCString trProperties()
Definition: translator_hr.h:822
TranslatorCroatian::trCompoundListFortran
virtual QCString trCompoundListFortran()
Definition: translator_hr.h:1262
TranslatorCroatian::trNamespaceListDescription
QCString trNamespaceListDescription(bool extractAll)
Definition: translator_hr.h:339
TranslatorCroatian::trCompoundIndex
QCString trCompoundIndex()
Definition: translator_hr.h:244
TranslatorCroatian
Definition: translator_hr.h:86
TranslatorCroatian::trPackage
virtual QCString trPackage(const QCString &name)
Definition: translator_hr.h:842
TranslatorCroatian::trCompoundMembersDescriptionFortran
virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
Definition: translator_hr.h:1274
TranslatorCroatian::trSubprogram
virtual QCString trSubprogram(bool first_capital, bool singular)
Definition: translator_hr.h:1439
TranslatorCroatian::trProtectedSlots
QCString trProtectedSlots()
Definition: translator_hr.h:407
TranslatorCroatian::trModules
QCString trModules()
Definition: translator_hr.h:148
TranslatorCroatian::trReferences
virtual QCString trReferences()
Definition: translator_hr.h:1004
TranslatorCroatian::trFunctionDocumentation
QCString trFunctionDocumentation()
Definition: translator_hr.h:297
ClassDef::Category
@ Category
Definition: classdef.h:112
TranslatorCroatian::trGeneratedAt
QCString trGeneratedAt(const QCString &date, const QCString &projName)
Definition: translator_hr.h:303
TranslatorCroatian::trSearchMatches
virtual QCString trSearchMatches()
Definition: translator_hr.h:1165
ClassDef::Struct
@ Struct
Definition: classdef.h:108
TranslatorCroatian::trClassHierarchy
QCString trClassHierarchy()
Definition: translator_hr.h:150
TranslatorCroatian::trBugList
virtual QCString trBugList()
Definition: translator_hr.h:877
TranslatorCroatian::trIncludingInheritedMembers
QCString trIncludingInheritedMembers()
Definition: translator_hr.h:134
TranslatorCroatian::trSearchResultsTitle
virtual QCString trSearchResultsTitle()
Definition: translator_hr.h:1127
TranslatorCroatian::trEnumName
QCString trEnumName()
Definition: translator_hr.h:142
TranslatorCroatian::trPackageListDescription
virtual QCString trPackageListDescription()
Definition: translator_hr.h:852
TranslatorCroatian::trDefinedInSourceFile
QCString trDefinedInSourceFile()
Definition: translator_hr.h:558
TranslatorCroatian::trRTFTableOfContents
virtual QCString trRTFTableOfContents()
Definition: translator_hr.h:1034
TranslatorCroatian::trModulesMembers
virtual QCString trModulesMembers()
Definition: translator_hr.h:1367
TranslatorCroatian::trInclByDepGraph
virtual QCString trInclByDepGraph()
Definition: translator_hr.h:718
TranslatorCroatian::trDocumentation
QCString trDocumentation()
Definition: translator_hr.h:238
TranslatorCroatian::trNamespaceMemberDescription
QCString trNamespaceMemberDescription(bool extractAll)
Definition: translator_hr.h:471
TranslatorCroatian::trCompounds
QCString trCompounds()
Definition: translator_hr.h:301
TranslatorCroatian::trIncludesFileIn
virtual QCString trIncludesFileIn(const QCString &name)
Definition: translator_hr.h:1502
TranslatorCroatian::trExamples
QCString trExamples()
Definition: translator_hr.h:176
TranslatorCroatian::trClassDocumentation
QCString trClassDocumentation()
Definition: translator_hr.h:259
TranslatorCroatian::trDate
QCString trDate()
Definition: translator_hr.h:320
TranslatorCroatian::trEnumGeneratedFromFiles
virtual QCString trEnumGeneratedFromFiles(bool single)
Definition: translator_hr.h:1566
TranslatorCroatian::trEvents
virtual QCString trEvents()
Definition: translator_hr.h:1056
TranslatorCroatian::trRelatedPages
QCString trRelatedPages()
Definition: translator_hr.h:174
TranslatorCroatian::trMore
QCString trMore()
Definition: translator_hr.h:126
TranslatorCroatian::trCompoundListDescription
QCString trCompoundListDescription()
Definition: translator_hr.h:191
TranslatorCroatian::trPageIndex
QCString trPageIndex()
Definition: translator_hr.h:638
TranslatorCroatian::trFileMembers
QCString trFileMembers()
Definition: translator_hr.h:172
TranslatorCroatian::trFileListDescription
QCString trFileListDescription(bool extractAll)
Definition: translator_hr.h:184
TranslatorCroatian::trRelatedSubscript
QCString trRelatedSubscript()
Definition: translator_hr.h:114
TranslatorCroatian::trCompoundReference
QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool)
Definition: translator_hr.h:360
TranslatorCroatian::trInitialValue
QCString trInitialValue()
Definition: translator_hr.h:617
TranslatorCroatian::trSeeAlso
QCString trSeeAlso()
Definition: translator_hr.h:324
TranslatorCroatian::trFunctions
QCString trFunctions()
Definition: translator_hr.h:285
TranslatorCroatian::trCode
QCString trCode()
Definition: translator_hr.h:622
Config_getBool
#define Config_getBool(name)
Definition: config.h:33
ClassDef::Protocol
@ Protocol
Definition: classdef.h:111
TranslatorCroatian::trDeprecatedList
virtual QCString trDeprecatedList()
Definition: translator_hr.h:1045
TranslatorCroatian::trDirReference
virtual QCString trDirReference(const QCString &dirName)
Definition: translator_hr.h:1212
TranslatorCroatian::trModule
virtual QCString trModule(bool first_capital, bool singular)
Definition: translator_hr.h:1397
TranslatorCroatian::trStaticPackageAttribs
virtual QCString trStaticPackageAttribs()
Definition: translator_hr.h:1099
TranslatorCroatian::trLegendDocs
virtual QCString trLegendDocs()
Definition: translator_hr.h:738
TranslatorCroatian::trNote
QCString trNote()
Definition: translator_hr.h:647
TranslatorCroatian::trTypedefs
QCString trTypedefs()
Definition: translator_hr.h:281
TranslatorCroatian::trInheritedFrom
virtual QCString trInheritedFrom(const QCString &members, const QCString &what)
Definition: translator_hr.h:1578
TranslatorCroatian::trInheritsList
QCString trInheritsList(int numEntries)
Definition: translator_hr.h:443
TranslatorCroatian::trExceptions
QCString trExceptions()
Definition: translator_hr.h:328
TranslatorCroatian::trOverloadText
virtual QCString trOverloadText()
Definition: translator_hr.h:1231
TranslatorCroatian::trGotoDocumentation
QCString trGotoDocumentation()
Definition: translator_hr.h:597
TranslatorCroatian::trFileList
QCString trFileList()
Definition: translator_hr.h:163
TranslatorCroatian::trEnumValue
QCString trEnumValue()
Definition: translator_hr.h:144
TranslatorCroatian::trPropertyDocumentation
virtual QCString trPropertyDocumentation()
Definition: translator_hr.h:827
TranslatorCroatian::trModulesListDescription
virtual QCString trModulesListDescription(bool extractAll)
Definition: translator_hr.h:1329
TranslatorCroatian::trDirDocumentation
virtual QCString trDirDocumentation()
Definition: translator_hr.h:1194
TranslatorCroatian::trDirRelation
virtual QCString trDirRelation(const QCString &name)
Definition: translator_hr.h:1456
TranslatorCroatian::trDefinedIn
QCString trDefinedIn()
Definition: translator_hr.h:146
TranslatorCroatian::trCollaborationDiagram
QCString trCollaborationDiagram(const QCString &clName)
Definition: translator_hr.h:577
TranslatorCroatian::trCompoundMembersFortran
virtual QCString trCompoundMembersFortran()
Definition: translator_hr.h:1266
TranslatorCroatian::trCompoundMembers
QCString trCompoundMembers()
Definition: translator_hr.h:165
TranslatorCroatian::trEnumerationValueDocumentation
virtual QCString trEnumerationValueDocumentation()
Definition: translator_hr.h:1251
TranslatorCroatian::trPackageAttribs
virtual QCString trPackageAttribs()
Definition: translator_hr.h:1092
TranslatorCroatian::trDir
virtual QCString trDir(bool first_capital, bool singular)
Definition: translator_hr.h:1218
TranslatorCroatian::trGraphicalHierarchy
QCString trGraphicalHierarchy()
Definition: translator_hr.h:626
TranslatorCroatian::trMemberDataDocumentation
QCString trMemberDataDocumentation()
Definition: translator_hr.h:124
TranslatorCroatian::trCallGraph
virtual QCString trCallGraph()
Definition: translator_hr.h:1115
TranslatorCroatian::trNamespaceDocumentation
QCString trNamespaceDocumentation()
Definition: translator_hr.h:487
TranslatorCroatian::trAdditionalInheritedMembers
virtual QCString trAdditionalInheritedMembers()
Definition: translator_hr.h:1584
TranslatorCroatian::trGlobalNamespace
virtual QCString trGlobalNamespace()
Definition: translator_hr.h:1468
TranslatorCroatian::trRelatedPagesDescription
QCString trRelatedPagesDescription()
Definition: translator_hr.h:233
TranslatorCroatian::trModulesList
virtual QCString trModulesList()
Definition: translator_hr.h:1325
TranslatorCroatian::trCompoundReferenceFortran
virtual QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_hr.h:1338
TranslatorCroatian::trLegend
virtual QCString trLegend()
Definition: translator_hr.h:798
TranslatorCroatian::trClassDiagram
QCString trClassDiagram(const QCString &clName)
Definition: translator_hr.h:310
TranslatorCroatian::trHierarchicalIndex
QCString trHierarchicalIndex()
Definition: translator_hr.h:242
TranslatorCroatian::trMainPage
QCString trMainPage()
Definition: translator_hr.h:541
TranslatorCroatian::trBug
virtual QCString trBug()
Definition: translator_hr.h:872
TranslatorCroatian::trDirDepGraph
virtual QCString trDirDepGraph(const QCString &name)
Definition: translator_hr.h:1546
TranslatorCroatian::trForInternalUseOnly
QCString trForInternalUseOnly()
Definition: translator_hr.h:314
TranslatorCroatian::trSourceFile
virtual QCString trSourceFile(QCString &filename)
Definition: translator_hr.h:1176
TranslatorCroatian::trDirDescription
virtual QCString trDirDescription()
Definition: translator_hr.h:1206
TranslatorCroatian::trModulesIndex
virtual QCString trModulesIndex()
Definition: translator_hr.h:1390
TranslatorCroatian::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_hr.h:886
TranslatorCroatian::trWriteList
QCString trWriteList(int numEntries)
Definition: translator_hr.h:419
TranslatorCroatian::trReturnValues
QCString trReturnValues()
Definition: translator_hr.h:536
TranslatorCroatian::trDefines
QCString trDefines()
Definition: translator_hr.h:279
ClassDef::Exception
@ Exception
Definition: classdef.h:113
TranslatorCroatian::trPublicTypes
QCString trPublicTypes()
Definition: translator_hr.h:651
TranslatorCroatian::trType
virtual QCString trType(bool first_capital, bool singular)
Definition: translator_hr.h:1429
TranslatorCroatian::trDataTypes
virtual QCString trDataTypes()
Definition: translator_hr.h:1321
TranslatorCroatian::trGlobal
virtual QCString trGlobal(bool first_capital, bool singular)
Definition: translator_hr.h:974
TranslatorCroatian::trFileIn
virtual QCString trFileIn(const QCString &name)
Definition: translator_hr.h:1493
TranslatorCroatian::trGotoTextualHierarchy
QCString trGotoTextualHierarchy()
Definition: translator_hr.h:634
TranslatorCroatian::trTodoList
virtual QCString trTodoList()
Definition: translator_hr.h:697
TranslatorCroatian::trFileDocumentation
QCString trFileDocumentation()
Definition: translator_hr.h:270
TranslatorCroatian::trPrivateAttribs
QCString trPrivateAttribs()
Definition: translator_hr.h:679
TranslatorCroatian::trPackageList
virtual QCString trPackageList()
Definition: translator_hr.h:847
TranslatorCroatian::trFriends
QCString trFriends()
Definition: translator_hr.h:346
TranslatorCroatian::trAuthor
virtual QCString trAuthor(bool first_capital, bool singular)
Definition: translator_hr.h:991
TranslatorCroatian::trGotoSourceCode
QCString trGotoSourceCode()
Definition: translator_hr.h:592
QCString::sprintf
QCString & sprintf(const char *format,...)
Definition: qcstring.cpp:24
TranslatorCroatian::trProtectedTypes
QCString trProtectedTypes()
Definition: translator_hr.h:663
TranslatorCroatian::trReferencedBy
virtual QCString trReferencedBy()
Definition: translator_hr.h:706
TranslatorCroatian::trEnumerationValues
QCString trEnumerationValues()
Definition: translator_hr.h:289
TranslatorCroatian::trDirectories
virtual QCString trDirectories()
Definition: translator_hr.h:1200
TranslatorCroatian::trGeneratedAutomatically
QCString trGeneratedAutomatically(const QCString &s)
Definition: translator_hr.h:136
FALSE
#define FALSE
Definition: qcstring.h:33
TranslatorCroatian::trInclDepGraph
QCString trInclDepGraph(const QCString &fName)
Definition: translator_hr.h:582
TranslatorCroatian::trRelatedFunctions
QCString trRelatedFunctions()
Definition: translator_hr.h:112
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108
TranslatorCroatian::trMemberList
QCString trMemberList()
Definition: translator_hr.h:130