translator_lt.h
Go to the documentation of this file.
1 /******************************************************************************
2  *
3  * Copyright (C) 1997-2015 by Dimitri van Heesch.
4  *
5  * Permission to use, copy, modify, and distribute this software and its
6  * documentation under the terms of the GNU General Public License is hereby
7  * granted. No representations are made about the suitability of this software
8  * for any purpose. It is provided "as is" without express or implied warranty.
9  * See the GNU General Public License for more details.
10  *
11  * Documents produced by Doxygen are derivative works derived from the
12  * input used in their production; they are not affected by this license.
13  *
14  */
15 
16 /* Translation from English to Lithanian by Tomas Simonaitis, Mindaugas Radzius and Aidas Berukstis
17  * (haden@homelan.lt/mindaugasradzius@takas.lt/aidasber@takas.lt)
18  * We tried to keep meaning close to original,
19  * if you have any suggestions drop us an email
20  * -------------------------------------------
21  * Project start :13.May.2k4
22  * Last Doxygen version covered : 1.4.3
23  *
24  * Revisions:
25  * Updated to 1.3.9 25.Oct.2k4
26  *
27 */
28 
29 #ifndef TRANSLATOR_LT_H
30 #define TRANSLATOR_LT_H
31 
32 
34 {
35  public:
36 
37  // --- Language control methods -------------------
38 
39  /*! Used for identification of the language. The identification
40  * should not be translated. It should be replaced by the name
41  * of the language in English using lower-case characters only
42  * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
43  * the identification used in language.cpp.
44  */
45  virtual QCString idLanguage()
46  { return "lithuanian"; }
47 
48  /*! Used to get the LaTeX command(s) for the language support.
49  * This method should return string with commands that switch
50  * LaTeX to the desired language. For example
51  * <pre>"\\usepackage[german]{babel}\n"
52  * </pre>
53  * or
54  * <pre>"\\usepackage{polski}\n"
55  * "\\usepackage[latin2]{inputenc}\n"
56  * "\\usepackage[T1]{fontenc}\n"
57  * </pre>
58  *
59  * The English LaTeX does not use such commands. Because of this
60  * the empty string is returned in this implementation.
61  */
63  {
64  return "\\usepackage[T2A]{fontenc}\n"
65  "\\usepackage[lithuanian]{babel}\n";
66  }
67 
68  // --- Language translation methods -------------------
69 
70  /*! used in the compound documentation before a list of related functions. */
72  { return "Susiję Funkcijos"; }
73 
74  /*! subscript for the related functions. */
76  { return "Atkreipkite dėmesį, čią ne metodai"; }
77 
78  /*! header that is put before the detailed description of files, classes and namespaces. */
80  { return "Smulkus aprašymas"; }
81 
82  /*! header that is put before the list of typedefs. */
84  { return "Tipo Aprašymo Dokumentacija"; }
85 
86  /*! header that is put before the list of enumerations. */
88  { return "Išvardinimo Dokumentacija"; }
89 
90  /*! header that is put before the list of member functions. */
92  { return "Metodų Dokumentacija"; }
93 
94  /*! header that is put before the list of member attributes. */
96  {
97  if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
98  {
99  return "Lauko aprašymas";
100  }
101  else
102  {
103  return "Atributų Dokumentacija";
104  }
105  }
106 
107  /*! this is the text of a link put after brief descriptions. */
108  virtual QCString trMore()
109  { return "Daugiau..."; }
110 
111  /*! put in the class documentation */
113  { return "Visų narių sąrašas"; }
114 
115  /*! used as the title of the "list of all members" page of a class */
117  { return "Narių sąrašas"; }
118 
119  /*! this is the first part of a sentence that is followed by a class name */
121  { return "Tai galutinis narių sąrašas "; }
122 
123  /*! this is the remainder of the sentence after the class name */
125  { return ", įtraukiant visus paveldėtus narius."; }
126 
127  /*! this is put at the author sections at the bottom of man pages.
128  * parameter s is name of the project name.
129  */
130  virtual QCString trGeneratedAutomatically(const char *s)
131  { QCString result="Automatiškai sugeneruota Doxygen įrankiu";
132  if (s) result+=(QCString)" "+s;
133  result+=" iš programos kodo.";
134  return result;
135  }
136 
137  /*! put after an enum name in the list of all members */
139  { return "išvardinimo vardas"; }
140 
141  /*! put after an enum value in the list of all members */
143  { return "išvardinimo reikšmė"; }
144 
145  /*! put after an undocumented member in the list of all members */
147  { return "apibrėžta"; }
148 
149  // quick reference sections
150 
151  /*! This is put above each page as a link to the list of all groups of
152  * compounds or files (see the \\group command).
153  */
154  virtual QCString trModules()
155  { return "Moduliai"; }
156 
157  /*! This is put above each page as a link to the class hierarchy */
159  { return "Klasių hierarchija"; }
160 
161  /*! This is put above each page as a link to the list of annotated classes */
163  {
164  if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
165  {
166  return "Duomenų Struktūros";
167  }
168  else
169  {
170  return "Klasės";
171  }
172  }
173 
174  /*! This is put above each page as a link to the list of documented files */
176  { return "Failai"; }
177 
178  /*! This is put above each page as a link to all members of compounds. */
180  {
181  if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
182  {
183  return "Duomenų Laukai";
184  }
185  else
186  {
187  return "Klasių Nariai";
188  }
189  }
190 
191  /*! This is put above each page as a link to all members of files. */
193  {
194  if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
195  {
196  return "Globalūs Nariai";
197  }
198  else
199  {
200  return "Failų Nariai";
201  }
202  }
203 
204  /*! This is put above each page as a link to all related pages. */
206  { return "Susiję Puslapiai"; }
207 
208  /*! This is put above each page as a link to all examples. */
210  { return "Pavyzdžiai"; }
211 
212  /*! This is put above each page as a link to the search engine. */
213  virtual QCString trSearch()
214  { return "Paieška"; }
215 
216  /*! This is an introduction to the class hierarchy. */
218  { return "Šis paveldėjimo sąrašas yra beveik surikiuotas "
219  "abėcėlės tvarka:";
220  }
221 
222  /*! This is an introduction to the list with all files. */
223  virtual QCString trFileListDescription(bool extractAll)
224  {
225  QCString result="Visų ";
226  if (!extractAll) result+="dokumentuotų ";
227  result+="failų sąrašas su trumpais aprašymais:";
228  return result;
229  }
230 
231  /*! This is an introduction to the annotated compound list. */
233  {
234 
235  if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
236  {
237  return "Duomenų struktūros su trumpais aprašymais:";
238  }
239  else
240  {
241  return "Klasės, struktūros, "
242  "sąjungos ir sąsajos su trumpais aprašymais:";
243  }
244  }
245 
246  /*! This is an introduction to the page with all class members. */
247  virtual QCString trCompoundMembersDescription(bool extractAll)
248  {
249  QCString result="Visų ";
250  if (!extractAll)
251  {
252  result+="dokumentuotų ";
253  }
254  if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
255  {
256  result+="struktūrų ir sąjungų laukų sąrašas";
257  }
258  else
259  {
260  result+="klasių nariai";
261  }
262  result+=" su ryšiais į ";
263  if (!extractAll)
264  {
265  if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
266  {
267  result+="struktūrų/sąjungų kiekvieno lauko dokumentaciją:";
268  }
269  else
270  {
271  result+="klasės dokumentacija kiekvienam nariui:";
272  }
273  }
274  else
275  {
276  if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
277  {
278  result+="struktūros/sąjungos, kurios priklauso:";
279  }
280  else
281  {
282  result+="klasės, kurios priklauso:";
283  }
284  }
285  return result;
286  }
287 
288  /*! This is an introduction to the page with all file members. */
289  virtual QCString trFileMembersDescription(bool extractAll)
290  {
291  QCString result="Sąrašas visų ";
292  if (!extractAll) result+="dokumentuotų ";
293 
294  if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
295  {
296  result+="funkcijų, kintamųjų, apibrėžimų, išvardinimų, ir tipų apibrėžimų";
297  }
298  else
299  {
300  result+="globalių narių";
301  }
302  result+=" su ryšiais į ";
303  if (extractAll)
304  result+="failus, kuriems jie priklauso:";
305  else
306  result+="dokumentacija:";
307  return result;
308  }
309 
310  /*! This is an introduction to the page with the list of all examples */
312  { return "Visų pavyzdžių sąrašas:"; }
313 
314  /*! This is an introduction to the page with the list of related pages */
316  { return "Visų susijusių dokumentacijos puslapių sąrašas:"; }
317 
318  /*! This is an introduction to the page with the list of class/file groups */
320  { return "Visų modulių sąrašas:"; }
321 
322  // index titles (the project name is prepended for these)
323 
324  /*! This is used in HTML as the title of index.html. */
326  { return "Dokumentacija"; }
327 
328  /*! This is used in LaTeX as the title of the chapter with the
329  * index of all groups.
330  */
332  { return "Modulio Indeksas"; }
333 
334  /*! This is used in LaTeX as the title of the chapter with the
335  * class hierarchy.
336  */
338  { return "Hierarchijos Indeksas"; }
339 
340  /*! This is used in LaTeX as the title of the chapter with the
341  * annotated compound index.
342  */
344  {
345  if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
346  {
347  return "Duomenų Struktūros Indeksas";
348  }
349  else
350  {
351  return "Klasės Indeksas";
352  }
353  }
354 
355  /*! This is used in LaTeX as the title of the chapter with the
356  * list of all files.
357  */
359  { return "Failo Indeksas"; }
360 
361  /*! This is used in LaTeX as the title of the chapter containing
362  * the documentation of all groups.
363  */
365  { return "Modulio Dokumentacija"; }
366 
367  /*! This is used in LaTeX as the title of the chapter containing
368  * the documentation of all classes, structs and unions.
369  */
371  {
372  if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
373  {
374  return "Duomenų Struktūros Dokumentacija";
375  }
376  else
377  {
378  return "Klasės Dokumentacija";
379  }
380  }
381 
382  /*! This is used in LaTeX as the title of the chapter containing
383  * the documentation of all files.
384  */
386  { return "Failo Dokumentacija"; }
387 
388  /*! This is used in LaTeX as the title of the chapter containing
389  * the documentation of all examples.
390  */
392  { return "Pavyzdžio Dokumentacija"; }
393 
394  /*! This is used in LaTeX as the title of the chapter containing
395  * the documentation of all related pages.
396  */
398  { return "Puslapio Dokumentacija"; }
399 
400  /*! This is used in LaTeX as the title of the document */
402  { return "Informacinis Vadovas"; }
403 
404  /*! This is used in the documentation of a file as a header before the
405  * list of defines
406  */
407  virtual QCString trDefines()
408  { return "Apibrėžimai"; }
409 
410  /*! This is used in the documentation of a file as a header before the
411  * list of typedefs
412  */
414  { return "Tipų apibrėžimai"; }
415 
416  /*! This is used in the documentation of a file as a header before the
417  * list of enumerations
418  */
420  { return "Išvardinimai"; }
421 
422  /*! This is used in the documentation of a file as a header before the
423  * list of (global) functions
424  */
426  { return "Funkcijos"; }
427 
428  /*! This is used in the documentation of a file as a header before the
429  * list of (global) variables
430  */
432  { return "Kintamieji"; }
433 
434  /*! This is used in the documentation of a file as a header before the
435  * list of (global) variables
436  */
438  { return "Išvardinimų reikšmės"; }
439 
440  /*! This is used in the documentation of a file before the list of
441  * documentation blocks for defines
442  */
444  { return "Apibrėžimų Dokumentacija"; }
445 
446  /*! This is used in the documentation of a file/namespace before the list
447  * of documentation blocks for typedefs
448  */
450  { return "Tipų apibrėžimų Dokumentacija"; }
451 
452  /*! This is used in the documentation of a file/namespace before the list
453  * of documentation blocks for enumeration types
454  */
456  { return "Išvardinimo Tipo Dokumentacija"; }
457 
458  /*! This is used in the documentation of a file/namespace before the list
459  * of documentation blocks for functions
460  */
462  { return "Funkcijos Dokumentacija"; }
463 
464  /*! This is used in the documentation of a file/namespace before the list
465  * of documentation blocks for variables
466  */
468  { return "Kintamojo Dokumentacija"; }
469 
470  /*! This is used in the documentation of a file/namespace/group before
471  * the list of links to documented compounds
472  */
474  {
475  if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
476  {
477  return "Duomenų struktųros";
478  }
479  else
480  {
481  return "Klasės";
482  }
483  }
484 
485  /*! This is used in the standard footer of each page and indicates when
486  * the page was generated
487  */
488  virtual QCString trGeneratedAt(const char *date,const char *projName)
489  {
490  QCString result=(QCString)"Sugeneruota "+date;/*FIXME*/
491  if (projName) result+=(QCString)" "+projName;/*FIXME*/
492  result+=(QCString)" ";/*FIXME*/
493  return result;
494  }
495 
496  /*! this text is put before a class diagram */
497  virtual QCString trClassDiagram(const char *clName)
498  {
499  return (QCString)"Paveldimumo diagrama "+clName+":"; /*FIXME*/
500  }
501 
502  /*! this text is generated when the \\internal command is used. */
504  { return "Tiktai vidiniam naudojimui."; }
505 
506  /*! this text is generated when the \\warning command is used. */
507  virtual QCString trWarning()
508  { return "Įspėjimas"; }
509 
510  /*! this text is generated when the \\version command is used. */
511  virtual QCString trVersion()
512  { return "Versija"; }
513 
514  /*! this text is generated when the \\date command is used. */
515  virtual QCString trDate()
516  { return "Data"; }
517 
518  /*! this text is generated when the \\return command is used. */
519  virtual QCString trReturns()
520  { return "Gražina"; }
521 
522  /*! this text is generated when the \\sa command is used. */
523  virtual QCString trSeeAlso()
524  { return "Taip pat žiūrėti"; }
525 
526  /*! this text is generated when the \\param command is used. */
528  { return "Parametrai"; }
529 
530  /*! this text is generated when the \\exception command is used. */
532  { return "Išimtys"; }
533 
534  /*! this text is used in the title page of a LaTeX document. */
536  { return "Sugeneruota"; }
537 
538 //////////////////////////////////////////////////////////////////////////
539 // new since 0.49-990307
540 //////////////////////////////////////////////////////////////////////////
541 
542  /*! used as the title of page containing all the index of all namespaces. */
544  { return "Varų Srities Sąrašas"; }
545 
546  /*! used as an introduction to the namespace list */
547  virtual QCString trNamespaceListDescription(bool extractAll)
548  {
549  QCString result="Sąrašas visų ";
550  if (!extractAll) result+="dokumentuotų ";
551  result+="vardų sričių su trumpais aprašymais:";
552  return result;
553  }
554 
555  /*! used in the class documentation as a header before the list of all
556  * friends of a class
557  */
558  virtual QCString trFriends()
559  { return "Draugai"; }
560 
561 //////////////////////////////////////////////////////////////////////////
562 // new since 0.49-990405
563 //////////////////////////////////////////////////////////////////////////
564 
565  /*! used in the class documentation as a header before the list of all
566  * related classes
567  */
569  { return "Draugiškų Ir Susijusių Funkcijų Dokumentacija"; }
570 
571 //////////////////////////////////////////////////////////////////////////
572 // new since 0.49-990425
573 //////////////////////////////////////////////////////////////////////////
574 
575  /*! used as the title of the HTML page of a class/struct/union */
576  virtual QCString trCompoundReference(const char *clName,
577  ClassDef::CompoundType compType,
578  bool isTemplate)
579  {
580  QCString result=(QCString)clName;
581  switch(compType)
582  {
583  case ClassDef::Class: result+=" Klasė"; break;
584  case ClassDef::Struct: result+=" Struktūra"; break;
585  case ClassDef::Union: result+=" Sąjunga"; break;
586  case ClassDef::Interface: result+=" Sąsaja"; break;
587  case ClassDef::Protocol: result+=" Protokolas"; break;
588  case ClassDef::Category: result+=" Kategorija"; break;
589  case ClassDef::Exception: result+=" Išimtis"; break;
590  default: break;
591  }
592  if (isTemplate) result+=" Šablonas";
593  return result;
594  }
595 
596  /*! used as the title of the HTML page of a file */
597  virtual QCString trFileReference(const char *fileName)
598  {
600  result+=" Failo Nuoroda";
601  return result;
602  }
603 
604  /*! used as the title of the HTML page of a namespace */
605  virtual QCString trNamespaceReference(const char *namespaceName)
606  {
607  QCString result=namespaceName;
608  result+=" Vardų Srities Nuoroda";
609  return result;
610  }
611 
613  { return "Vieši Metodai"; }
615  { return "Vieši Slotai"; } /*FIXME*/
616  virtual QCString trSignals()
617  { return "Signalai"; }
619  { return "Statiniai Vieši Metodai"; }
621  { return "Apsaugoti Metodai"; }
623  { return "Apsaugoti Slotai"; }/*FIXME*/
625  { return "Statiniai Apsaugoti Metodai"; }
627  { return "Privatatūs Metodai"; }
629  { return "Privatūs Slotai"; }/*FIXME*/
631  { return "Statiniai Privatūs Metodai"; }
632 
633  /*! this function is used to produce a comma-separated list of items.
634  * use generateMarker(i) to indicate where item i should be put.
635  */
636  virtual QCString trWriteList(int numEntries)
637  {
639  int i;
640  // the inherits list contain `numEntries' classes
641  for (i=0;i<numEntries;i++)
642  {
643  // use generateMarker to generate placeholders for the class links!
644  result+=generateMarker(i); // generate marker for entry i in the list
645  // (order is left to right)
646 
647  if (i!=numEntries-1) // not the last entry, so we need a separator
648  {
649  if (i<numEntries-2) // not the fore last entry
650  result+=", ";
651  else // the fore last entry
652  result+=", ir ";
653  }
654  }
655  return result;
656  }
657 
658  /*! used in class documentation to produce a list of base classes,
659  * if class diagrams are disabled.
660  */
661  virtual QCString trInheritsList(int numEntries)
662  {
663  return "Paveldi "+trWriteList(numEntries)+".";
664  }
665 
666  /*! used in class documentation to produce a list of super classes,
667  * if class diagrams are disabled.
668  */
669  virtual QCString trInheritedByList(int numEntries)
670  {
671  return "Paveldėta "+trWriteList(numEntries)+".";
672  }
673 
674  /*! used in member documentation blocks to produce a list of
675  * members that are hidden by this one.
676  */
677  virtual QCString trReimplementedFromList(int numEntries)
678  {
679  return "Perkrauna metodą iš "+trWriteList(numEntries)+".";
680  }
681 
682  /*! used in member documentation blocks to produce a list of
683  * all member that overwrite the implementation of this member.
684  */
685  virtual QCString trReimplementedInList(int numEntries)
686  {
687  return "Metodas perkraunamas "+trWriteList(numEntries)+".";
688  }
689 
690  /*! This is put above each page as a link to all members of namespaces. */
692  { return "Vardų Srities Nariai"; }
693 
694  /*! This is an introduction to the page with all namespace members */
695  virtual QCString trNamespaceMemberDescription(bool extractAll)
696  {
697  QCString result="Sąrašas visų ";
698  if (!extractAll) result+="dokumentuotų ";
699  result+="vardų srities narių su nuorodomis į ";
700  if (extractAll)
701  result+="vardų srities dokumentaciją kiekvienam nariui:";
702  else
703  result+="vardų sritis, kurioms jos priklauso:";
704  return result;
705  }
706  /*! This is used in LaTeX as the title of the chapter with the
707  * index of all namespaces.
708  */
710  { return "Vardų Srities Indeksas"; }
711 
712  /*! This is used in LaTeX as the title of the chapter containing
713  * the documentation of all namespaces.
714  */
716  { return "Vardų Srities Dokumentacija"; }
717 
718 //////////////////////////////////////////////////////////////////////////
719 // new since 0.49-990522
720 //////////////////////////////////////////////////////////////////////////
721 
722  /*! This is used in the documentation before the list of all
723  * namespaces in a file.
724  */
726  { return "Vardų Sritys"; }
727 
728 //////////////////////////////////////////////////////////////////////////
729 // new since 0.49-990728
730 //////////////////////////////////////////////////////////////////////////
731 
732  /*! This is put at the bottom of a class documentation page and is
733  * followed by a list of files that were used to generate the page.
734  */
736  bool single)
737  { // here s is one of " Class", " Struct" or " Union"
738  // single is true implies a single file
739  QCString result=(QCString)"Dokumentacija ";
740  switch(compType)
741  {
742  case ClassDef::Class: result+="šiai klasei"; break;
743  case ClassDef::Struct: result+="šiai struktūrai"; break;
744  case ClassDef::Union: result+="šiai sąjungai"; break;
745  case ClassDef::Interface: result+="šiai sąsajai"; break;
746  case ClassDef::Protocol: result+="šiam protocolui"; break;
747  case ClassDef::Category: result+="šiai kategorijai"; break;
748  case ClassDef::Exception: result+="šiai išimčiai"; break;
749  default: break;
750  }
751  result+=" sugeneruota iš ";
752  if (single) result+="šio failo:"; else result+="šių failų:";
753  return result;
754  }
755 
756 //////////////////////////////////////////////////////////////////////////
757 // new since 0.49-990901
758 //////////////////////////////////////////////////////////////////////////
759 
760  /*! This is used as the heading text for the retval command. */
762  { return "Gražinamos reikšmės"; }
763 
764  /*! This is in the (quick) index as a link to the main page (index.html)
765  */
767  { return "Pagrindinis Puslapis"; }
768 
769  /*! This is used in references to page that are put in the LaTeX
770  * documentation. It should be an abbreviation of the word page.
771  */
773  { return "psl."; }
774 
775 //////////////////////////////////////////////////////////////////////////
776 // new since 0.49-991003
777 //////////////////////////////////////////////////////////////////////////
778 
780  {
781  return "Apibrėžimas failo @1 eilutėje @0.";
782  }
784  {
785  return "Apibrėžimas faile @0.";
786  }
787 
788 //////////////////////////////////////////////////////////////////////////
789 // new since 0.49-991205
790 //////////////////////////////////////////////////////////////////////////
791 
793  {
794  return "Smerktina";
795  }
796 
797 //////////////////////////////////////////////////////////////////////////
798 // new since 1.0.0
799 //////////////////////////////////////////////////////////////////////////
800 
801  /*! this text is put before a collaboration diagram */
802  virtual QCString trCollaborationDiagram(const char *clName)
803  {
804  return (QCString)"Bendradarbiavimo diagrama "+clName+":";/*FIXME*/
805  }
806  /*! this text is put before an include dependency graph */
807  virtual QCString trInclDepGraph(const char *fName)
808  {
809  return (QCString)"Įtraukimo priklausomybių diagrama "+fName+":";/*FIXME*/
810  }
811  /*! header that is put before the list of constructor/destructors. */
813  {
814  return "Konstruktoriaus ir Destruktoriaus Dokumentacija";
815  }
816  /*! Used in the file documentation to point to the corresponding sources. */
818  {
819  return "Eiti į šio failo programos kodą.";
820  }
821  /*! Used in the file sources to point to the corresponding documentation. */
823  {
824  return "Eiti į šio failo dokumentaciją.";
825  }
826  /*! Text for the \\pre command */
828  {
829  return "Išakstinė sąlyga";
830  }
831  /*! Text for the \\post command */
833  {
834  return "Postcondition";/*FIXME*/
835  }
836  /*! Text for the \\invariant command */
838  {
839  return "Pastovus";
840  }
841  /*! Text shown before a multi-line variable/enum initialization */
843  {
844  return "Pradinė reikšmė:";
845  }
846  /*! Text used the source code in the file index */
847  virtual QCString trCode()
848  {
849  return "tekstas";/*FIXME*/
850  }
852  {
853  return "Grafinė Klasės Hierarchija";
854  }
856  {
857  return "Eiti į grafinę klasės hierarchiją";
858  }
860  {
861  return "Eiti į tekstinę klasės hierarchiją";
862  }
864  {
865  return "Puslapio Indeksas";
866  }
867 
868 //////////////////////////////////////////////////////////////////////////
869 // new since 1.1.0
870 //////////////////////////////////////////////////////////////////////////
871 
872  virtual QCString trNote()
873  {
874  return "Pastaba";
875  }
877  {
878  return "Vieši Tipai";
879  }
881  {
882  if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
883  {
884  return "Duomenų Laukai";
885  }
886  else
887  {
888  return "Vieši Atributai";
889  }
890  }
892  {
893  return "Statiniai Vieši Atributai";
894  }
896  {
897  return "Apsaugoti Tipai";
898  }
900  {
901  return "Apsaugoti Atributai";
902  }
904  {
905  return "Statiniai Apsaugoti Atributai";
906  }
908  {
909  return "Privatūs Tipai";
910  }
912  {
913  return "Privatūs Atributai";
914  }
916  {
917  return "Statiniai Privatūs Atributai";
918  }
919 
920 //////////////////////////////////////////////////////////////////////////
921 // new since 1.1.3
922 //////////////////////////////////////////////////////////////////////////
923 
924  /*! Used as a marker that is put before a \\todo item */
925  virtual QCString trTodo()
926  {
927  return "Daryti";
928  }
929  /*! Used as the header of the todo list */
931  {
932  return "Tolimesni Darbai";
933  }
934 
935 //////////////////////////////////////////////////////////////////////////
936 // new since 1.1.4
937 //////////////////////////////////////////////////////////////////////////
938 
940  {
941  return "Naudojamas";
942  }
943  virtual QCString trRemarks()
944  {
945  return "Pastabos";
946  }
948  {
949  return "Attention";
950  }
952  {
953  return "Šis grafas rodo, kuris failas tiesiogiai ar "
954  "netiesiogiai įtraukia šį failą:";
955  }
956  virtual QCString trSince()
957  {
958  return "Nuo";
959  }
960 
961 //////////////////////////////////////////////////////////////////////////
962 // new since 1.1.5
963 //////////////////////////////////////////////////////////////////////////
964 
965  /*! title of the graph legend page */
967  {
968  return "Grafo Legenda";
969  }
970  /*! page explaining how the dot graph's should be interpreted
971  * The %A in the text below are to prevent link to classes called "A".
972  */
974  {
975  return
976  "Šis puslapis paaiškina, kaip interpretuoti sugeneruotus grafus "
977  "su Doxygen įrankiu.<p>\n"
978  "Panagrinėkite pavyzdį:\n"
979  "\\kodo pradžia\n"
980  "/*! Invisible class because of truncation */\n"
981  "class Invisible { };\n\n"
982  "/*! Truncated class, inheritance relation is hidden */\n"
983  "class Truncated : public Invisible { };\n\n"
984  "/* Class not documented with doxygen comments */\n"
985  "class Undocumented { };\n\n"
986  "/*! Class that is inherited using public inheritance */\n"
987  "class PublicBase : public Truncated { };\n\n"
988  "/*! A template class */\n"
989  "template<class T> class Templ { };\n\n"
990  "/*! Class that is inherited using protected inheritance */\n"
991  "class ProtectedBase { };\n\n"
992  "/*! Class that is inherited using private inheritance */\n"
993  "class PrivateBase { };\n\n"
994  "/*! Class that is used by the Inherited class */\n"
995  "class Used { };\n\n"
996  "/*! Super class that inherits a number of other classes */\n"
997  "class Inherited : public PublicBase,\n"
998  " protected ProtectedBase,\n"
999  " private PrivateBase,\n"
1000  " public Undocumented,\n"
1001  " public Templ<int>\n"
1002  "{\n"
1003  " private:\n"
1004  " Used *m_usedClass;\n"
1005  "};\n"
1006  "\\endcode\n"
1007  "If the \\c MAX_DOT_GRAPH_HEIGHT tag in the configuration file "
1008  "is set to 240 this will result in the following graph:"
1009  "<p><center><img alt=\"\" src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1010  "<p>\n"
1011  "The boxes in the above graph have the following meaning:\n"
1012  "<ul>\n"
1013  "<li>%A filled black box represents the struct or class for which the "
1014  "graph is generated.\n"
1015  "<li>%A box with a black border denotes a documented struct or class.\n"
1016  "<li>%A box with a gray border denotes an undocumented struct or class.\n"
1017  "<li>%A box with a red border denotes a documented struct or class for"
1018  "which not all inheritance/containment relations are shown. %A graph is "
1019  "truncated if it does not fit within the specified boundaries.\n"
1020  "</ul>\n"
1021  "The arrows have the following meaning:\n"
1022  "<ul>\n"
1023  "<li>%A dark blue arrow is used to visualize a public inheritance "
1024  "relation between two classes.\n"
1025  "<li>%A dark green arrow is used for protected inheritance.\n"
1026  "<li>%A dark red arrow is used for private inheritance.\n"
1027  "<li>%A purple dashed arrow is used if a class is contained or used "
1028  "by another class. The arrow is labeled with the variable(s) "
1029  "through which the pointed class or struct is accessible.\n"
1030  "<li>%A yellow dashed arrow denotes a relation between a template instance and "
1031  "the template class it was instantiated from. The arrow is labeled with "
1032  "the template parameters of the instance.\n"
1033  "</ul>\n";
1034  }
1035  /*! text for the link to the legend page */
1036  virtual QCString trLegend()
1037  {
1038  return "legenda";
1039  }
1040 
1041 //////////////////////////////////////////////////////////////////////////
1042 // new since 1.2.0
1043 //////////////////////////////////////////////////////////////////////////
1044 
1045  /*! Used as a marker that is put before a test item */
1046  virtual QCString trTest()
1047  {
1048  return "Testas";
1049  }
1050  /*! Used as the header of the test list */
1052  {
1053  return "Testo Sąrašas";
1054  }
1055 
1056 //////////////////////////////////////////////////////////////////////////
1057 // new since 1.2.2
1058 //////////////////////////////////////////////////////////////////////////
1059 
1060  /*! Used as a section header for IDL properties */
1062  {
1063  return "Savybės";
1064  }
1065  /*! Used as a section header for IDL property documentation */
1067  {
1068  return "Savybės Dokumentacija";
1069  }
1070 
1071 //////////////////////////////////////////////////////////////////////////
1072 // new since 1.2.4
1073 //////////////////////////////////////////////////////////////////////////
1074 
1075  /*! Used for Java classes in the summary section of Java packages */
1077  {
1078  if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
1079  {
1080  return "Duomenų Struktūros";
1081  }
1082  else
1083  {
1084  return "Klasės";
1085  }
1086  }
1087  /*! Used as the title of a Java package */
1088  virtual QCString trPackage(const char *name)
1089  {
1090  return (QCString)"Paketas "+name;
1091  }
1092  /*! Title of the package index page */
1094  {
1095  return "Paketo Sąrašas";
1096  }
1097  /*! The description of the package index page */
1099  {
1100  return "Paketai su trumpu aprašymu:";
1101  }
1102  /*! The link name in the Quick links header for each page */
1104  {
1105  return "Paketai";
1106  }
1107  /*! Text shown before a multi-line define */
1109  {
1110  return "Reikšmė:";
1111  }
1112 
1113 //////////////////////////////////////////////////////////////////////////
1114 // new since 1.2.5
1115 //////////////////////////////////////////////////////////////////////////
1116 
1117  /*! Used as a marker that is put before a \\bug item */
1118  virtual QCString trBug()
1119  {
1120  return "Klaida";
1121  }
1122  /*! Used as the header of the bug list */
1124  {
1125  return "Klaidų Sąrašas";
1126  }
1127 
1128 //////////////////////////////////////////////////////////////////////////
1129 // new since 1.2.6
1130 //////////////////////////////////////////////////////////////////////////
1131 
1132  /*! Used as ansicpg for RTF file
1133  *
1134  * The following table shows the correlation of Charset name, Charset Value and
1135  * <pre>
1136  * Codepage number:
1137  * Charset Name Charset Value(hex) Codepage number
1138  * ------------------------------------------------------
1139  * DEFAULT_CHARSET 1 (x01)
1140  * SYMBOL_CHARSET 2 (x02)
1141  * OEM_CHARSET 255 (xFF)
1142  * ANSI_CHARSET 0 (x00) 1252
1143  * RUSSIAN_CHARSET 204 (xCC) 1251
1144  * EE_CHARSET 238 (xEE) 1250
1145  * GREEK_CHARSET 161 (xA1) 1253
1146  * TURKISH_CHARSET 162 (xA2) 1254
1147  * BALTIC_CHARSET 186 (xBA) 1257
1148  * HEBREW_CHARSET 177 (xB1) 1255
1149  * ARABIC _CHARSET 178 (xB2) 1256
1150  * SHIFTJIS_CHARSET 128 (x80) 932
1151  * HANGEUL_CHARSET 129 (x81) 949
1152  * GB2313_CHARSET 134 (x86) 936
1153  * CHINESEBIG5_CHARSET 136 (x88) 950
1154  * </pre>
1155  *
1156  */
1158  {
1159  return "1257";
1160  }
1161 
1162 
1163  /*! Used as ansicpg for RTF fcharset
1164  * \see trRTFansicp() for a table of possible values.
1165  */
1167  {
1168  return "186";
1169  }
1170 
1171  /*! Used as header RTF general index */
1173  {
1174  return "Indeksas";
1175  }
1176 
1177  /*! This is used for translation of the word that will possibly
1178  * be followed by a single name or by a list of names
1179  * of the category.
1180  */
1181  virtual QCString trClass(bool first_capital, bool singular)
1182  {
1183  QCString result((first_capital ? "Klasė" : "klasė"));
1184  if (!singular) result+="s";
1185  return result;
1186  }
1187 
1188  /*! This is used for translation of the word that will possibly
1189  * be followed by a single name or by a list of names
1190  * of the category.
1191  */
1192  virtual QCString trFile(bool first_capital, bool singular)
1193  {
1194  QCString result((first_capital ? "Faila" : "faila"));
1195  if (!singular) result+="i";
1196  else result+="s";
1197  return result;
1198  }
1199 
1200  /*! This is used for translation of the word that will possibly
1201  * be followed by a single name or by a list of names
1202  * of the category.
1203  */
1204  virtual QCString trNamespace(bool first_capital, bool singular)
1205  {
1206  QCString result((first_capital ? "Vardų srit" : "vardų srit"));
1207  if (!singular) result+="ys";
1208  else result+="is";
1209  return result;
1210  }
1211 
1212  /*! This is used for translation of the word that will possibly
1213  * be followed by a single name or by a list of names
1214  * of the category.
1215  */
1216  virtual QCString trGroup(bool first_capital, bool singular)
1217  {
1218  QCString result((first_capital ? "Grupė" : "grupė"));
1219  if (!singular) result+="s";
1220  return result;
1221  }
1222 
1223  /*! This is used for translation of the word that will possibly
1224  * be followed by a single name or by a list of names
1225  * of the category.
1226  */
1227  virtual QCString trPage(bool first_capital, bool singular)
1228  {
1229  QCString result((first_capital ? "Puslapi" : "puslapi"));
1230  if (!singular) result+="ai";
1231  else result+="s";
1232  return result;
1233  }
1234 
1235  /*! This is used for translation of the word that will possibly
1236  * be followed by a single name or by a list of names
1237  * of the category.
1238  */
1239  virtual QCString trMember(bool first_capital, bool singular)
1240  {
1241  QCString result((first_capital ? "Nar" : "nar"));
1242  if (!singular) result+="iai";
1243  else result+="ys";
1244  return result;
1245  }
1246 
1247  /*! This is used for translation of the word that will possibly
1248  * be followed by a single name or by a list of names
1249  * of the category.
1250  */
1251  virtual QCString trGlobal(bool first_capital, bool singular)
1252  {
1253  QCString result((first_capital ? "Global" : "global"));
1254  if (!singular) result+="ūs";
1255  else result+="us";
1256  return result;
1257  }
1258 
1259 //////////////////////////////////////////////////////////////////////////
1260 // new since 1.2.7
1261 //////////////////////////////////////////////////////////////////////////
1262 
1263  /*! This text is generated when the \\author command is used and
1264  * for the author section in man pages. */
1265  virtual QCString trAuthor(bool first_capital, bool singular)
1266  {
1267  QCString result((first_capital ? "Autori" : "autori"));
1268  if (!singular) result+="ai";
1269  else result+="us";
1270  return result;
1271  }
1272 
1273 //////////////////////////////////////////////////////////////////////////
1274 // new since 1.2.11
1275 //////////////////////////////////////////////////////////////////////////
1276 
1277  /*! This text is put before the list of members referenced by a member
1278  */
1280  {
1281  return "Ryšiai";
1282  }
1283 
1284 //////////////////////////////////////////////////////////////////////////
1285 // new since 1.2.13
1286 //////////////////////////////////////////////////////////////////////////
1287 
1288  /*! used in member documentation blocks to produce a list of
1289  * members that are implemented by this one.
1290  */
1291  virtual QCString trImplementedFromList(int numEntries)
1292  {
1293  return "Realizuoja "+trWriteList(numEntries)+".";
1294  }
1295 
1296  /*! used in member documentation blocks to produce a list of
1297  * all members that implement this abstract member.
1298  */
1299  virtual QCString trImplementedInList(int numEntries)
1300  {
1301  return "Realizuota "+trWriteList(numEntries)+".";
1302  }
1303 
1304 //////////////////////////////////////////////////////////////////////////
1305 // new since 1.2.16
1306 //////////////////////////////////////////////////////////////////////////
1307 
1308  /*! used in RTF documentation as a heading for the Table
1309  * of Contents.
1310  */
1312  {
1313  return "Turinys";
1314  }
1315 
1316 //////////////////////////////////////////////////////////////////////////
1317 // new since 1.2.17
1318 //////////////////////////////////////////////////////////////////////////
1319 
1320  /*! Used as the header of the list of item that have been
1321  * flagged deprecated
1322  */
1324  {
1325  return "Smerktinumų Sąrašas";
1326  }
1327 
1328 //////////////////////////////////////////////////////////////////////////
1329 // new since 1.2.18
1330 //////////////////////////////////////////////////////////////////////////
1331 
1332  /*! Used as a header for declaration section of the events found in
1333  * a C# program
1334  */
1335  virtual QCString trEvents()
1336  {
1337  return "Įvykiai";
1338  }
1339  /*! Header used for the documentation section of a class' events. */
1341  {
1342  return "Įvykio Dokumentacija";
1343  }
1344 
1345 //////////////////////////////////////////////////////////////////////////
1346 // new since 1.3
1347 //////////////////////////////////////////////////////////////////////////
1348 
1349  /*! Used as a heading for a list of Java class types with package scope.
1350  */
1352  {
1353  return "Paketo Tipai";
1354  }
1355  /*! Used as a heading for a list of Java class functions with package
1356  * scope.
1357  */
1359  {
1360  return "Paketo Funkcijos";
1361  }
1362  /*! Used as a heading for a list of static Java class functions with
1363  * package scope.
1364  */
1366  {
1367  return "Statinės Paketo Funkcijos";
1368  }
1369  /*! Used as a heading for a list of Java class variables with package
1370  * scope.
1371  */
1373  {
1374  return "Paketo Atributai";
1375  }
1376  /*! Used as a heading for a list of static Java class variables with
1377  * package scope.
1378  */
1380  {
1381  return "Statiniai Paketo Atributai";
1382  }
1383 
1384 //////////////////////////////////////////////////////////////////////////
1385 // new since 1.3.1
1386 //////////////////////////////////////////////////////////////////////////
1387 
1388  /*! Used in the quick index of a class/file/namespace member list page
1389  * to link to the unfiltered list of all members.
1390  */
1391  virtual QCString trAll()
1392  {
1393  return "Visi";
1394  }
1395  /*! Put in front of the call graph for a function. */
1397  {
1398  return "Funkcijos kvietimo grafas:";
1399  }
1400 
1401 //////////////////////////////////////////////////////////////////////////
1402 // new since 1.3.3
1403 //////////////////////////////////////////////////////////////////////////
1404 
1405  /*! This string is used as the title for the page listing the search
1406  * results.
1407  */
1409  {
1410  return "Paieškos Rezultatai";
1411  }
1412  /*! This string is put just before listing the search results. The
1413  * text can be different depending on the number of documents found.
1414  * Inside the text you can put the special marker $num to insert
1415  * the number representing the actual number of search results.
1416  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1417  * value 2 represents 2 or more matches. HTML markup is allowed inside
1418  * the returned string.
1419  */
1420  virtual QCString trSearchResults(int numDocuments)
1421  {
1422  if (numDocuments==0)
1423  {
1424  return "Atsiprašome, jokių dokumentų nerasta pagal Jūsų užklausą.";
1425  }
1426  else if (numDocuments==1)
1427  {
1428  return "Surasta <b>1</b> dokumentas, atitinkantis Jūsų užklausą.";
1429  }
1430  else
1431  {
1432  return "Surasta <b>$num</b> dokumentų, atitinkančių Jūsų užklausą. "
1433  "Pirmiausiai rodomi labiausiai tenkinantys užklausą.";
1434  }
1435  }
1436  /*! This string is put before the list of matched words, for each search
1437  * result. What follows is the list of words that matched the query.
1438  */
1440  {
1441  return "Atitikmenys:";
1442  }
1443 //////////////////////////////////////////////////////////////////////////
1444 // new since 1.3.8
1445 //////////////////////////////////////////////////////////////////////////
1446 
1447  /*! This is used in HTML as the title of page with source code for file filename
1448  */
1450  {
1451  return filename + " išeities tekstas";
1452  }
1453 
1454 //////////////////////////////////////////////////////////////////////////
1455 // new since 1.3.9
1456 //////////////////////////////////////////////////////////////////////////
1457 
1458  /*! This is used as the name of the chapter containing the directory
1459  * hierarchy.
1460  */
1462  { return "Direktorijų hierarchija"; }
1463 
1464  /*! This is used as the name of the chapter containing the documentation
1465  * of the directories.
1466  */
1468  { return "Direktorijų dokumentacija"; }
1469 
1470  /*! This is used as the title of the directory index and also in the
1471  * Quick links of a HTML page, to link to the directory hierarchy.
1472  */
1474  { return "Direktorijos"; }
1475 
1476  /*! This returns a sentences that introduces the directory hierarchy.
1477  * and the fact that it is sorted alphabetically per level
1478  */
1480  { return "Ši direktorjų strūktūra grubiai surikiuota abėcėlės tvarka:";
1481  }
1482 
1483  /*! This returns the title of a directory page. The name of the
1484  * directory is passed via \a dirName.
1485  */
1486  virtual QCString trDirReference(const char *dirName)
1487  { QCString result=dirName; result+=" Directorijos aprašas"; return result; }
1488 
1489  /*! This returns the word directory with or without starting capital
1490  * (\a first_capital) and in sigular or plural form (\a singular).
1491  */
1492  virtual QCString trDir(bool first_capital, bool singular)
1493  {
1494  QCString result((first_capital ? "Direktorij" : "direktorij"));
1495  if (singular) result+="a"; else result+="os";
1496  return result;
1497  }
1498 
1499 //////////////////////////////////////////////////////////////////////////
1500 // new since 1.4.1
1501 //////////////////////////////////////////////////////////////////////////
1502 
1503  /*! This text is added to the documentation when the \\overload command
1504  * is used for a overloaded function.
1505  */
1507  {
1508  return "Perkraunamas metodas sukurtas patogumui. "
1509  "Jis skiriasi nuo aukščiau minėto tik argumetais.";
1510  }
1511 
1512 
1513 };
1514 
1515 #endif
static QCString name
Definition: declinfo.cpp:673
virtual QCString trPackages()
virtual QCString trReimplementedFromList(int numEntries)
virtual QCString trExampleDocumentation()
virtual QCString trLegendTitle()
virtual QCString trReturns()
virtual QCString trGeneratedBy()
virtual QCString trSearch()
virtual QCString trStaticProtectedAttribs()
virtual QCString trMainPage()
virtual QCString trProtectedSlots()
virtual QCString trLegendDocs()
virtual QCString trCompoundIndex()
virtual QCString trMemberList()
virtual QCString trClassHierarchy()
virtual QCString trPage(bool first_capital, bool singular)
virtual QCString trGeneratedAutomatically(const char *s)
virtual QCString trRelatedFunctionDocumentation()
virtual QCString trModules()
virtual QCString trEventDocumentation()
virtual QCString trClass(bool first_capital, bool singular)
QCString generateMarker(int id)
Definition: util.cpp:266
virtual QCString trDetailedDescription()
Definition: translator_lt.h:79
static QCString result
virtual QCString trImplementedFromList(int numEntries)
virtual QCString trSeeAlso()
virtual QCString trStaticPublicMembers()
virtual QCString trInclByDepGraph()
virtual QCString trDeprecatedList()
virtual QCString trVariables()
virtual QCString trFileMembersDescription(bool extractAll)
virtual QCString trMemberDataDocumentation()
Definition: translator_lt.h:95
virtual QCString trStaticPackageMembers()
virtual QCString trNamespaceList()
virtual QCString trModuleDocumentation()
virtual QCString trEnumerationTypeDocumentation()
virtual QCString trReferences()
virtual QCString trFileDocumentation()
virtual QCString trPrecondition()
virtual QCString trCallGraph()
virtual QCString trSearchResultsTitle()
virtual QCString trMemberFunctionDocumentation()
Definition: translator_lt.h:91
virtual QCString trReturnValues()
virtual QCString trPublicTypes()
virtual QCString trEnumerations()
virtual QCString trRemarks()
virtual QCString trFileMembers()
virtual QCString trPublicAttribs()
virtual QCString trCompoundListDescription()
virtual QCString trRTFansicp()
virtual QCString trGotoDocumentation()
virtual QCString trNamespaceReference(const char *namespaceName)
virtual QCString trStaticPackageAttribs()
virtual QCString trFile(bool first_capital, bool singular)
virtual QCString trTestList()
virtual QCString trRTFTableOfContents()
virtual QCString trTypedefs()
virtual QCString trInclDepGraph(const char *fName)
virtual QCString trCompoundMembersDescription(bool extractAll)
string filename
Definition: train.py:213
virtual QCString trClasses()
virtual QCString trForInternalUseOnly()
virtual QCString trClassHierarchyDescription()
virtual QCString trDirDocumentation()
virtual QCString trPrivateSlots()
virtual QCString trFileList()
virtual QCString trListOfAllMembers()
virtual QCString trPrivateTypes()
virtual QCString trFileListDescription(bool extractAll)
virtual QCString trReferenceManual()
virtual QCString trEnumValue()
virtual QCString trStaticPrivateMembers()
virtual QCString trExamples()
virtual QCString trClassDocumentation()
virtual QCString trEnumName()
virtual QCString trPackageListDescription()
virtual QCString trRelatedFunctions()
Definition: translator_lt.h:71
virtual QCString trAll()
virtual QCString trTest()
virtual QCString trConstructorDocumentation()
virtual QCString trPublicSlots()
virtual QCString trNamespaceMembers()
virtual QCString trMore()
virtual QCString trPageDocumentation()
virtual QCString trDirectories()
virtual QCString trWriteList(int numEntries)
virtual QCString trModuleIndex()
virtual QCString trSearchMatches()
virtual QCString trCompoundMembers()
virtual QCString trNamespaceMemberDescription(bool extractAll)
virtual QCString trPageAbbreviation()
virtual QCString trSourceFile(QCString &filename)
virtual QCString trTypedefDocumentation()
virtual QCString trFileReference(const char *fileName)
virtual QCString trDefineDocumentation()
virtual QCString trPrivateAttribs()
virtual QCString trStaticPrivateAttribs()
virtual QCString trDefinedInSourceFile()
virtual QCString trNamespaceDocumentation()
fileName
Definition: dumpTree.py:9
virtual QCString trWarning()
virtual QCString trProtectedAttribs()
virtual QCString trSignals()
virtual QCString trParameters()
virtual QCString idLanguage()
Definition: translator_lt.h:45
virtual QCString trLegend()
virtual QCString trInheritsList(int numEntries)
virtual QCString trNamespaceIndex()
virtual QCString trPublicMembers()
virtual QCString trStaticProtectedMembers()
virtual QCString trIncludingInheritedMembers()
virtual QCString trMember(bool first_capital, bool singular)
virtual QCString trPackage(const char *name)
virtual QCString trFunctionDocumentation()
virtual QCString trEnumerationValues()
virtual QCString trDefinedAtLineInSourceFile()
virtual QCString trModulesDescription()
virtual QCString trPrivateMembers()
virtual QCString trBug()
virtual QCString trCompoundReference(const char *clName, ClassDef::CompoundType compType, bool isTemplate)
virtual QCString trPackageMembers()
virtual QCString trDirDescription()
#define Config_getBool(val)
Definition: config.cpp:664
virtual QCString trRelatedSubscript()
Definition: translator_lt.h:75
QCString getDotImageExtension(void)
Definition: util.cpp:8562
virtual QCString trDefineValue()
virtual QCString trDeprecated()
virtual QCString trGotoTextualHierarchy()
virtual QCString trExceptions()
virtual QCString trNamespaceListDescription(bool extractAll)
virtual QCString trProtectedMembers()
virtual QCString trPostcondition()
virtual QCString trPageIndex()
virtual QCString trClassDiagram(const char *clName)
virtual QCString trNamespace(bool first_capital, bool singular)
virtual QCString trCompoundList()
virtual QCString trAttention()
virtual QCString trPackageAttribs()
virtual QCString trCollaborationDiagram(const char *clName)
virtual QCString trDefinedIn()
virtual QCString trBugList()
virtual QCString trCompounds()
virtual QCString trReferencedBy()
virtual QCString trVersion()
virtual QCString trGroup(bool first_capital, bool singular)
virtual QCString trSince()
virtual QCString trMemberTypedefDocumentation()
Definition: translator_lt.h:83
virtual QCString trImplementedInList(int numEntries)
virtual QCString trEvents()
virtual QCString trProperties()
virtual QCString trExamplesDescription()
virtual QCString trDocumentation()
virtual QCString trPackageList()
virtual QCString latexLanguageSupportCommand()
Definition: translator_lt.h:62
virtual QCString trTodoList()
virtual QCString trProtectedTypes()
virtual QCString trOverloadText()
virtual QCString trReimplementedInList(int numEntries)
CompoundType
Definition: classdef.h:63
virtual QCString trGlobal(bool first_capital, bool singular)
virtual QCString trNote()
virtual QCString trGeneratedAt(const char *date, const char *projName)
virtual QCString trSearchResults(int numDocuments)
virtual QCString trPropertyDocumentation()
virtual QCString trGotoSourceCode()
virtual QCString trFriends()
virtual QCString trPackageTypes()
virtual QCString trInvariant()
virtual QCString trMemberEnumerationDocumentation()
Definition: translator_lt.h:87
virtual QCString trCode()
virtual QCString trHierarchicalIndex()
virtual QCString trVariableDocumentation()
virtual QCString trTodo()
virtual QCString trDirIndex()
virtual QCString trRTFGeneralIndex()
virtual QCString trGraphicalHierarchy()
virtual QCString trInitialValue()
virtual QCString trRelatedPagesDescription()
virtual QCString trStaticPublicAttribs()
virtual QCString trDefines()
virtual QCString trAuthor(bool first_capital, bool singular)
virtual QCString trFileIndex()
virtual QCString trDate()
static QCString * s
Definition: config.cpp:1042
virtual QCString trThisIsTheListOfAllMembers()
virtual QCString trDir(bool first_capital, bool singular)
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
virtual QCString trRTFCharSet()
virtual QCString trNamespaces()
virtual QCString trFunctions()
virtual QCString trRelatedPages()
virtual QCString trDirReference(const char *dirName)
virtual QCString trInheritedByList(int numEntries)
virtual QCString trGotoGraphicalHierarchy()