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