Doxygen
translator_eo.h
浏览该文件的文档.
1 /******************************************************************************
2  *
3  *
4  *
5  * Copyright (C) 1997-2015 by Dimitri van Heesch.
6  *
7  * Permission to use, copy, modify, and distribute this software and its
8  * documentation under the terms of the GNU General Public License is hereby
9  * granted. No representations are made about the suitability of this software
10  * for any purpose. It is provided "as is" without express or implied warranty.
11  * See the GNU General Public License for more details.
12  *
13  * Documents produced by Doxygen are derivative works derived from the
14  * input used in their production; they are not affected by this license.
15  *
16  */
17 
18  /* Tradukita kaj ĝisdatigata de Ander Martinez. */
19 
20 #ifndef TRANSLATOR_EO_H
21 #define TRANSLATOR_EO_H
22 
23 /*!
24  When defining a translator class for the new language, follow
25  the description in the documentation. One of the steps says
26  that you should copy the translator_en.h (this) file to your
27  translator_xx.h new file. Your new language should use the
28  Translator class as the base class. This means that you need to
29  implement exactly the same (pure virtual) methods as the
30  TranslatorEnglish does. Because of this, it is a good idea to
31  start with the copy of TranslatorEnglish and replace the strings
32  one by one.
33 
34  It is not necessary to include "translator.h" or
35  "translator_adapter.h" here. The files are included in the
36  language.cpp correctly. Not including any of the mentioned
37  files frees the maintainer from thinking about whether the
38  first, the second, or both files should be included or not, and
39  why. This holds namely for localized translators because their
40  base class is changed occasionaly to adapter classes when the
41  Translator class changes the interface, or back to the
42  Translator class (by the local maintainer) when the localized
43  translator is made up-to-date again.
44 */
46 {
47  public:
48 
49  // --- Language control methods -------------------
50 
51  /*! Used for identification of the language. The identification
52  * should not be translated. It should be replaced by the name
53  * of the language in English using lower-case characters only
54  * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
55  * the identification used in language.cpp.
56  */
57  virtual QCString idLanguage()
58  { return "esperanto"; }
59 
60  /*! Used to get the LaTeX command(s) for the language support.
61  * This method should return string with commands that switch
62  * LaTeX to the desired language. For example
63  * <pre>"\\usepackage[german]{babel}\n"
64  * </pre>
65  * or
66  * <pre>"\\usepackage{polski}\n"
67  * "\\usepackage[latin2]{inputenc}\n"
68  * "\\usepackage[T1]{fontenc}\n"
69  * </pre>
70  *
71  * The English LaTeX does not use such commands. Because of this
72  * the empty string is returned in this implementation.
73  */
75  {
76  return "\\usepackage[esperanto]{babel}\n";
77  }
78 
79  virtual QCString trISOLang()
80  {
81  return "eo";
82  }
83 
84  // --- Language translation methods -------------------
85 
86  /*! used in the compound documentation before a list of related functions. */
88  { return "Rilataj Funkcioj"; }
89 
90  /*! subscript for the related functions. */
92  { return "(Atentu ke tiuj ĉi ne estas membraj funkcioj.)"; }
93 
94  /*! header that is put before the detailed description of files, classes and namespaces. */
96  { return "Detala Priskribo"; }
97 
98  /*! header that is put before the list of typedefs. */
100  { return "Dokumentado de la Membraj Tipodifinoj"; }
101 
102  /*! header that is put before the list of enumerations. */
104  { return "Dokumentado de la Membraj Enumeracioj"; }
105 
106  /*! header that is put before the list of member functions. */
108  { return "Dokumentado de la Membraj Funkcioj"; }
109 
110  /*! header that is put before the list of member attributes. */
112  {
113  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
114  {
115  return "Kampa Dokumentado";
116  }
117  else
118  {
119  return "Dokumentado de la Membraj Datumoj";
120  }
121  }
122 
123  /*! this is the text of a link put after brief descriptions. */
124  virtual QCString trMore()
125  { return "Pli..."; }
126 
127  /*! put in the class documentation */
128  virtual QCString trListOfAllMembers()
129  { return "Listo de ĉiuj membroj"; }
130 
131  /*! used as the title of the "list of all members" page of a class */
132  virtual QCString trMemberList()
133  { return "Membra Listo"; }
134 
135  /*! this is the first part of a sentence that is followed by a class name */
137  { return "Tiu ĉi estas la kompleta membraro de "; }
138 
139  /*! this is the remainder of the sentence after the class name */
141  { return ", inkluzive ĉiujn hereditajn membrojn."; }
142 
143  /*! this is put at the author sections at the bottom of man pages.
144  * parameter s is name of the project name.
145  */
146  virtual QCString trGeneratedAutomatically(const QCString &s)
147  { QCString result="Generita aŭtomate de Doxygen";
148  if (!s.isEmpty()) result+=(QCString)" por "+s;
149  result+=" el la fontkodo.";
150  return result;
151  }
152 
153  /*! put after an enum name in the list of all members */
154  virtual QCString trEnumName()
155  { return "enum nomo"; }
156 
157  /*! put after an enum value in the list of all members */
158  virtual QCString trEnumValue()
159  { return "enum valoro"; }
160 
161  /*! put after an undocumented member in the list of all members */
162  virtual QCString trDefinedIn()
163  { return "difinita en"; }
164 
165  // quick reference sections
166 
167  /*! This is put above each page as a link to the list of all groups of
168  * compounds or files (see the \\group command).
169  */
170  virtual QCString trModules()
171  { return "Moduloj"; }
172 
173  /*! This is put above each page as a link to the class hierarchy */
174  virtual QCString trClassHierarchy()
175  { return "Klasa Hierarkio"; }
176 
177  /*! This is put above each page as a link to the list of annotated classes */
178  virtual QCString trCompoundList()
179  {
180  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
181  {
182  return "Datumstruktoroj";
183  }
184  else
185  {
186  return "Klasaro";
187  }
188  }
189 
190  /*! This is put above each page as a link to the list of documented files */
191  virtual QCString trFileList()
192  { return "Dosieraro"; }
193 
194  /*! This is put above each page as a link to all members of compounds. */
195  virtual QCString trCompoundMembers()
196  {
197  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
198  {
199  return "Datumkampoj";
200  }
201  else
202  {
203  return "Klasaj membroj";
204  }
205  }
206 
207  /*! This is put above each page as a link to all members of files. */
208  virtual QCString trFileMembers()
209  {
210  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
211  {
212  return "Mallokalaĵoj";
213  }
214  else
215  {
216  return "Dosieraj Membroj";
217  }
218  }
219 
220  /*! This is put above each page as a link to all related pages. */
221  virtual QCString trRelatedPages()
222  { return "Rilataj Paĝoj"; }
223 
224  /*! This is put above each page as a link to all examples. */
225  virtual QCString trExamples()
226  { return "Ekzemploj"; }
227 
228  /*! This is put above each page as a link to the search engine. */
229  virtual QCString trSearch()
230  { return "Serĉi"; }
231 
232  /*! This is an introduction to the class hierarchy. */
234  { return "Tiu ĉi heredada listo estas plimalpli, "
235  "sed ne tute, ordigita alfabete:";
236  }
237 
238  /*! This is an introduction to the list with all files. */
239  virtual QCString trFileListDescription(bool extractAll)
240  {
241  QCString result="Jen listo de ĉiuj ";
242  if (!extractAll) result+="dokumentitaj ";
243  result+="dosieroj kun mallongaj priskriboj:";
244  return result;
245  }
246 
247  /*! This is an introduction to the annotated compound list. */
249  {
250 
251  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
252  {
253  return "Jen datumstrukturoj kun mallongaj priskriboj:";
254  }
255  else if (Config_getBool(OPTIMIZE_OUTPUT_SLICE))
256  {
257  return "Jen la klasoj kun mallongaj priskriboj:";
258  }
259  else
260  {
261  return "Jen la klasoj, strukturoj, kunigoj kaj interfacoj "
262  "kun mallongaj priskriboj:";
263  }
264  }
265 
266  /*! This is an introduction to the page with all class members. */
267  virtual QCString trCompoundMembersDescription(bool extractAll)
268  {
269  QCString result="Jen listo de ĉiuj ";
270  if (!extractAll)
271  {
272  result+="dokumentitaj ";
273  }
274  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
275  {
276  result+="strukturaj kaj kunigaj kampoj";
277  }
278  else
279  {
280  result+="klasaj membroj";
281  }
282  result+=" kun ligiloj al ";
283  if (!extractAll)
284  {
285  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
286  {
287  result+="la struktura/kuniga dokumentado por ĉiu kampo:";
288  }
289  else
290  {
291  result+="la klasa dokumentado por ĉiu membro:";
292  }
293  }
294  else
295  {
296  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
297  {
298  result+="la strukturoj/kunigoj al kiuj ili apartenas:";
299  }
300  else
301  {
302  result+="la klasoj al kiuj ili apartenas:";
303  }
304  }
305  return result;
306  }
307 
308  /*! This is an introduction to the page with all file members. */
309  virtual QCString trFileMembersDescription(bool extractAll)
310  {
311  QCString result="Jen listo de ĉiuj ";
312  if (!extractAll) result+="dokumentitaj ";
313 
314  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
315  {
316  result+="funkcioj, variabloj, difinoj, enumeracioj kaj tipodifinoj";
317  }
318  else
319  {
320  result+="dosieraj membroj";
321  }
322  result+=" kun ligiloj al ";
323  if (extractAll)
324  result+="la dosieroj al kiuj ili apartenas:";
325  else
326  result+="la dokumentado:";
327  return result;
328  }
329 
330  /*! This is an introduction to the page with the list of all examples */
332  { return "Jen listo de ĉiuj la ekzemploj:"; }
333 
334  /*! This is an introduction to the page with the list of related pages */
336  { return "Jen listo de ĉiuj rilataj dokumentadaj paĝoj:"; }
337 
338  /*! This is an introduction to the page with the list of class/file groups */
340  { return "Jen listo de ĉiuj la moduloj:"; }
341 
342  // index titles (the project name is prepended for these)
343 
344  /*! This is used in HTML as the title of index.html. */
345  virtual QCString trDocumentation()
346  { return "Dokumentado"; }
347 
348  /*! This is used in LaTeX as the title of the chapter with the
349  * index of all groups.
350  */
351  virtual QCString trModuleIndex()
352  { return "Modula Indekso"; }
353 
354  /*! This is used in LaTeX as the title of the chapter with the
355  * class hierarchy.
356  */
357  virtual QCString trHierarchicalIndex()
358  { return "Hierarkia Indekso"; }
359 
360  /*! This is used in LaTeX as the title of the chapter with the
361  * annotated compound index.
362  */
363  virtual QCString trCompoundIndex()
364  {
365  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
366  {
367  return "Datumstruktura Indekso";
368  }
369  else
370  {
371  return "Klasa Indekso";
372  }
373  }
374 
375  /*! This is used in LaTeX as the title of the chapter with the
376  * list of all files.
377  */
379  { return "Dosiera Indekso"; }
380 
381  /*! This is used in LaTeX as the title of the chapter containing
382  * the documentation of all groups.
383  */
385  { return "Modula Dokumentado"; }
386 
387  /*! This is used in LaTeX as the title of the chapter containing
388  * the documentation of all classes, structs and unions.
389  */
391  {
392  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
393  {
394  return "Datumstruktura Dokumentado";
395  }
396  else
397  {
398  return "Klasa Dokumentado";
399  }
400  }
401 
402  /*! This is used in LaTeX as the title of the chapter containing
403  * the documentation of all files.
404  */
406  { return "Dosiera Dokumentado"; }
407 
408  /*! This is used in LaTeX as the title of the chapter containing
409  * the documentation of all examples.
410  */
412  { return "Ekzempla Dokumentado"; }
413 
414  /*! This is used in LaTeX as the title of the chapter containing
415  * the documentation of all related pages.
416  */
417  virtual QCString trPageDocumentation()
418  { return "Paĝa Dokumentado"; }
419 
420  /*! This is used in LaTeX as the title of the document */
421  virtual QCString trReferenceManual()
422  { return "Referenca Manlibro"; }
423 
424  /*! This is used in the documentation of a file as a header before the
425  * list of defines
426  */
427  virtual QCString trDefines()
428  { return "Difinoj"; }
429 
430  /*! This is used in the documentation of a file as a header before the
431  * list of typedefs
432  */
433  virtual QCString trTypedefs()
434  { return "Tipdifinoj"; }
435 
436  /*! This is used in the documentation of a file as a header before the
437  * list of enumerations
438  */
439  virtual QCString trEnumerations()
440  { return "Enumeracioj"; }
441 
442  /*! This is used in the documentation of a file as a header before the
443  * list of (global) functions
444  */
445  virtual QCString trFunctions()
446  { return "Funkcioj"; }
447 
448  /*! This is used in the documentation of a file as a header before the
449  * list of (global) variables
450  */
451  virtual QCString trVariables()
452  { return "Variabloj"; }
453 
454  /*! This is used in the documentation of a file as a header before the
455  * list of (global) variables
456  */
457  virtual QCString trEnumerationValues()
458  { return "Enumeraciilo"; }
459 
460  /*! This is used in the documentation of a file before the list of
461  * documentation blocks for defines
462  */
464  { return "Difina Dokumentado"; }
465 
466  /*! This is used in the documentation of a file/namespace before the list
467  * of documentation blocks for typedefs
468  */
470  { return "Tipdifina Dokumentado"; }
471 
472  /*! This is used in the documentation of a file/namespace before the list
473  * of documentation blocks for enumeration types
474  */
476  { return "Enumeracitipa Dokumentado"; }
477 
478  /*! This is used in the documentation of a file/namespace before the list
479  * of documentation blocks for functions
480  */
482  { return "Funkcia Dokumentado"; }
483 
484  /*! This is used in the documentation of a file/namespace before the list
485  * of documentation blocks for variables
486  */
488  { return "Variabla Dokumentado"; }
489 
490  /*! This is used in the documentation of a file/namespace/group before
491  * the list of links to documented compounds
492  */
493  virtual QCString trCompounds()
494  {
495  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
496  {
497  return "Datumstrukturoj";
498  }
499  else
500  {
501  return "Klasoj";
502  }
503  }
504 
505  /*! This is used in the standard footer of each page and indicates when
506  * the page was generated
507  */
508  virtual QCString trGeneratedAt(const QCString &date,const QCString &projName)
509  {
510  QCString result=(QCString)"Generita la "+date;
511  if (!projName.isEmpty()) result+=(QCString)" por "+projName;
512  result+=(QCString)" de";
513  return result;
514  }
515 
516  /*! this text is put before a class diagram */
517  virtual QCString trClassDiagram(const QCString &clName)
518  {
519  return (QCString)"Heredada diagramo por "+clName+":";
520  }
521 
522  /*! this text is generated when the \\internal command is used. */
524  { return "Nur por ena uzado."; }
525 
526  /*! this text is generated when the \\warning command is used. */
527  virtual QCString trWarning()
528  { return "Averto"; }
529 
530  /*! this text is generated when the \\version command is used. */
531  virtual QCString trVersion()
532  { return "Versio"; }
533 
534  /*! this text is generated when the \\date command is used. */
535  virtual QCString trDate()
536  { return "Dato"; }
537 
538  /*! this text is generated when the \\return command is used. */
539  virtual QCString trReturns()
540  { return "Liveras"; }
541 
542  /*! this text is generated when the \\sa command is used. */
543  virtual QCString trSeeAlso()
544  { return "Vido ankaŭ"; }
545 
546  /*! this text is generated when the \\param command is used. */
547  virtual QCString trParameters()
548  { return "Parametroj"; }
549 
550  /*! this text is generated when the \\exception command is used. */
551  virtual QCString trExceptions()
552  { return "Esceptoj"; }
553 
554  /*! this text is used in the title page of a LaTeX document. */
555  virtual QCString trGeneratedBy()
556  { return "Generita de"; }
557 
558 //////////////////////////////////////////////////////////////////////////
559 // new since 0.49-990307
560 //////////////////////////////////////////////////////////////////////////
561 
562  /*! used as the title of page containing all the index of all namespaces. */
563  virtual QCString trNamespaceList()
564  { return "Nomspacaro"; }
565 
566  /*! used as an introduction to the namespace list */
567  virtual QCString trNamespaceListDescription(bool extractAll)
568  {
569  QCString result="Jen listo de ĉiuj ";
570  if (!extractAll) result+="dokumentitaj ";
571  result+="nomspacoj kun mallongaj priskriboj:";
572  return result;
573  }
574 
575  /*! used in the class documentation as a header before the list of all
576  * friends of a class
577  */
578  virtual QCString trFriends()
579  { return "Amikoj"; }
580 
581 //////////////////////////////////////////////////////////////////////////
582 // new since 0.49-990405
583 //////////////////////////////////////////////////////////////////////////
584 
585  /*! used in the class documentation as a header before the list of all
586  * related classes
587  */
589  { return "Dokumentado pri amikoj kaj rilatitaj funkcioj"; }
590 
591 //////////////////////////////////////////////////////////////////////////
592 // new since 0.49-990425
593 //////////////////////////////////////////////////////////////////////////
594 
595  /*! used as the title of the HTML page of a class/struct/union */
596  virtual QCString trCompoundReference(const QCString &clName,
597  ClassDef::CompoundType compType,
598  bool isTemplate)
599  {
600  QCString result="Referenco de la ";
601  if (isTemplate) result+=" ŝablono de la ";
602  switch(compType)
603  {
604  case ClassDef::Class: result+="klaso "; break;
605  case ClassDef::Struct: result+="strukturo "; break;
606  case ClassDef::Union: result+="kunigo "; break;
607  case ClassDef::Interface: result+="interfaco "; break;
608  case ClassDef::Protocol: result+="protokolo "; break;
609  case ClassDef::Category: result+="kategorio "; break;
610  case ClassDef::Exception: result+="escepto "; break;
611  default: break;
612  }
613  result+=(QCString)clName;
614  return result;
615  }
616 
617  /*! used as the title of the HTML page of a file */
618  virtual QCString trFileReference(const QCString &fileName)
619  {
620  QCString result=fileName;
621  result+=" Dosiera referenco";
622  return result;
623  }
624 
625  /*! used as the title of the HTML page of a namespace */
626  virtual QCString trNamespaceReference(const QCString &namespaceName)
627  {
628  QCString result=namespaceName;
629  result+=" Nomspaca referenco";
630  return result;
631  }
632 
634  { return "Publikaj Membraj Funkcioj"; }
635  virtual QCString trPublicSlots()
636  { return "Pubikaj Ingoj"; }
637  virtual QCString trSignals()
638  { return "Signaloj"; }
640  { return "Statikaj Publikaj Membraj Funkcioj"; }
642  { return "Protektitaj Membraj Funkcioj"; }
643  virtual QCString trProtectedSlots()
644  { return "Protektitaj Ingoj"; }
646  { return "Statikaj Protektitaj Membraj Funkcioj"; }
647  virtual QCString trPrivateMembers()
648  { return "Privataj Membraj Funkcioj"; }
649  virtual QCString trPrivateSlots()
650  { return "Privataj Ingoj"; }
652  { return "Statikaj Privataj Membraj Funkcioj"; }
653 
654  /*! this function is used to produce a comma-separated list of items.
655  * use generateMarker(i) to indicate where item i should be put.
656  */
657  virtual QCString trWriteList(int numEntries)
658  {
659  QCString result;
660  int i;
661  // the inherits list contain `numEntries' classes
662  for (i=0;i<numEntries;i++)
663  {
664  // use generateMarker to generate placeholders for the class links!
665  result+=generateMarker(i); // generate marker for entry i in the list
666  // (order is left to right)
667 
668  if (i!=numEntries-1) // not the last entry, so we need a separator
669  {
670  if (i<numEntries-2) // not the fore last entry
671  result+=", ";
672  else // the fore last entry
673  result+=", kaj ";
674  }
675  }
676  return result;
677  }
678 
679  /*! used in class documentation to produce a list of base classes,
680  * if class diagrams are disabled.
681  */
682  virtual QCString trInheritsList(int numEntries)
683  {
684  return "Heredas de "+trWriteList(numEntries)+".";
685  }
686 
687  /*! used in class documentation to produce a list of super classes,
688  * if class diagrams are disabled.
689  */
690  virtual QCString trInheritedByList(int numEntries)
691  {
692  return "Heredita de "+trWriteList(numEntries)+".";
693  }
694 
695  /*! used in member documentation blocks to produce a list of
696  * members that are hidden by this one.
697  */
698  virtual QCString trReimplementedFromList(int numEntries)
699  {
700  return "Rerealigita el "+trWriteList(numEntries)+".";
701  }
702 
703  /*! used in member documentation blocks to produce a list of
704  * all member that overwrite the implementation of this member.
705  */
706  virtual QCString trReimplementedInList(int numEntries)
707  {
708  return "Rerealigita en "+trWriteList(numEntries)+".";
709  }
710 
711  /*! This is put above each page as a link to all members of namespaces. */
712  virtual QCString trNamespaceMembers()
713  { return "Nomspacaj Membroj"; }
714 
715  /*! This is an introduction to the page with all namespace members */
716  virtual QCString trNamespaceMemberDescription(bool extractAll)
717  {
718  QCString result="Jen listo de ĉiuj ";
719  if (!extractAll) result+="dokumentitaj ";
720  result+="nomspacaj membroj kun ligiloj al ";
721  if (extractAll)
722  result+="la nomspaca dokumentado de ĉiu membro:";
723  else
724  result+="la nomspacoj al kiuj ili apartenas:";
725  return result;
726  }
727  /*! This is used in LaTeX as the title of the chapter with the
728  * index of all namespaces.
729  */
730  virtual QCString trNamespaceIndex()
731  { return "Nomspaca Indekso"; }
732 
733  /*! This is used in LaTeX as the title of the chapter containing
734  * the documentation of all namespaces.
735  */
737  { return "Nomspaca Dokumentado"; }
738 
739 //////////////////////////////////////////////////////////////////////////
740 // new since 0.49-990522
741 //////////////////////////////////////////////////////////////////////////
742 
743  /*! This is used in the documentation before the list of all
744  * namespaces in a file.
745  */
746  virtual QCString trNamespaces()
747  { return "Nomspacoj"; }
748 
749 //////////////////////////////////////////////////////////////////////////
750 // new since 0.49-990728
751 //////////////////////////////////////////////////////////////////////////
752 
753  /*! This is put at the bottom of a class documentation page and is
754  * followed by a list of files that were used to generate the page.
755  */
757  bool single)
758  { // single is true implies a single file
759  QCString result=(QCString)"La dokumentado por tiu ĉi ";
760  switch(compType)
761  {
762  case ClassDef::Class: result+="klaso"; break;
763  case ClassDef::Struct: result+="strukturo"; break;
764  case ClassDef::Union: result+="kunigo"; break;
765  case ClassDef::Interface: result+="interfaco"; break;
766  case ClassDef::Protocol: result+="protokolo"; break;
767  case ClassDef::Category: result+="kategorio"; break;
768  case ClassDef::Exception: result+="escepto"; break;
769  default: break;
770  }
771  result+=" generitas el la ";
772  if (single) result+="sekva dosiero:";
773  else result+="sekvaj dosieroj:";
774  return result;
775  }
776 
777 //////////////////////////////////////////////////////////////////////////
778 // new since 0.49-990901
779 //////////////////////////////////////////////////////////////////////////
780 
781  /*! This is used as the heading text for the retval command. */
782  virtual QCString trReturnValues()
783  { return "Liveraĵoj"; }
784 
785  /*! This is in the (quick) index as a link to the main page (index.html)
786  */
787  virtual QCString trMainPage()
788  { return "Ĉefa Paĝo"; }
789 
790  /*! This is used in references to page that are put in the LaTeX
791  * documentation. It should be an abbreviation of the word page.
792  */
793  virtual QCString trPageAbbreviation()
794  { return "p."; }
795 
796 //////////////////////////////////////////////////////////////////////////
797 // new since 0.49-991003
798 //////////////////////////////////////////////////////////////////////////
799 
801  {
802  return "Difinita sur la lineo @0 de la dosiero @1.";
803  }
805  {
806  return "Difinita en la dosiero @0.";
807  }
808 
809 //////////////////////////////////////////////////////////////////////////
810 // new since 0.49-991205
811 //////////////////////////////////////////////////////////////////////////
812 
813  virtual QCString trDeprecated()
814  {
815  return "Evitinda";
816  }
817 
818 //////////////////////////////////////////////////////////////////////////
819 // new since 1.0.0
820 //////////////////////////////////////////////////////////////////////////
821 
822  /*! this text is put before a collaboration diagram */
823  virtual QCString trCollaborationDiagram(const QCString &clName)
824  {
825  return (QCString)"Kunlaborada diagramo por "+clName+":";
826  }
827  /*! this text is put before an include dependency graph */
828  virtual QCString trInclDepGraph(const QCString &fName)
829  {
830  return (QCString)"Inkluzivaĵa dependeca diagramo por "+fName+":";
831  }
832  /*! header that is put before the list of constructor/destructors. */
834  {
835  return "Konstruila kaj Detruila Dokumentado";
836  }
837  /*! Used in the file documentation to point to the corresponding sources. */
839  {
840  return "Iri al la fontkodo de tiu ĉi dosiero.";
841  }
842  /*! Used in the file sources to point to the corresponding documentation. */
844  {
845  return "Iri al la dokumentado de tiu ĉi dosiero.";
846  }
847  /*! Text for the \\pre command */
849  {
850  return "Antaŭkondiĉo";
851  }
852  /*! Text for the \\post command */
854  {
855  return "Postkondiĉo";
856  }
857  /*! Text for the \\invariant command */
859  {
860  return "Malvariaĵo";
861  }
862  /*! Text shown before a multi-line variable/enum initialization */
864  {
865  return "Komenca valoro:";
866  }
867  /*! Text used the source code in the file index */
868  virtual QCString trCode()
869  {
870  return "kodo";
871  }
873  {
874  return "Grafika Klasa Hierarkio";
875  }
877  {
878  return "Iri al la grafika klasa hierarkio";
879  }
881  {
882  return "Iri al la teksta klasa hierarkio";
883  }
884  virtual QCString trPageIndex()
885  {
886  return "Paĝa Indekso";
887  }
888 
889 //////////////////////////////////////////////////////////////////////////
890 // new since 1.1.0
891 //////////////////////////////////////////////////////////////////////////
892 
893  virtual QCString trNote()
894  {
895  return "Noto";
896  }
897  virtual QCString trPublicTypes()
898  {
899  return "Publikaj Tipoj";
900  }
901  virtual QCString trPublicAttribs()
902  {
903  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
904  {
905  return "Datumkampoj";
906  }
907  else
908  {
909  return "Publikaj Atributoj";
910  }
911  }
913  {
914  return "Statikaj Publikaj Atributoj";
915  }
917  {
918  return "Protektitaj Tipoj";
919  }
920  virtual QCString trProtectedAttribs()
921  {
922  return "Protektitaj Atributoj";
923  }
925  {
926  return "Statikaj Protektitaj Atributoj";
927  }
928  virtual QCString trPrivateTypes()
929  {
930  return "Privataj Tipoj";
931  }
932  virtual QCString trPrivateAttribs()
933  {
934  return "Privataj Atributoj";
935  }
937  {
938  return "Statikaj Privataj Atributoj";
939  }
940 
941 //////////////////////////////////////////////////////////////////////////
942 // new since 1.1.3
943 //////////////////////////////////////////////////////////////////////////
944 
945  /*! Used as a marker that is put before a \\todo item */
946  virtual QCString trTodo()
947  {
948  return "Farendaĵo";
949  }
950  /*! Used as the header of the todo list */
952  {
953  return "Farendaĵaro";
954  }
955 
956 //////////////////////////////////////////////////////////////////////////
957 // new since 1.1.4
958 //////////////////////////////////////////////////////////////////////////
959 
960  virtual QCString trReferencedBy()
961  {
962  return "Referencita de";
963  }
964  virtual QCString trRemarks()
965  {
966  return "Rimarkoj";
967  }
968  virtual QCString trAttention()
969  {
970  return "Atentu";
971  }
972  virtual QCString trInclByDepGraph()
973  {
974  return "Tiu ĉi diagramo montras kiuj dosieroj rekte aŭ malrekte "
975  "inkluzivas tiun ĉi dosieron:";
976  }
977  virtual QCString trSince()
978  {
979  return "De";
980  }
981 
982 //////////////////////////////////////////////////////////////////////////
983 // new since 1.1.5
984 //////////////////////////////////////////////////////////////////////////
985 
986  /*! title of the graph legend page */
988  {
989  return "Diagrama Klarigeto";
990  }
991  /*! page explaining how the dot graph's should be interpreted
992  * The %A in the text below are to prevent link to classes called "A".
993  */
994  virtual QCString trLegendDocs()
995  {
996  return
997  "Tiu ĉi paĝo klarigas kiel interpreti la diagramojn generitajn "
998  "de doxygen.<p>\n"
999  "Konsideru la sekvan ekzemplon:\n"
1000  "\\code\n"
1001  "/*! Nevidebla klaso pro trunkado */\n"
1002  "class Invisible { };\n\n"
1003  "/*! Trunkita klaso, hereda rilato kaŝiĝas */\n"
1004  "class Truncated : public Invisible { };\n\n"
1005  "/* Klaso ne dokumentita per komentoj de doxygen */\n"
1006  "class Undocumented { };\n\n"
1007  "/*! Klaso de kiu herediĝas per publika heredado */\n"
1008  "class PublicBase : public Truncated { };\n\n"
1009  "/*! Ŝablona klaso */\n"
1010  "template<class T> class Templ { };\n\n"
1011  "/*! Klaso de kiu herediĝas per protektita heredado */\n"
1012  "class ProtectedBase { };\n\n"
1013  "/*! Klaso de kiu herediĝas per privata heredado */\n"
1014  "class PrivateBase { };\n\n"
1015  "/*! Klaso uzata de la klaso Inherited */\n"
1016  "class Used { };\n\n"
1017  "/*! Supra klaso kiu heredas de kelkaj aliaj klasoj */\n"
1018  "class Inherited : public PublicBase,\n"
1019  " protected ProtectedBase,\n"
1020  " private PrivateBase,\n"
1021  " public Undocumented,\n"
1022  " public Templ<int>\n"
1023  "{\n"
1024  " private:\n"
1025  " Used *m_usedClass;\n"
1026  "};\n"
1027  "\\endcode\n"
1028  "Tio ĉi liveros la sekvan diagramon:"
1029  "<p><center><img alt=\"\" src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1030  "<p>\n"
1031  "La skatoloj de la supra diagramo havas la sekvajn signifojn:\n"
1032  "<ul>\n"
1033  "<li>%Plene griza skatolo reprezentas la strukturon aŭ klason "
1034  "kies diagramo generiĝis.\n"
1035  "<li>%Skatolo kun nigra bordero montras dokumentitan strukturon aŭ klason.\n"
1036  "<li>%Skatolo kun griza bordero montras nedokumentitan strukturon aŭ klason.\n"
1037  "<li>%Skatolo kun ruĝa bordero montras dokumentitan strukturon aŭ klason por "
1038  "kiu ne ĉiuj heredadoj/enhavoj montriĝas. %Diagramo estas trunkota "
1039  "se ĝi ne adaptiĝas en la donitajn limojn.\n"
1040  "</ul>\n"
1041  "La sagoj havas la sekvajn signifojn:\n"
1042  "<ul>\n"
1043  "<li>%Malhelblua sago uzatas por montri publika heredado "
1044  "inter du klasoj.\n"
1045  "<li>%Malhelverda sago uzatas por protektita heredado.\n"
1046  "<li>%Malhelruĝa sago uzatas por privata heredado.\n"
1047  "<li>%Purpura streka sago uzatas se klaso enhavatas aŭ uzatas "
1048  "de alia klaso. La sago estas etikedatas kun la variablo(j) "
1049  "tra kiu la montrita klaso aŭ strukturo estas alirebla.\n"
1050  "<li>%Flava streka sago montras rilato inter ŝablona apero kaj "
1051  "la ŝablona klaso el kiu ĝi realigitas. La sago etikeditas kun "
1052  "la parametroj de la ŝablona apero.\n"
1053  "</ul>\n";
1054  }
1055  /*! text for the link to the legend page */
1056  virtual QCString trLegend()
1057  {
1058  return "klarigeto";
1059  }
1060 
1061 //////////////////////////////////////////////////////////////////////////
1062 // new since 1.2.0
1063 //////////////////////////////////////////////////////////////////////////
1064 
1065  /*! Used as a marker that is put before a test item */
1066  virtual QCString trTest()
1067  {
1068  return "Testo";
1069  }
1070  /*! Used as the header of the test list */
1072  {
1073  return "Testa Listo";
1074  }
1075 
1076 //////////////////////////////////////////////////////////////////////////
1077 // new since 1.2.2
1078 //////////////////////////////////////////////////////////////////////////
1079 
1080  /*! Used as a section header for IDL properties */
1082  {
1083  return "Atributoj";
1084  }
1085  /*! Used as a section header for IDL property documentation */
1087  {
1088  return "Atributa Dokumentado";
1089  }
1090 
1091 //////////////////////////////////////////////////////////////////////////
1092 // new since 1.2.4
1093 //////////////////////////////////////////////////////////////////////////
1094 
1095  /*! Used for Java classes in the summary section of Java packages */
1097  {
1098  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1099  {
1100  return "Datumstrukturoj";
1101  }
1102  else
1103  {
1104  return "Klasoj";
1105  }
1106  }
1107  /*! Used as the title of a Java package */
1108  virtual QCString trPackage(const QCString &name)
1109  {
1110  return (QCString)"Pakaĵo "+name;
1111  }
1112  /*! Title of the package index page */
1113  virtual QCString trPackageList()
1114  {
1115  return "Pakaĵa Listo";
1116  }
1117  /*! The description of the package index page */
1119  {
1120  return "Jen listo de pakaĵoj kun mallongaj priskriboj (se ekzistas):";
1121  }
1122  /*! The link name in the Quick links header for each page */
1124  {
1125  return "Pakaĵoj";
1126  }
1127  /*! Text shown before a multi-line define */
1129  {
1130  return "Valoro:";
1131  }
1132 
1133 //////////////////////////////////////////////////////////////////////////
1134 // new since 1.2.5
1135 //////////////////////////////////////////////////////////////////////////
1136 
1137  /*! Used as a marker that is put before a \\bug item */
1138  virtual QCString trBug()
1139  {
1140  return "Cimo";
1141  }
1142  /*! Used as the header of the bug list */
1144  {
1145  return "Cima Listo";
1146  }
1147 
1148 //////////////////////////////////////////////////////////////////////////
1149 // new since 1.2.6
1150 //////////////////////////////////////////////////////////////////////////
1151 
1152  /*! Used as ansicpg for RTF file
1153  *
1154  * The following table shows the correlation of Charset name, Charset Value and
1155  * <pre>
1156  * Codepage number:
1157  * Charset Name Charset Value(hex) Codepage number
1158  * ------------------------------------------------------
1159  * DEFAULT_CHARSET 1 (x01)
1160  * SYMBOL_CHARSET 2 (x02)
1161  * OEM_CHARSET 255 (xFF)
1162  * ANSI_CHARSET 0 (x00) 1252
1163  * RUSSIAN_CHARSET 204 (xCC) 1251
1164  * EE_CHARSET 238 (xEE) 1250
1165  * GREEK_CHARSET 161 (xA1) 1253
1166  * TURKISH_CHARSET 162 (xA2) 1254
1167  * BALTIC_CHARSET 186 (xBA) 1257
1168  * HEBREW_CHARSET 177 (xB1) 1255
1169  * ARABIC _CHARSET 178 (xB2) 1256
1170  * SHIFTJIS_CHARSET 128 (x80) 932
1171  * HANGEUL_CHARSET 129 (x81) 949
1172  * GB2313_CHARSET 134 (x86) 936
1173  * CHINESEBIG5_CHARSET 136 (x88) 950
1174  * </pre>
1175  *
1176  */
1177  virtual QCString trRTFansicp()
1178  {
1179  return "";
1180  }
1181 
1182 
1183  /*! Used as ansicpg for RTF fcharset
1184  * \see trRTFansicp() for a table of possible values.
1185  */
1186  virtual QCString trRTFCharSet()
1187  {
1188  return "1";
1189  }
1190 
1191  /*! Used as header RTF general index */
1193  {
1194  return "Indekso";
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 trClass(bool first_capital, bool singular)
1202  {
1203  QCString result((first_capital ? "Klaso" : "klaso"));
1204  if (!singular) result+="j";
1205  return result;
1206  }
1208  /*! This is used for translation of the word that will possibly
1209  * be followed by a single name or by a list of names
1210  * of the category.
1211  */
1212  virtual QCString trFile(bool first_capital, bool singular)
1213  {
1214  QCString result((first_capital ? "Dosiero" : "dosiero"));
1215  if (!singular) result+="j";
1216  return result;
1217  }
1218 
1219  /*! This is used for translation of the word that will possibly
1220  * be followed by a single name or by a list of names
1221  * of the category.
1222  */
1223  virtual QCString trNamespace(bool first_capital, bool singular)
1224  {
1225  QCString result((first_capital ? "Nomspaco" : "nomspaco"));
1226  if (!singular) result+="j";
1227  return result;
1228  }
1229 
1230  /*! This is used for translation of the word that will possibly
1231  * be followed by a single name or by a list of names
1232  * of the category.
1233  */
1234  virtual QCString trGroup(bool first_capital, bool singular)
1235  {
1236  QCString result((first_capital ? "Grupo" : "grupo"));
1237  if (!singular) result+="j";
1238  return result;
1239  }
1240 
1241  /*! This is used for translation of the word that will possibly
1242  * be followed by a single name or by a list of names
1243  * of the category.
1244  */
1245  virtual QCString trPage(bool first_capital, bool singular)
1246  {
1247  QCString result((first_capital ? "Paĝo" : "paĝo"));
1248  if (!singular) result+="j";
1249  return result;
1250  }
1251 
1252  /*! This is used for translation of the word that will possibly
1253  * be followed by a single name or by a list of names
1254  * of the category.
1255  */
1256  virtual QCString trMember(bool first_capital, bool singular)
1257  {
1258  QCString result((first_capital ? "Membro" : "membro"));
1259  if (!singular) result+="j";
1260  return result;
1261  }
1262 
1263  /*! This is used for translation of the word that will possibly
1264  * be followed by a single name or by a list of names
1265  * of the category.
1266  */
1267  virtual QCString trGlobal(bool first_capital, bool singular)
1268  {
1269  QCString result((first_capital ? "Mallokalaĵo" : "mallokalaĵo"));
1270  if (!singular) result+="j";
1271  return result;
1272  }
1273 
1274 //////////////////////////////////////////////////////////////////////////
1275 // new since 1.2.7
1276 //////////////////////////////////////////////////////////////////////////
1277 
1278  /*! This text is generated when the \\author command is used and
1279  * for the author section in man pages. */
1280  virtual QCString trAuthor(bool first_capital, bool singular)
1281  {
1282  QCString result((first_capital ? "Aŭtoro" : "aŭtoro"));
1283  if (!singular) result+="j";
1284  return result;
1285  }
1286 
1287 //////////////////////////////////////////////////////////////////////////
1288 // new since 1.2.11
1289 //////////////////////////////////////////////////////////////////////////
1290 
1291  /*! This text is put before the list of members referenced by a member
1292  */
1293  virtual QCString trReferences()
1294  {
1295  return "Referencoj";
1296  }
1297 
1298 //////////////////////////////////////////////////////////////////////////
1299 // new since 1.2.13
1300 //////////////////////////////////////////////////////////////////////////
1301 
1302  /*! used in member documentation blocks to produce a list of
1303  * members that are implemented by this one.
1304  */
1305  virtual QCString trImplementedFromList(int numEntries)
1306  {
1307  return "Realigas "+trWriteList(numEntries)+".";
1308  }
1309 
1310  /*! used in member documentation blocks to produce a list of
1311  * all members that implement this abstract member.
1312  */
1313  virtual QCString trImplementedInList(int numEntries)
1314  {
1315  return "Realigita en "+trWriteList(numEntries)+".";
1316  }
1317 
1318 //////////////////////////////////////////////////////////////////////////
1319 // new since 1.2.16
1320 //////////////////////////////////////////////////////////////////////////
1321 
1322  /*! used in RTF documentation as a heading for the Table
1323  * of Contents.
1324  */
1325  virtual QCString trRTFTableOfContents()
1326  {
1327  return "Enhava Tabelo";
1328  }
1329 
1330 //////////////////////////////////////////////////////////////////////////
1331 // new since 1.2.17
1332 //////////////////////////////////////////////////////////////////////////
1333 
1334  /*! Used as the header of the list of item that have been
1335  * flagged deprecated
1336  */
1337  virtual QCString trDeprecatedList()
1338  {
1339  return "Evitindaĵa Listo";
1340  }
1341 
1342 //////////////////////////////////////////////////////////////////////////
1343 // new since 1.2.18
1344 //////////////////////////////////////////////////////////////////////////
1345 
1346  /*! Used as a header for declaration section of the events found in
1347  * a C# program
1348  */
1349  virtual QCString trEvents()
1350  {
1351  return "Eventoj";
1352  }
1353  /*! Header used for the documentation section of a class' events. */
1354  virtual QCString trEventDocumentation()
1355  {
1356  return "Eventa Dokumentado";
1357  }
1358 
1359 //////////////////////////////////////////////////////////////////////////
1360 // new since 1.3
1361 //////////////////////////////////////////////////////////////////////////
1362 
1363  /*! Used as a heading for a list of Java class types with package scope.
1364  */
1365  virtual QCString trPackageTypes()
1366  {
1367  return "Pakaĵaj Tipoj";
1368  }
1369  /*! Used as a heading for a list of Java class functions with package
1370  * scope.
1371  */
1372  virtual QCString trPackageMembers()
1373  {
1374  return "Pakaĵaj Funkcioj";
1375  }
1376  /*! Used as a heading for a list of static Java class functions with
1377  * package scope.
1378  */
1380  {
1381  return "Statikaj Pakaĵaj Funkcioj";
1382  }
1383  /*! Used as a heading for a list of Java class variables with package
1384  * scope.
1385  */
1386  virtual QCString trPackageAttribs()
1387  {
1388  return "Pakaĵaj Atributoj";
1389  }
1390  /*! Used as a heading for a list of static Java class variables with
1391  * package scope.
1392  */
1394  {
1395  return "Statikaj Pakaĵaj Atributoj";
1396  }
1397 
1398 //////////////////////////////////////////////////////////////////////////
1399 // new since 1.3.1
1400 //////////////////////////////////////////////////////////////////////////
1402  /*! Used in the quick index of a class/file/namespace member list page
1403  * to link to the unfiltered list of all members.
1404  */
1405  virtual QCString trAll()
1406  {
1407  return "Ĉiuj";
1408  }
1409  /*! Put in front of the call graph for a function. */
1410  virtual QCString trCallGraph()
1411  {
1412  return "Jen la vokdiagramo por tiu ĉi funkcio:";
1413  }
1414 
1415 //////////////////////////////////////////////////////////////////////////
1416 // new since 1.3.3
1417 //////////////////////////////////////////////////////////////////////////
1418 
1419  /*! This string is used as the title for the page listing the search
1420  * results.
1421  */
1422  virtual QCString trSearchResultsTitle()
1423  {
1424  return "Serĉaj Rezultoj";
1425  }
1426  /*! This string is put just before listing the search results. The
1427  * text can be different depending on the number of documents found.
1428  * Inside the text you can put the special marker $num to insert
1429  * the number representing the actual number of search results.
1430  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1431  * value 2 represents 2 or more matches. HTML markup is allowed inside
1432  * the returned string.
1433  */
1434  virtual QCString trSearchResults(int numDocuments)
1435  {
1436  if (numDocuments==0)
1437  {
1438  return "Pardonu, nenio dokumento kongruas vian peton.";
1439  }
1440  else if (numDocuments==1)
1441  {
1442  return "Trafita <b>unu</b> dokumenton kongruantan vian peton.";
1443  }
1444  else
1445  {
1446  return "Trafitaj <b>$num</b> dokumentojn kongruantajn vian peton. "
1447  "Montriĝos plej bonaj kongruoj unue.";
1448  }
1449  }
1450  /*! This string is put before the list of matched words, for each search
1451  * result. What follows is the list of words that matched the query.
1452  */
1453  virtual QCString trSearchMatches()
1454  {
1455  return "Kongruoj:";
1456  }
1457 
1458 //////////////////////////////////////////////////////////////////////////
1459 // new since 1.3.8
1460 //////////////////////////////////////////////////////////////////////////
1461 
1462  /*! This is used in HTML as the title of page with source code for file filename
1463  */
1464  virtual QCString trSourceFile(QCString& filename)
1465  {
1466  return filename + " Fonta Dosiero";
1467  }
1469 //////////////////////////////////////////////////////////////////////////
1470 // new since 1.3.9
1471 //////////////////////////////////////////////////////////////////////////
1472 
1473  /*! This is used as the name of the chapter containing the directory
1474  * hierarchy.
1475  */
1476  virtual QCString trDirIndex()
1477  { return "Dosieruja Hierarkio"; }
1478 
1479  /*! This is used as the name of the chapter containing the documentation
1480  * of the directories.
1481  */
1482  virtual QCString trDirDocumentation()
1483  { return "Dosieruja Dokumentado"; }
1484 
1485  /*! This is used as the title of the directory index and also in the
1486  * Quick links of an HTML page, to link to the directory hierarchy.
1487  */
1488  virtual QCString trDirectories()
1489  { return "Dosierujoj"; }
1490 
1491  /*! This returns a sentences that introduces the directory hierarchy.
1492  * and the fact that it is sorted alphabetically per level
1493  */
1494  virtual QCString trDirDescription()
1495  { return "Tiu ĉi dosieruja hierarkio estas plimalpli, "
1496  "sed ne tute, ordigita alfabete:";
1497  }
1498 
1499  /*! This returns the title of a directory page. The name of the
1500  * directory is passed via \a dirName.
1501  */
1502  virtual QCString trDirReference(const QCString &dirName)
1503  { QCString result=dirName; result+=" Dosieruja Referenco"; return result; }
1504 
1505  /*! This returns the word directory with or without starting capital
1506  * (\a first_capital) and in sigular or plural form (\a singular).
1507  */
1508  virtual QCString trDir(bool first_capital, bool singular)
1509  {
1510  QCString result((first_capital ? "Dosierujo" : "dosierujo"));
1511  if (!singular) result+="j";
1512  return result;
1513  }
1514 
1515 //////////////////////////////////////////////////////////////////////////
1516 // new since 1.4.1
1517 //////////////////////////////////////////////////////////////////////////
1518 
1519  /*! This text is added to the documentation when the \\overload command
1520  * is used for a overloaded function.
1521  */
1522  virtual QCString trOverloadText()
1523  {
1524  return "Tiu ĉi estas superŝarĝita membra funkcio, "
1525  "donita por faciligo. Ĝi nur malsamas de la supra "
1526  "funkcio nur pro la argumento(j) kiujn ili akceptas.";
1527  }
1528 
1529 //////////////////////////////////////////////////////////////////////////
1530 // new since 1.4.6
1531 //////////////////////////////////////////////////////////////////////////
1532 
1533  /*! This is used to introduce a caller (or called-by) graph */
1534  virtual QCString trCallerGraph()
1535  {
1536  return "Jen la vokdiagramo por tiu ĉi funkcio:";
1537  }
1538 
1539  /*! This is used in the documentation of a file/namespace before the list
1540  * of documentation blocks for enumeration values
1541  */
1543  { return "Enumeraciila Dokumentado"; }
1544 
1545 //////////////////////////////////////////////////////////////////////////
1546 // new since 1.5.4 (mainly for Fortran)
1547 //////////////////////////////////////////////////////////////////////////
1548 
1549  /*! header that is put before the list of member subprograms (Fortran). */
1551  { return "Dokumentado de Membraj Funkcioj/Subrutinoj"; }
1552 
1553  /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1555  { return "Datumtipa Listo"; }
1556 
1557  /*! This is put above each page as a link to all members of compounds (Fortran). */
1559  { return "Datumkampoj"; }
1560 
1561  /*! This is an introduction to the annotated compound list (Fortran). */
1563  { return "Jen la datumtipoj kun mallongaj priskriboj:"; }
1564 
1565  /*! This is an introduction to the page with all data types (Fortran). */
1566  virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
1567  {
1568  QCString result="Jen listo de ĉiuj ";
1569  if (!extractAll)
1570  {
1571  result+="dokumentitaj ";
1572  }
1573  result+="datumtipaj membroj";
1574  result+=" kun ligiloj al ";
1575  if (!extractAll)
1576  {
1577  result+="la datumstruktura dokumentado de ĉiu membro";
1578  }
1579  else
1580  {
1581  result+="la datumtipoj al kiuj ili apartenas:";
1582  }
1583  return result;
1584  }
1585 
1586  /*! This is used in LaTeX as the title of the chapter with the
1587  * annotated compound index (Fortran).
1588  */
1590  { return "Datumtipa Indekso"; }
1591 
1592  /*! This is used in LaTeX as the title of the chapter containing
1593  * the documentation of all data types (Fortran).
1594  */
1595  virtual QCString trTypeDocumentation()
1596  { return "Datumtipa Dokumentado"; }
1597 
1598  /*! This is used in the documentation of a file as a header before the
1599  * list of (global) subprograms (Fortran).
1600  */
1601  virtual QCString trSubprograms()
1602  { return "Funkcioj/Subrutinoj"; }
1603 
1604  /*! This is used in the documentation of a file/namespace before the list
1605  * of documentation blocks for subprograms (Fortran)
1606  */
1608  { return "Funkcia/Subrutina Dokumentado"; }
1609 
1610  /*! This is used in the documentation of a file/namespace/group before
1611  * the list of links to documented compounds (Fortran)
1612  */
1613  virtual QCString trDataTypes()
1614  { return "Datumtipoj"; }
1615 
1616  /*! used as the title of page containing all the index of all modules (Fortran). */
1617  virtual QCString trModulesList()
1618  { return "Modula Listo"; }
1619 
1620  /*! used as an introduction to the modules list (Fortran) */
1621  virtual QCString trModulesListDescription(bool extractAll)
1622  {
1623  QCString result="Jen listo de ĉiuj ";
1624  if (!extractAll) result+="dokumentitaj ";
1625  result+="moduloj kun mallongaj priskriboj:";
1626  return result;
1627  }
1629  /*! used as the title of the HTML page of a module/type (Fortran) */
1630  virtual QCString trCompoundReferenceFortran(const QCString &clName,
1631  ClassDef::CompoundType compType,
1632  bool isTemplate)
1633  {
1634  QCString result="Referenco de la ";
1635  if (isTemplate) result+=" ŝablono de la ";
1636  switch(compType)
1637  {
1638  case ClassDef::Class: result+="modulo "; break;
1639  case ClassDef::Struct: result+="tipo "; break;
1640  case ClassDef::Union: result+="kunigo "; break;
1641  case ClassDef::Interface: result+="interfaco "; break;
1642  case ClassDef::Protocol: result+="protokolo "; break;
1643  case ClassDef::Category: result+="kategorio "; break;
1644  case ClassDef::Exception: result+="escepto "; break;
1645  default: break;
1646  }
1647  result+=(QCString)clName;
1648  return result;
1649  }
1650  /*! used as the title of the HTML page of a module (Fortran) */
1651  virtual QCString trModuleReference(const QCString &namespaceName)
1652  {
1653  QCString result=namespaceName;
1654  result+=" Modula Referenco";
1655  return result;
1656  }
1657 
1658  /*! This is put above each page as a link to all members of modules. (Fortran) */
1659  virtual QCString trModulesMembers()
1660  { return "Modulaj Membroj"; }
1661 
1662  /*! This is an introduction to the page with all modules members (Fortran) */
1663  virtual QCString trModulesMemberDescription(bool extractAll)
1664  {
1665  QCString result="Jen listo de ĉiuj ";
1666  if (!extractAll) result+="dokumentitaj ";
1667  result+="modulaj membroj kun ligiloj al la ";
1668  if (extractAll)
1669  {
1670  result+="modula dokumentado de ĉiu membro:";
1671  }
1672  else
1673  {
1674  result+="moduloj al kiuj ili apartenas:";
1675  }
1676  return result;
1677  }
1679  /*! This is used in LaTeX as the title of the chapter with the
1680  * index of all modules (Fortran).
1681  */
1682  virtual QCString trModulesIndex()
1683  { return "Indekso de Moduloj"; }
1684 
1685  /*! This is used for translation of the word that will possibly
1686  * be followed by a single name or by a list of names
1687  * of the category.
1688  */
1689  virtual QCString trModule(bool first_capital, bool singular)
1690  {
1691  QCString result((first_capital ? "Modulo" : "modulo"));
1692  if (!singular) result+="j";
1693  return result;
1694  }
1695  /*! This is put at the bottom of a module documentation page and is
1696  * followed by a list of files that were used to generate the page.
1697  */
1699  bool single)
1700  {
1701  // single is true implies a single file
1702  QCString result=(QCString)"La dokumentado por tiu ĉi ";
1703  switch(compType)
1704  {
1705  case ClassDef::Class: result+="modulo"; break;
1706  case ClassDef::Struct: result+="tipo"; break;
1707  case ClassDef::Union: result+="kunigo"; break;
1708  case ClassDef::Interface: result+="interfaco"; break;
1709  case ClassDef::Protocol: result+="protokolo"; break;
1710  case ClassDef::Category: result+="kategorio"; break;
1711  case ClassDef::Exception: result+="escepto"; break;
1712  default: break;
1713  }
1714  result+=" kreiĝis el la ";
1715  if (single) result+="sekva dosiero:"; else result+="sekvaj dosieroj:";
1716  return result;
1717  }
1718  /*! This is used for translation of the word that will possibly
1719  * be followed by a single name or by a list of names
1720  * of the category.
1721  */
1722  virtual QCString trType(bool first_capital, bool singular)
1723  {
1724  QCString result((first_capital ? "Tipo" : "tipo"));
1725  if (!singular) result+="j";
1726  return result;
1727  }
1728  /*! This is used for translation of the word that will possibly
1729  * be followed by a single name or by a list of names
1730  * of the category.
1731  */
1732  virtual QCString trSubprogram(bool first_capital, bool singular)
1733  {
1734  QCString result((first_capital ? "Subprogramo" : "subprogramo"));
1735  if (!singular) result+="j";
1736  return result;
1737  }
1738 
1739  /*! C# Type Constraint list */
1740  virtual QCString trTypeConstraints()
1741  {
1742  return "Tipaj Limigoj";
1743  }
1744 
1745 //////////////////////////////////////////////////////////////////////////
1746 // new since 1.6.0 (mainly for the new search engine)
1747 //////////////////////////////////////////////////////////////////////////
1748 
1749  /*! directory relation for \a name */
1750  virtual QCString trDirRelation(const QCString &name)
1751  {
1752  return QCString(name)+" Rilato";
1753  }
1754 
1755  /*! Loading message shown when loading search results */
1756  virtual QCString trLoading()
1757  {
1758  return "Ŝarĝante...";
1759  }
1760 
1761  /*! Label used for search results in the global namespace */
1762  virtual QCString trGlobalNamespace()
1763  {
1764  return "Malloka Nomspaco";
1765  }
1766 
1767  /*! Message shown while searching */
1768  virtual QCString trSearching()
1769  {
1770  return "Serĉante...";
1771  }
1772 
1773  /*! Text shown when no search results are found */
1774  virtual QCString trNoMatches()
1775  {
1776  return "Nenia kongruo";
1777  }
1778 
1779 //////////////////////////////////////////////////////////////////////////
1780 // new since 1.6.3 (missing items for the directory pages)
1781 //////////////////////////////////////////////////////////////////////////
1782 
1783  /*! when clicking a directory dependency label, a page with a
1784  * table is shown. The heading for the first column mentions the
1785  * source file that has a relation to another file.
1786  */
1787  virtual QCString trFileIn(const QCString &name)
1788  {
1789  return (QCString)"Dosiero en "+name;
1790  }
1791 
1792  /*! when clicking a directory dependency label, a page with a
1793  * table is shown. The heading for the second column mentions the
1794  * destination file that is included.
1795  */
1796  virtual QCString trIncludesFileIn(const QCString &name)
1797  {
1798  return (QCString)"Inkluzivas dosieron en "+name;
1799  }
1800 
1801  /** Compiles a date string.
1802  * @param year Year in 4 digits
1803  * @param month Month of the year: 1=January
1804  * @param day Day of the Month: 1..31
1805  * @param dayOfWeek Day of the week: 1=Monday..7=Sunday
1806  * @param hour Hour of the day: 0..23
1807  * @param minutes Minutes in the hour: 0..59
1808  * @param seconds Seconds within the minute: 0..59
1809  * @param includeTime Include time in the result string?
1810  */
1811  virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
1812  int hour,int minutes,int seconds,
1813  bool includeTime)
1814  {
1815  static const char *days[] = { "lundo","mardo","merkredo",
1816  "ĵaŭdo","vendredo","sabato",
1817  "dimanĉo" };
1818 
1819  static const char *months[] = { "Januaro", "Februaro", "Marto",
1820  "Aprilo", "Majo", "Junio",
1821  "Julio", "Aŭgusto", "Septembro",
1822  "Oktobro", "Novembro",
1823  "Decembro"
1824  };
1825  QCString sdate;
1826  sdate.sprintf("%s, %d-a de %s %d",days[dayOfWeek-1],day,months[month-1],year);
1827  if (includeTime)
1828  {
1829  QCString stime;
1830  stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds);
1831  sdate+=stime;
1832  }
1833  return sdate;
1834  }
1835 
1836 //////////////////////////////////////////////////////////////////////////
1837 // new since 1.7.5
1838 //////////////////////////////////////////////////////////////////////////
1839 
1840  /*! Header for the page with bibliographic citations */
1841  virtual QCString trCiteReferences()
1842  { return "Bibliografiaj Referencoj"; }
1843 
1844  /*! Text for copyright paragraph */
1845  virtual QCString trCopyright()
1846  { return "Kopirajto"; }
1847 
1848  /*! Header for the graph showing the directory dependencies */
1849  virtual QCString trDirDepGraph(const QCString &name)
1850  { return QCString("Dosieruja dependa diagramo por ")+name+":"; }
1851 
1852 //////////////////////////////////////////////////////////////////////////
1853 // new since 1.8.0
1854 //////////////////////////////////////////////////////////////////////////
1855 
1856  /*! Detail level selector shown for hierarchical indices */
1857  virtual QCString trDetailLevel()
1858  { return "detala nivelo"; }
1859 
1860  /*! Section header for list of template parameters */
1861  virtual QCString trTemplateParameters()
1862  { return "Parametroj de ŝablonoj"; }
1863 
1864  /*! Used in dot graph when UML_LOOK is enabled and there are many fields */
1865  virtual QCString trAndMore(const QCString &number)
1866  { return "kaj "+number+" pli..."; }
1867 
1868  /*! Used file list for a Java enum */
1869  virtual QCString trEnumGeneratedFromFiles(bool single)
1870  { QCString result = "La dokumentaro por tiu ĉi enum estis generita el la sekva dosiero";
1871  if (!single) result += "s";
1872  result+=":";
1873  return result;
1874  }
1875 
1876  /*! Header of a Java enum page (Java enums are represented as classes). */
1877  virtual QCString trEnumReference(const QCString &name)
1878  { return QCString(name)+" Enum Referenco"; }
1879 
1880  /*! Used for a section containing inherited members */
1881  virtual QCString trInheritedFrom(const QCString &members,const QCString &what)
1882  { return QCString(members)+" heredita el "+what; }
1883 
1884  /*! Header of the sections with inherited members specific for the
1885  * base class(es)
1886  */
1888  { return "Kromaj Hereditaj Membroj"; }
1889 
1890 //////////////////////////////////////////////////////////////////////////
1891 // new since 1.8.2
1892 //////////////////////////////////////////////////////////////////////////
1893 
1894  /*! Used as a tooltip for the toggle button that appears in the
1895  * navigation tree in the HTML output when GENERATE_TREEVIEW is
1896  * enabled. This tooltip explains the meaning of the button.
1897  */
1898  virtual QCString trPanelSynchronisationTooltip(bool enable)
1899  {
1900  QCString opt = enable ? "aktivigi" : "malaktivigi";
1901  return "klaku por "+opt+" panelan sinkronigon";
1902  }
1903 
1904  /*! Used in a method of an Objective-C class that is declared in a
1905  * a category. Note that the @1 marker is required and is replaced
1906  * by a link.
1907  */
1908  virtual QCString trProvidedByCategory()
1909  {
1910  return "Provizita de kategorio @0.";
1911  }
1912 
1913  /*! Used in a method of an Objective-C category that extends a class.
1914  * Note that the @1 marker is required and is replaced by a link to
1915  * the class method.
1916  */
1917  virtual QCString trExtendsClass()
1918  {
1919  return "Etendi klason @0.";
1920  }
1921 
1922  /*! Used as the header of a list of class methods in Objective-C.
1923  * These are similar to static public member functions in C++.
1924  */
1925  virtual QCString trClassMethods()
1926  {
1927  return "Klasaj Metodoj";
1928  }
1929 
1930  /*! Used as the header of a list of instance methods in Objective-C.
1931  * These are similar to public member functions in C++.
1932  */
1933  virtual QCString trInstanceMethods()
1934  {
1935  return "Aperaj Metodoj";
1936  }
1937 
1938  /*! Used as the header of the member functions of an Objective-C class.
1939  */
1941  {
1942  return "Dokumentaro de la Metodo";
1943  }
1944 
1945  /*! Used as the title of the design overview picture created for the
1946  * VHDL output.
1947  */
1949  {
1950  return "Fasona Superrigardo";
1951  }
1952 
1953 };
1954 
1955 #endif
TranslatorEsperanto::trDateTime
virtual QCString trDateTime(int year, int month, int day, int dayOfWeek, int hour, int minutes, int seconds, bool includeTime)
Compiles a date string.
Definition: translator_eo.h:1826
getDotImageExtension
QCString getDotImageExtension()
Definition: util.cpp:7032
TranslatorEsperanto::trTodoList
virtual QCString trTodoList()
Definition: translator_eo.h:966
TranslatorEsperanto::trListOfAllMembers
virtual QCString trListOfAllMembers()
Definition: translator_eo.h:143
TranslatorEsperanto::trAdditionalInheritedMembers
virtual QCString trAdditionalInheritedMembers()
Definition: translator_eo.h:1902
TranslatorEsperanto::trCompoundReference
virtual QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_eo.h:611
TranslatorEsperanto::trPackage
virtual QCString trPackage(const QCString &name)
Definition: translator_eo.h:1123
TranslatorEsperanto::trStaticPackageAttribs
virtual QCString trStaticPackageAttribs()
Definition: translator_eo.h:1408
TranslatorEsperanto::trSearchMatches
virtual QCString trSearchMatches()
Definition: translator_eo.h:1468
TranslatorEsperanto::trProtectedAttribs
virtual QCString trProtectedAttribs()
Definition: translator_eo.h:935
TranslatorEsperanto::trRelatedFunctions
virtual QCString trRelatedFunctions()
Definition: translator_eo.h:102
TranslatorEsperanto::trGlobalNamespace
virtual QCString trGlobalNamespace()
Definition: translator_eo.h:1777
TranslatorEsperanto::trAndMore
virtual QCString trAndMore(const QCString &number)
Definition: translator_eo.h:1880
TranslatorEsperanto::trDefinedAtLineInSourceFile
virtual QCString trDefinedAtLineInSourceFile()
Definition: translator_eo.h:815
TranslatorEsperanto::trNamespaceReference
virtual QCString trNamespaceReference(const QCString &namespaceName)
Definition: translator_eo.h:641
ClassDef::Union
@ Union
Definition: classdef.h:109
TranslatorEsperanto::trClasses
virtual QCString trClasses()
Definition: translator_eo.h:1111
TranslatorEsperanto::trNamespaceMemberDescription
virtual QCString trNamespaceMemberDescription(bool extractAll)
Definition: translator_eo.h:731
TranslatorEsperanto::trSince
virtual QCString trSince()
Definition: translator_eo.h:992
TranslatorEsperanto::trRemarks
virtual QCString trRemarks()
Definition: translator_eo.h:979
TranslatorEsperanto::trPublicTypes
virtual QCString trPublicTypes()
Definition: translator_eo.h:912
TranslatorEsperanto::trDate
virtual QCString trDate()
Definition: translator_eo.h:550
TranslatorEsperanto::trDefines
virtual QCString trDefines()
Definition: translator_eo.h:442
TranslatorEsperanto::trFileIn
virtual QCString trFileIn(const QCString &name)
Definition: translator_eo.h:1802
TranslatorEsperanto::trMember
virtual QCString trMember(bool first_capital, bool singular)
Definition: translator_eo.h:1271
TranslatorEsperanto::trModulesMembers
virtual QCString trModulesMembers()
Definition: translator_eo.h:1674
TranslatorEsperanto::trModuleReference
virtual QCString trModuleReference(const QCString &namespaceName)
Definition: translator_eo.h:1666
TranslatorEsperanto::trReferencedBy
virtual QCString trReferencedBy()
Definition: translator_eo.h:975
TranslatorEsperanto::trRelatedFunctionDocumentation
virtual QCString trRelatedFunctionDocumentation()
Definition: translator_eo.h:603
TranslatorEsperanto::trPackageAttribs
virtual QCString trPackageAttribs()
Definition: translator_eo.h:1401
TranslatorEsperanto::trClassDiagram
virtual QCString trClassDiagram(const QCString &clName)
Definition: translator_eo.h:532
TranslatorEsperanto::trCiteReferences
virtual QCString trCiteReferences()
Definition: translator_eo.h:1856
TranslatorEsperanto::trThisIsTheListOfAllMembers
virtual QCString trThisIsTheListOfAllMembers()
Definition: translator_eo.h:151
TranslatorEsperanto::trRelatedPages
virtual QCString trRelatedPages()
Definition: translator_eo.h:236
TranslatorEsperanto::trReimplementedFromList
virtual QCString trReimplementedFromList(int numEntries)
Definition: translator_eo.h:713
TranslatorEsperanto::trClassDocumentation
virtual QCString trClassDocumentation()
Definition: translator_eo.h:405
TranslatorEsperanto::trType
virtual QCString trType(bool first_capital, bool singular)
Definition: translator_eo.h:1737
TranslatorEsperanto::trEnumerationValues
virtual QCString trEnumerationValues()
Definition: translator_eo.h:472
TranslatorEsperanto::trDefinedIn
virtual QCString trDefinedIn()
Definition: translator_eo.h:177
TranslatorEsperanto::trIncludesFileIn
virtual QCString trIncludesFileIn(const QCString &name)
Definition: translator_eo.h:1811
TranslatorEsperanto::trInstanceMethods
virtual QCString trInstanceMethods()
Definition: translator_eo.h:1948
TranslatorEsperanto::trWarning
virtual QCString trWarning()
Definition: translator_eo.h:542
generateMarker
QCString generateMarker(int id)
Definition: util.cpp:284
TranslatorEsperanto::trCompoundMembersDescription
virtual QCString trCompoundMembersDescription(bool extractAll)
Definition: translator_eo.h:282
TranslatorEsperanto::trMemberFunctionDocumentation
virtual QCString trMemberFunctionDocumentation()
Definition: translator_eo.h:122
QCString::isEmpty
bool isEmpty() const
Returns TRUE iff the string is empty
Definition: qcstring.h:144
TranslatorEsperanto::trAttention
virtual QCString trAttention()
Definition: translator_eo.h:983
TranslatorEsperanto::trPrivateTypes
virtual QCString trPrivateTypes()
Definition: translator_eo.h:943
TranslatorEsperanto::trMore
virtual QCString trMore()
Definition: translator_eo.h:139
ClassDef::CompoundType
CompoundType
The various compound types
Definition: classdef.h:107
TranslatorEsperanto::trRelatedSubscript
virtual QCString trRelatedSubscript()
Definition: translator_eo.h:106
TranslatorEsperanto::trEnumerationTypeDocumentation
virtual QCString trEnumerationTypeDocumentation()
Definition: translator_eo.h:490
TranslatorEsperanto::trTypeConstraints
virtual QCString trTypeConstraints()
Definition: translator_eo.h:1755
TranslatorEsperanto::trMemberList
virtual QCString trMemberList()
Definition: translator_eo.h:147
TranslatorEsperanto::trSearchResultsTitle
virtual QCString trSearchResultsTitle()
Definition: translator_eo.h:1437
TranslatorEsperanto::trStaticProtectedMembers
virtual QCString trStaticProtectedMembers()
Definition: translator_eo.h:660
TranslatorEsperanto::trNamespaceDocumentation
virtual QCString trNamespaceDocumentation()
Definition: translator_eo.h:751
TranslatorEsperanto::trSearching
virtual QCString trSearching()
Definition: translator_eo.h:1783
TranslatorEsperanto::trCompounds
virtual QCString trCompounds()
Definition: translator_eo.h:508
ClassDef::Interface
@ Interface
Definition: classdef.h:110
TranslatorEsperanto::trGeneratedFromFiles
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
Definition: translator_eo.h:771
TranslatorEsperanto::trClassMethods
virtual QCString trClassMethods()
Definition: translator_eo.h:1940
TranslatorEsperanto::trTypedefDocumentation
virtual QCString trTypedefDocumentation()
Definition: translator_eo.h:484
TranslatorEsperanto::trPage
virtual QCString trPage(bool first_capital, bool singular)
Definition: translator_eo.h:1260
TranslatorEsperanto::trFileMembers
virtual QCString trFileMembers()
Definition: translator_eo.h:223
TranslatorEsperanto::trEnumReference
virtual QCString trEnumReference(const QCString &name)
Definition: translator_eo.h:1892
TranslatorEsperanto::trCompoundIndex
virtual QCString trCompoundIndex()
Definition: translator_eo.h:378
TranslatorEsperanto::trModules
virtual QCString trModules()
Definition: translator_eo.h:185
TranslatorEsperanto::trTypedefs
virtual QCString trTypedefs()
Definition: translator_eo.h:448
TranslatorEsperanto::trDirectories
virtual QCString trDirectories()
Definition: translator_eo.h:1503
TranslatorEsperanto::trDefineValue
virtual QCString trDefineValue()
Definition: translator_eo.h:1143
TranslatorEsperanto::trISOLang
virtual QCString trISOLang()
Definition: translator_eo.h:94
TranslatorEsperanto::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_eo.h:1201
TranslatorEsperanto::trNamespaceListDescription
virtual QCString trNamespaceListDescription(bool extractAll)
Definition: translator_eo.h:582
TranslatorEsperanto::trRelatedPagesDescription
virtual QCString trRelatedPagesDescription()
Definition: translator_eo.h:350
TranslatorEsperanto::trGeneratedBy
virtual QCString trGeneratedBy()
Definition: translator_eo.h:570
TranslatorEsperanto::trCompoundListDescription
virtual QCString trCompoundListDescription()
Definition: translator_eo.h:263
TranslatorEsperanto::trPageAbbreviation
virtual QCString trPageAbbreviation()
Definition: translator_eo.h:808
TranslatorEsperanto::trClassHierarchy
virtual QCString trClassHierarchy()
Definition: translator_eo.h:189
TranslatorEsperanto::trNamespaceList
virtual QCString trNamespaceList()
Definition: translator_eo.h:578
TranslatorEsperanto::trGotoGraphicalHierarchy
virtual QCString trGotoGraphicalHierarchy()
Definition: translator_eo.h:891
TranslatorEsperanto::trEventDocumentation
virtual QCString trEventDocumentation()
Definition: translator_eo.h:1369
TranslatorEsperanto::trLegendTitle
virtual QCString trLegendTitle()
Definition: translator_eo.h:1002
TranslatorEsperanto::trIncludingInheritedMembers
virtual QCString trIncludingInheritedMembers()
Definition: translator_eo.h:155
TranslatorEsperanto::trNoMatches
virtual QCString trNoMatches()
Definition: translator_eo.h:1789
TranslatorEsperanto::trModulesList
virtual QCString trModulesList()
Definition: translator_eo.h:1632
TranslatorEsperanto::trConstructorDocumentation
virtual QCString trConstructorDocumentation()
Definition: translator_eo.h:848
TranslatorEsperanto::trCode
virtual QCString trCode()
Definition: translator_eo.h:883
TranslatorEsperanto::trSubprogramDocumentation
virtual QCString trSubprogramDocumentation()
Definition: translator_eo.h:1622
TranslatorEsperanto::trDirRelation
virtual QCString trDirRelation(const QCString &name)
Definition: translator_eo.h:1765
ClassDef::Class
@ Class
Definition: classdef.h:107
TranslatorEsperanto::trFileReference
virtual QCString trFileReference(const QCString &fileName)
Definition: translator_eo.h:633
TranslatorEsperanto::trPublicAttribs
virtual QCString trPublicAttribs()
Definition: translator_eo.h:916
TranslatorEsperanto::trSourceFile
virtual QCString trSourceFile(QCString &filename)
Definition: translator_eo.h:1479
TranslatorEsperanto::trInheritedByList
virtual QCString trInheritedByList(int numEntries)
Definition: translator_eo.h:705
TranslatorEsperanto::trDataTypes
virtual QCString trDataTypes()
Definition: translator_eo.h:1628
TranslatorEsperanto::trAuthor
virtual QCString trAuthor(bool first_capital, bool singular)
Definition: translator_eo.h:1295
TranslatorEsperanto::trPublicMembers
virtual QCString trPublicMembers()
Definition: translator_eo.h:648
TranslatorEsperanto::trExtendsClass
virtual QCString trExtendsClass()
Definition: translator_eo.h:1932
TranslatorEsperanto::trCompoundReferenceFortran
virtual QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_eo.h:1645
TranslatorEsperanto::trFunctionDocumentation
virtual QCString trFunctionDocumentation()
Definition: translator_eo.h:496
TranslatorEsperanto::trDirReference
virtual QCString trDirReference(const QCString &dirName)
Definition: translator_eo.h:1517
TranslatorEsperanto::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_eo.h:1192
TranslatorEsperanto::trReturns
virtual QCString trReturns()
Definition: translator_eo.h:554
TranslatorEsperanto::trProperties
virtual QCString trProperties()
Definition: translator_eo.h:1096
TranslatorEsperanto::trSearch
virtual QCString trSearch()
Definition: translator_eo.h:244
TranslatorEsperanto::trCompoundMembersDescriptionFortran
virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
Definition: translator_eo.h:1581
TranslatorEsperanto::trCopyright
virtual QCString trCopyright()
Definition: translator_eo.h:1860
TranslatorEsperanto::latexLanguageSupportCommand
virtual QCString latexLanguageSupportCommand()
Definition: translator_eo.h:89
TranslatorEsperanto::trDirDepGraph
virtual QCString trDirDepGraph(const QCString &name)
Definition: translator_eo.h:1864
TranslatorEsperanto::trModulesListDescription
virtual QCString trModulesListDescription(bool extractAll)
Definition: translator_eo.h:1636
TranslatorEsperanto::trProtectedTypes
virtual QCString trProtectedTypes()
Definition: translator_eo.h:931
TranslatorEsperanto::trWriteList
virtual QCString trWriteList(int numEntries)
Definition: translator_eo.h:672
TranslatorEsperanto::trReimplementedInList
virtual QCString trReimplementedInList(int numEntries)
Definition: translator_eo.h:721
TranslatorEsperanto::trSignals
virtual QCString trSignals()
Definition: translator_eo.h:652
TranslatorEsperanto::trPropertyDocumentation
virtual QCString trPropertyDocumentation()
Definition: translator_eo.h:1101
TranslatorEsperanto::trRTFGeneralIndex
virtual QCString trRTFGeneralIndex()
Definition: translator_eo.h:1207
TranslatorAdapter_1_8_4
Definition: translator_adapter.h:203
TranslatorEsperanto::trPrivateSlots
virtual QCString trPrivateSlots()
Definition: translator_eo.h:664
TranslatorEsperanto::trFile
virtual QCString trFile(bool first_capital, bool singular)
Definition: translator_eo.h:1227
TranslatorEsperanto::trDeprecated
virtual QCString trDeprecated()
Definition: translator_eo.h:828
TranslatorEsperanto::trTypeDocumentation
virtual QCString trTypeDocumentation()
Definition: translator_eo.h:1610
TranslatorEsperanto::trStaticProtectedAttribs
virtual QCString trStaticProtectedAttribs()
Definition: translator_eo.h:939
TranslatorEsperanto::trSubprograms
virtual QCString trSubprograms()
Definition: translator_eo.h:1616
TranslatorEsperanto::trSearchResults
virtual QCString trSearchResults(int numDocuments)
Definition: translator_eo.h:1449
TranslatorEsperanto::trImplementedFromList
virtual QCString trImplementedFromList(int numEntries)
Definition: translator_eo.h:1320
TranslatorEsperanto::trPackageListDescription
virtual QCString trPackageListDescription()
Definition: translator_eo.h:1133
TranslatorEsperanto::trPackages
virtual QCString trPackages()
Definition: translator_eo.h:1138
TranslatorEsperanto::trModulesIndex
virtual QCString trModulesIndex()
Definition: translator_eo.h:1697
TranslatorEsperanto::trGlobal
virtual QCString trGlobal(bool first_capital, bool singular)
Definition: translator_eo.h:1282
TranslatorEsperanto::trImplementedInList
virtual QCString trImplementedInList(int numEntries)
Definition: translator_eo.h:1328
TranslatorEsperanto::trPackageTypes
virtual QCString trPackageTypes()
Definition: translator_eo.h:1380
TranslatorEsperanto::trModuleIndex
virtual QCString trModuleIndex()
Definition: translator_eo.h:366
TranslatorEsperanto::trPackageList
virtual QCString trPackageList()
Definition: translator_eo.h:1128
TranslatorEsperanto::trNamespace
virtual QCString trNamespace(bool first_capital, bool singular)
Definition: translator_eo.h:1238
TranslatorEsperanto::trNamespaceIndex
virtual QCString trNamespaceIndex()
Definition: translator_eo.h:745
TranslatorEsperanto::trCompoundMembers
virtual QCString trCompoundMembers()
Definition: translator_eo.h:210
TranslatorEsperanto::trCallGraph
virtual QCString trCallGraph()
Definition: translator_eo.h:1425
TranslatorEsperanto::trNamespaces
virtual QCString trNamespaces()
Definition: translator_eo.h:761
TranslatorEsperanto::trSeeAlso
virtual QCString trSeeAlso()
Definition: translator_eo.h:558
TranslatorEsperanto::trCompoundListFortran
virtual QCString trCompoundListFortran()
Definition: translator_eo.h:1569
TranslatorEsperanto
Definition: translator_eo.h:45
TranslatorEsperanto::trHierarchicalIndex
virtual QCString trHierarchicalIndex()
Definition: translator_eo.h:372
TranslatorEsperanto::trCompoundMembersFortran
virtual QCString trCompoundMembersFortran()
Definition: translator_eo.h:1573
TranslatorEsperanto::trDirIndex
virtual QCString trDirIndex()
Definition: translator_eo.h:1491
TranslatorEsperanto::trFriends
virtual QCString trFriends()
Definition: translator_eo.h:593
TranslatorEsperanto::trProtectedSlots
virtual QCString trProtectedSlots()
Definition: translator_eo.h:658
ClassDef::Category
@ Category
Definition: classdef.h:112
ClassDef::Struct
@ Struct
Definition: classdef.h:108
TranslatorEsperanto::trNote
virtual QCString trNote()
Definition: translator_eo.h:908
TranslatorEsperanto::trAll
virtual QCString trAll()
Definition: translator_eo.h:1420
TranslatorEsperanto::trExceptions
virtual QCString trExceptions()
Definition: translator_eo.h:566
TranslatorEsperanto::trFileListDescription
virtual QCString trFileListDescription(bool extractAll)
Definition: translator_eo.h:254
TranslatorEsperanto::trTestList
virtual QCString trTestList()
Definition: translator_eo.h:1086
TranslatorEsperanto::trGeneratedFromFilesFortran
virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single)
Definition: translator_eo.h:1713
TranslatorEsperanto::trVersion
virtual QCString trVersion()
Definition: translator_eo.h:546
TranslatorEsperanto::trProvidedByCategory
virtual QCString trProvidedByCategory()
Definition: translator_eo.h:1923
TranslatorEsperanto::trPanelSynchronisationTooltip
virtual QCString trPanelSynchronisationTooltip(bool enable)
Definition: translator_eo.h:1913
TranslatorEsperanto::trPostcondition
virtual QCString trPostcondition()
Definition: translator_eo.h:868
TranslatorEsperanto::trTest
virtual QCString trTest()
Definition: translator_eo.h:1081
TranslatorEsperanto::trForInternalUseOnly
virtual QCString trForInternalUseOnly()
Definition: translator_eo.h:538
TranslatorEsperanto::trFileMembersDescription
virtual QCString trFileMembersDescription(bool extractAll)
Definition: translator_eo.h:324
TranslatorEsperanto::trCallerGraph
virtual QCString trCallerGraph()
Definition: translator_eo.h:1549
TranslatorEsperanto::trLoading
virtual QCString trLoading()
Definition: translator_eo.h:1771
TranslatorEsperanto::trCompoundListDescriptionFortran
virtual QCString trCompoundListDescriptionFortran()
Definition: translator_eo.h:1577
TranslatorEsperanto::trFileIndex
virtual QCString trFileIndex()
Definition: translator_eo.h:393
TranslatorEsperanto::trReferences
virtual QCString trReferences()
Definition: translator_eo.h:1308
TranslatorEsperanto::trInitialValue
virtual QCString trInitialValue()
Definition: translator_eo.h:878
TranslatorEsperanto::trEnumerationValueDocumentation
virtual QCString trEnumerationValueDocumentation()
Definition: translator_eo.h:1557
TranslatorEsperanto::trNamespaceMembers
virtual QCString trNamespaceMembers()
Definition: translator_eo.h:727
TranslatorEsperanto::trDocumentation
virtual QCString trDocumentation()
Definition: translator_eo.h:360
TranslatorEsperanto::trMainPage
virtual QCString trMainPage()
Definition: translator_eo.h:802
TranslatorEsperanto::trBugList
virtual QCString trBugList()
Definition: translator_eo.h:1158
TranslatorEsperanto::trMemberTypedefDocumentation
virtual QCString trMemberTypedefDocumentation()
Definition: translator_eo.h:114
TranslatorEsperanto::trOverloadText
virtual QCString trOverloadText()
Definition: translator_eo.h:1537
TranslatorEsperanto::trDefinedInSourceFile
virtual QCString trDefinedInSourceFile()
Definition: translator_eo.h:819
TranslatorEsperanto::trEnumName
virtual QCString trEnumName()
Definition: translator_eo.h:169
TranslatorEsperanto::trClass
virtual QCString trClass(bool first_capital, bool singular)
Definition: translator_eo.h:1216
TranslatorEsperanto::trModuleDocumentation
virtual QCString trModuleDocumentation()
Definition: translator_eo.h:399
TranslatorEsperanto::trPageDocumentation
virtual QCString trPageDocumentation()
Definition: translator_eo.h:432
TranslatorEsperanto::trEvents
virtual QCString trEvents()
Definition: translator_eo.h:1364
TranslatorEsperanto::idLanguage
virtual QCString idLanguage()
Definition: translator_eo.h:72
TranslatorEsperanto::trLegend
virtual QCString trLegend()
Definition: translator_eo.h:1071
TranslatorEsperanto::trDeprecatedList
virtual QCString trDeprecatedList()
Definition: translator_eo.h:1352
TranslatorEsperanto::trDesignOverview
virtual QCString trDesignOverview()
Definition: translator_eo.h:1963
Config_getBool
#define Config_getBool(name)
Definition: config.h:33
ClassDef::Protocol
@ Protocol
Definition: classdef.h:111
TranslatorEsperanto::trInheritedFrom
virtual QCString trInheritedFrom(const QCString &members, const QCString &what)
Definition: translator_eo.h:1896
TranslatorEsperanto::trModulesMemberDescription
virtual QCString trModulesMemberDescription(bool extractAll)
Definition: translator_eo.h:1678
TranslatorEsperanto::trClassHierarchyDescription
virtual QCString trClassHierarchyDescription()
Definition: translator_eo.h:248
TranslatorEsperanto::trFileDocumentation
virtual QCString trFileDocumentation()
Definition: translator_eo.h:420
TranslatorEsperanto::trFileList
virtual QCString trFileList()
Definition: translator_eo.h:206
TranslatorEsperanto::trPackageMembers
virtual QCString trPackageMembers()
Definition: translator_eo.h:1387
TranslatorEsperanto::trCompoundList
virtual QCString trCompoundList()
Definition: translator_eo.h:193
TranslatorEsperanto::trFunctions
virtual QCString trFunctions()
Definition: translator_eo.h:460
TranslatorEsperanto::trModule
virtual QCString trModule(bool first_capital, bool singular)
Definition: translator_eo.h:1704
TranslatorEsperanto::trCollaborationDiagram
virtual QCString trCollaborationDiagram(const QCString &clName)
Definition: translator_eo.h:838
TranslatorEsperanto::trParameters
virtual QCString trParameters()
Definition: translator_eo.h:562
TranslatorEsperanto::trSubprogram
virtual QCString trSubprogram(bool first_capital, bool singular)
Definition: translator_eo.h:1747
TranslatorEsperanto::trDetailLevel
virtual QCString trDetailLevel()
Definition: translator_eo.h:1872
TranslatorEsperanto::trDirDescription
virtual QCString trDirDescription()
Definition: translator_eo.h:1509
TranslatorEsperanto::trStaticPackageMembers
virtual QCString trStaticPackageMembers()
Definition: translator_eo.h:1394
TranslatorEsperanto::trInclDepGraph
virtual QCString trInclDepGraph(const QCString &fName)
Definition: translator_eo.h:843
TranslatorEsperanto::trTodo
virtual QCString trTodo()
Definition: translator_eo.h:961
TranslatorEsperanto::trInclByDepGraph
virtual QCString trInclByDepGraph()
Definition: translator_eo.h:987
TranslatorEsperanto::trMemberEnumerationDocumentation
virtual QCString trMemberEnumerationDocumentation()
Definition: translator_eo.h:118
TranslatorEsperanto::trVariables
virtual QCString trVariables()
Definition: translator_eo.h:466
TranslatorEsperanto::trCompoundIndexFortran
virtual QCString trCompoundIndexFortran()
Definition: translator_eo.h:1604
TranslatorEsperanto::trEnumGeneratedFromFiles
virtual QCString trEnumGeneratedFromFiles(bool single)
Definition: translator_eo.h:1884
TranslatorEsperanto::trGroup
virtual QCString trGroup(bool first_capital, bool singular)
Definition: translator_eo.h:1249
TranslatorEsperanto::trGeneratedAt
virtual QCString trGeneratedAt(const QCString &date, const QCString &projName)
Definition: translator_eo.h:523
TranslatorEsperanto::trGotoDocumentation
virtual QCString trGotoDocumentation()
Definition: translator_eo.h:858
TranslatorEsperanto::trPrivateMembers
virtual QCString trPrivateMembers()
Definition: translator_eo.h:662
TranslatorEsperanto::trInvariant
virtual QCString trInvariant()
Definition: translator_eo.h:873
TranslatorEsperanto::trModulesDescription
virtual QCString trModulesDescription()
Definition: translator_eo.h:354
TranslatorEsperanto::trDefineDocumentation
virtual QCString trDefineDocumentation()
Definition: translator_eo.h:478
TranslatorEsperanto::trDetailedDescription
virtual QCString trDetailedDescription()
Definition: translator_eo.h:110
TranslatorEsperanto::trExamples
virtual QCString trExamples()
Definition: translator_eo.h:240
TranslatorEsperanto::trPublicSlots
virtual QCString trPublicSlots()
Definition: translator_eo.h:650
TranslatorEsperanto::trStaticPublicAttribs
virtual QCString trStaticPublicAttribs()
Definition: translator_eo.h:927
TranslatorEsperanto::trMethodDocumentation
virtual QCString trMethodDocumentation()
Definition: translator_eo.h:1955
TranslatorEsperanto::trStaticPrivateMembers
virtual QCString trStaticPrivateMembers()
Definition: translator_eo.h:666
TranslatorEsperanto::trReturnValues
virtual QCString trReturnValues()
Definition: translator_eo.h:797
TranslatorEsperanto::trPrecondition
virtual QCString trPrecondition()
Definition: translator_eo.h:863
TranslatorEsperanto::trPrivateAttribs
virtual QCString trPrivateAttribs()
Definition: translator_eo.h:947
TranslatorEsperanto::trVariableDocumentation
virtual QCString trVariableDocumentation()
Definition: translator_eo.h:502
TranslatorEsperanto::trReferenceManual
virtual QCString trReferenceManual()
Definition: translator_eo.h:436
TranslatorEsperanto::trGotoSourceCode
virtual QCString trGotoSourceCode()
Definition: translator_eo.h:853
TranslatorEsperanto::trGraphicalHierarchy
virtual QCString trGraphicalHierarchy()
Definition: translator_eo.h:887
TranslatorEsperanto::trExamplesDescription
virtual QCString trExamplesDescription()
Definition: translator_eo.h:346
TranslatorEsperanto::trInheritsList
virtual QCString trInheritsList(int numEntries)
Definition: translator_eo.h:697
ClassDef::Exception
@ Exception
Definition: classdef.h:113
TranslatorEsperanto::trEnumerations
virtual QCString trEnumerations()
Definition: translator_eo.h:454
TranslatorEsperanto::trDir
virtual QCString trDir(bool first_capital, bool singular)
Definition: translator_eo.h:1523
TranslatorEsperanto::trBug
virtual QCString trBug()
Definition: translator_eo.h:1153
TranslatorEsperanto::trPageIndex
virtual QCString trPageIndex()
Definition: translator_eo.h:899
TranslatorEsperanto::trDirDocumentation
virtual QCString trDirDocumentation()
Definition: translator_eo.h:1497
TranslatorEsperanto::trExampleDocumentation
virtual QCString trExampleDocumentation()
Definition: translator_eo.h:426
TranslatorEsperanto::trMemberDataDocumentation
virtual QCString trMemberDataDocumentation()
Definition: translator_eo.h:126
TranslatorEsperanto::trStaticPrivateAttribs
virtual QCString trStaticPrivateAttribs()
Definition: translator_eo.h:951
TranslatorEsperanto::trEnumValue
virtual QCString trEnumValue()
Definition: translator_eo.h:173
TranslatorEsperanto::trTemplateParameters
virtual QCString trTemplateParameters()
Definition: translator_eo.h:1876
TranslatorEsperanto::trGeneratedAutomatically
virtual QCString trGeneratedAutomatically(const QCString &s)
Definition: translator_eo.h:161
QCString::sprintf
QCString & sprintf(const char *format,...)
Definition: qcstring.cpp:24
TranslatorEsperanto::trMemberFunctionDocumentationFortran
virtual QCString trMemberFunctionDocumentationFortran()
Definition: translator_eo.h:1565
TranslatorEsperanto::trRTFTableOfContents
virtual QCString trRTFTableOfContents()
Definition: translator_eo.h:1340
TranslatorEsperanto::trProtectedMembers
virtual QCString trProtectedMembers()
Definition: translator_eo.h:656
TranslatorEsperanto::trStaticPublicMembers
virtual QCString trStaticPublicMembers()
Definition: translator_eo.h:654
TranslatorEsperanto::trLegendDocs
virtual QCString trLegendDocs()
Definition: translator_eo.h:1009
TranslatorEsperanto::trGotoTextualHierarchy
virtual QCString trGotoTextualHierarchy()
Definition: translator_eo.h:895
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108