Doxygen
translator_ro.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 /* Original translation from English to Romanian by Alexandru Iosup [aiosup@yahoo.com].
19  * Updated by Ionuţ Dumitraşcu [reddumy@yahoo.com]
20  *
21  * -------------------------------------------
22  * Project start : 20.09.2000
23  * Last Doxygen version covered : 1.8.4
24  * Last revision : 17.05.2013
25  * -------------------------------------------
26  *
27  * Revision history
28  * ----------------
29  * 17.05.2013 - Updated translation to cover Doxygen 1.8.4 (Ionuț Dumitrașcu)
30  * 15.01.2009 - Updated Romanian translation to Doxygen 1.5.8 and modified strings to UTF-8, as well as some other changes (Ionuţ Dumitraşcu)
31  * 28.07.2008 - Updated version - covering Doxygen 1.5.6 - and some minor changes (Ionuţ Dumitraşcu)
32  *
33  * 01.Mar.2k5 Third revision, covering Doxygen 1.4.1
34  *
35  * 07.Mar.2k2 Second revision, covering Doxygen 1.2.14
36  * - fixed some bugs
37  *
38  * 20.Sep.2k First version, covering Doxygen 1.2.1
39  *
40  */
41 #ifndef TRANSLATOR_RO_H
42 #define TRANSLATOR_RO_H
43 
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 "romanian"; }
59  /*! Used to get the LaTeX command(s) for the language support.
60  * This method should return string with commands that switch
61  * LaTeX to the desired language. For example
62  * <pre>"\\usepackage[german]{babel}\n"
63  * </pre>
64  * or
65  * <pre>"\\usepackage{polski}\n"
66  * "\\usepackage[latin2]{inputenc}\n"
67  * "\\usepackage[T1]{fontenc}\n"
68  * </pre>
69  *
70  * The English LaTeX does not use such commands. Because of this
71  * the empty string is returned in this implementation.
72  */
74  {
75  return "\\usepackage[romanian]{babel}\n";
76  }
77  virtual QCString trISOLang()
78  {
79  return "ro";
80  }
81 
82  // --- Language translation methods -------------------
83 
84  /*! used in the compound documentation before a list of related functions. */
86  { return "Funcţii înrudite"; }
87 
88  /*! subscript for the related functions. */
90  { return "(Atenţie: acestea nu sunt funcţii membre.)"; }
91 
92  /*! header that is put before the detailed description of files, classes and namespaces. */
94  { return "Descriere Detaliată"; }
95 
96  /*! header that is put before the list of typedefs. */
98  { return "Documentaţia Definiţiilor de Tipuri (typedef) Membre"; }
99 
100  /*! header that is put before the list of enumerations. */
102  { return "Documentaţia Enumerărilor Membre"; }
103 
104  /*! header that is put before the list of member functions. */
106  { return "Documentaţia Funcţiilor Membre"; }
107 
108  /*! header that is put before the list of member attributes. */
110  {
111  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
112  {
113  return "Documentaţia Câmpurilor";
114  }
115  else
116  {
117  return "Documentaţia Datelor Membre";
118  }
119 
120  }
121 
122  /*! this is the text of a link put after brief descriptions. */
123  virtual QCString trMore()
124  { return "Mai mult..."; }
125 
126  /*! put in the class documentation */
127  virtual QCString trListOfAllMembers()
128  { return "Lista tuturor membrilor"; }
129 
130  /*! used as the title of the "list of all members" page of a class */
131  virtual QCString trMemberList()
132  { return "Lista Membrilor"; }
133 
134  /*! this is the first part of a sentence that is followed by a class name */
136  { return "Lista completă a membrilor din "; }
137 
138  /*! this is the remainder of the sentence after the class name */
140  { return ", inclusiv a tuturor membrilor moşteniţi."; }
141 
142  /*! this is put at the author sections at the bottom of man pages.
143  * parameter s is name of the project name.
144  */
145  virtual QCString trGeneratedAutomatically(const QCString &s)
146  { QCString result="Generat automat de Doxygen";
147  if (!s.isEmpty()) result+=(QCString)" pentru "+s;
148  result+=" din codul sursă.";
149  return result;
150  }
151 
152  /*! put after an enum name in the list of all members */
153  virtual QCString trEnumName()
154  { return "nume enumerare"; }
155 
156  /*! put after an enum value in the list of all members */
157  virtual QCString trEnumValue()
158  { return "valoare enumerare"; }
159 
160  /*! put after an undocumented member in the list of all members */
161  virtual QCString trDefinedIn()
162  { return "definit în"; }
163 
164  // quick reference sections
165 
166  /*! This is put above each page as a link to the list of all groups of
167  * compounds or files (see the \\group command).
168  */
169  virtual QCString trModules()
170  { return "Module"; }
171 
172  /*! This is put above each page as a link to the class hierarchy */
173  virtual QCString trClassHierarchy()
174  { return "Ierarhia Claselor"; }
175 
176  /*! This is put above each page as a link to the list of annotated classes */
177  virtual QCString trCompoundList()
178  {
179  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
180  {
181  return "Structuri de Date";
182  }
183  else
184  {
185  return "Lista Claselor";
186  }
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 "Lista fişierelor"; }
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 "Câmpurile de Date";
200  }
201  else
202  {
203  return "Membrii Componenţi"; //cu articol hotarat
204  }
205 
206  }
207 
208  /*! This is put above each page as a link to all members of files. */
209  virtual QCString trFileMembers()
210  {
211  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
212  {
213  return "Globale";
214  }
215  else
216  {
217  return "Membrii din Fişier"; //cu articol hotarat
218  }
219 
220  }
221 
222  /*! This is put above each page as a link to all related pages. */
223  virtual QCString trRelatedPages()
224  { return "Pagini înrudite"; }
225 
226  /*! This is put above each page as a link to all examples. */
227  virtual QCString trExamples()
228  { return "Exemple"; }
229 
230  /*! This is put above each page as a link to the search engine. */
231  virtual QCString trSearch()
232  { return "Caută"; }
233 
234  /*! This is an introduction to the class hierarchy. */
236  { return "Această listă de moşteniri este sortată în general, "
237  "dar nu complet, în ordine alfabetică:";
238  }
239 
240  /*! This is an introduction to the list with all files. */
241  virtual QCString trFileListDescription(bool extractAll)
242  {
243  QCString result="Lista tuturor ";
244  result+="fişierelor";
245  if (!extractAll) result+=" documentate";
246  result+=", cu scurte descrieri:";
247  return result;
248  }
249 
250  /*! This is an introduction to the annotated compound list. */
252  {
253  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
254  {
255  return "Lista structurilor de date, cu scurte descrieri:";
256  }
257  else if (Config_getBool(OPTIMIZE_OUTPUT_SLICE))
258  {
259  return "Lista claselor, cu scurte descrieri:";
260  }
261  else
262  {
263  return "Lista claselor, structurilor, uniunilor şi interfeţelor"
264  ", cu scurte descrieri:";
265  }
266 
267  }
268 
269  /*! This is an introduction to the page with all class members. */
270  virtual QCString trCompoundMembersDescription(bool extractAll)
271  {
272  QCString result="Lista tuturor ";
273 
274  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
275  {
276  result+="câmpurilor ";
277  if (!extractAll) result+=" documentate ";
278  result+="din structuri si uniuni ";
279  }
280  else
281  {
282  result+="membrilor ";
283  if (!extractAll) result+="documentaţi ";
284  result+="din toate clasele ";
285  }
286  result+=", cu legături către ";
287  if (!extractAll)
288  {
289  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
290  {
291  result+="documentaţia structurii/uniunii pentru fiecare câmp în parte:";
292  }
293  else
294  {
295  result+="documentaţia clasei pentru fiecare membru în parte:";
296  }
297  }
298  else
299  {
300  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
301  {
302  result+="structurile/uniunile de care aparţin:";
303  }
304  else
305  {
306  result+="clasele de care aparţin:";
307  }
308  }
309 
310  return result;
311  }
312 
313  /*! This is an introduction to the page with all file members. */
314  virtual QCString trFileMembersDescription(bool extractAll)
315  {
316  QCString result="Lista tuturor ";
317  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
318  {
319  result+="funcţiilor, variabilelor, definiţiilor, enumerărilor şi definiţiilor de tip";
320  if (!extractAll) result+=" documentate";
321  }
322  else
323  {
324  result+="membrilor ";
325  if (!extractAll) result+="documentaţi ";
326  result+="din toate fişierele";
327  }
328  result+=", cu legături către ";
329  if (extractAll)
330  result+="fişierele de care aparţin:";
331  else
332  result+="documentaţia aferentă:";
333 
334  return result;
335  }
336 
337  /*! This is an introduction to the page with the list of all examples */
339  { return "Lista tuturor exemplelor:"; }
340 
341  /*! This is an introduction to the page with the list of related pages */
343  { return "Lista tuturor documentaţiilor înrudite:"; }
344 
345  /*! This is an introduction to the page with the list of class/file groups */
347  { return "Lista tuturor modulelor:"; }
348 
349  // index titles (the project name is prepended for these)
350 
351 
352  /*! This is used in HTML as the title of index.html. */
354  { return "Documentaţie"; }
355 
356  /*! This is used in LaTeX as the title of the chapter with the
357  * index of all groups.
358  */
359  virtual QCString trModuleIndex()
360  { return "Indexul Modulelor"; }
361 
362  /*! This is used in LaTeX as the title of the chapter with the
363  * class hierarchy.
364  */
365  virtual QCString trHierarchicalIndex()
366  { return "Index Ierarhic"; }
367 
368  /*! This is used in LaTeX as the title of the chapter with the
369  * annotated compound index.
370  */
371  virtual QCString trCompoundIndex()
372  {
373  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
374  {
375  return "Indexul Structurilor de Date";
376  }
377  else
378  {
379  return "Indexul Claselor";
380  }
381 
382  }
383 
384  /*! This is used in LaTeX as the title of the chapter with the
385  * list of all files.
386  */
387  virtual QCString trFileIndex()
388  { return "Indexul Fişierelor"; }
389 
390  /*! This is used in LaTeX as the title of the chapter containing
391  * the documentation of all groups.
392  */
394  { return "Documentaţia Modulelor"; }
395 
396  /*! This is used in LaTeX as the title of the chapter containing
397  * the documentation of all classes, structs and unions.
398  */
400  {
401  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
402  {
403  return "Documentaţia Structurilor de Date";
404  }
405  else
406  {
407  return "Documentaţia Claselor";
408  }
409 
410  }
411 
412  /*! This is used in LaTeX as the title of the chapter containing
413  * the documentation of all files.
414  */
415  virtual QCString trFileDocumentation()
416  { return "Documentaţia Fişierelor"; }
417 
418  /*! This is used in LaTeX as the title of the chapter containing
419  * the documentation of all examples.
420  */
422  { return "Documentaţia Exemplelor"; }
423 
424  /*! This is used in LaTeX as the title of the chapter containing
425  * the documentation of all related pages.
426  */
427  virtual QCString trPageDocumentation()
428  { return "Documentaţii înrudite"; }
429 
430  /*! This is used in LaTeX as the title of the document */
431  virtual QCString trReferenceManual()
432  { return "Manual de utilizare"; }
433 
434  /*! This is used in the documentation of a file as a header before the
435  * list of defines
436  */
437  virtual QCString trDefines()
438  { return "Definiţii"; }
439 
440  /*! This is used in the documentation of a file as a header before the
441  * list of typedefs
442  */
443  virtual QCString trTypedefs()
444  { return "Definiţii de tipuri"; }
445 
446  /*! This is used in the documentation of a file as a header before the
447  * list of enumerations
448  */
449  virtual QCString trEnumerations()
450  { return "Enumerări"; }
451 
452  /*! This is used in the documentation of a file as a header before the
453  * list of (global) functions
454  */
455  virtual QCString trFunctions()
456  { return "Funcţii"; }
457 
458  /*! This is used in the documentation of a file as a header before the
459  * list of (global) variables
460  */
461  virtual QCString trVariables()
462  { return "Variabile"; }
463 
464  /*! This is used in the documentation of a file as a header before the
465  * list of (global) variables
466  */
467  virtual QCString trEnumerationValues()
468  { return "Valori de enumerări"; }
469 
470  /*! This is used in the documentation of a file before the list of
471  * documentation blocks for defines
472  */
474  { return "Documentaţia definiţiilor"; }
475 
476  /*! This is used in the documentation of a file/namespace before the list
477  * of documentation blocks for typedefs
478  */
480  { return "Documentaţia definiţiilor de tipuri"; }
481 
482  /*! This is used in the documentation of a file/namespace before the list
483  * of documentation blocks for enumeration types
484  */
486  { return "Documentaţia enumerărilor"; }
487 
488  /*! This is used in the documentation of a file/namespace before the list
489  * of documentation blocks for functions
490  */
492  { return "Documentaţia funcţiilor"; }
493 
494  /*! This is used in the documentation of a file/namespace before the list
495  * of documentation blocks for variables
496  */
498  { return "Documentaţia variabilelor"; }
499 
500  /*! This is used in the documentation of a file/namespace/group before
501  * the list of links to documented compounds
502  */
503  virtual QCString trCompounds()
504  {
505  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
506  {
507  return "Structuri de Date";
508  }
509  else
510  {
511  return "Membri";
512  }
513 
514  }
515 
516  /*! This is used in the standard footer of each page and indicates when
517  * the page was generated
518  */
519  virtual QCString trGeneratedAt(const QCString &date,const QCString &projName)
520  {
521  QCString result=(QCString)"Generat "+date;
522  if (!projName.isEmpty()) result+=(QCString)" pentru "+projName;
523  result+=(QCString)" de către";
524  return result;
525  }
526 
527  /*! this text is put before a class diagram */
528  virtual QCString trClassDiagram(const QCString &clName)
529  {
530  return (QCString)"Diagrama de relaţii pentru "+clName;
531  }
532 
533  /*! this text is generated when the \\internal command is used. */
535  { return "Doar pentru uz intern."; }
536 
537  /*! this text is generated when the \\warning command is used. */
538  virtual QCString trWarning()
539  { return "Atenţie"; }
540 
541  /*! this text is generated when the \\version command is used. */
542  virtual QCString trVersion()
543  { return "Versiunea"; }
544 
545  /*! this text is generated when the \\date command is used. */
546  virtual QCString trDate()
547  { return "Data"; }
548 
549  /*! this text is generated when the \\return command is used. */
550  virtual QCString trReturns()
551  { return "Întoarce"; }
552 
553  /*! this text is generated when the \\sa command is used. */
554  virtual QCString trSeeAlso()
555  { return "Vezi şi"; }
556 
557  /*! this text is generated when the \\param command is used. */
558  virtual QCString trParameters()
559  { return "Parametri"; }
560 
561  /*! this text is generated when the \\exception command is used. */
562  virtual QCString trExceptions()
563  { return "Excepţii"; }
564 
565  /*! this text is used in the title page of a LaTeX document. */
566  virtual QCString trGeneratedBy()
567  { return "Generat de"; }
568 
569  // new since 0.49-990307
570 
571  /*! used as the title of page containing all the index of all namespaces. */
572  virtual QCString trNamespaceList()
573  { return "Lista de Namespace-uri"; }
574 
575  /*! used as an introduction to the namespace list */
576  virtual QCString trNamespaceListDescription(bool extractAll)
577  {
578  QCString result="Lista tuturor ";
579  result+="namespace-urilor ";
580  if (!extractAll) result+="documentate ";
581  result+=", cu scurte descrieri:";
582  return result;
583  }
584 
585  /*! used in the class documentation as a header before the list of all
586  * friends of a class
587  */
588  virtual QCString trFriends()
589  { return "Prieteni"; }
590 
591 //////////////////////////////////////////////////////////////////////////
592 // new since 0.49-990405
593 //////////////////////////////////////////////////////////////////////////
594 
595  /*! used in the class documentation as a header before the list of all
596  * related classes
597  */
599  { return "Documentaţia funcţiilor prietene sau înrudite"; }
600 
601 //////////////////////////////////////////////////////////////////////////
602 // new since 0.49-990425
603 //////////////////////////////////////////////////////////////////////////
604 
605  /*! used as the title of the HTML page of a class/struct/union */
606  virtual QCString trCompoundReference(const QCString &clName,
607  ClassDef::CompoundType compType,
608  bool isTemplate)
609  {
610  QCString result="Referinţă la ";
611  switch(compType)
612  {
613  case ClassDef::Class: result+="clasa "; break;
614  case ClassDef::Struct: result+="structura "; break;
615  case ClassDef::Union: result+="uniunea "; break;
616  case ClassDef::Interface: result+="interfaţa "; break;
617  case ClassDef::Protocol: result+="protocolul "; break;
618  case ClassDef::Category: result+="categoria "; break;
619  case ClassDef::Exception: result+="excepţia "; break;
620  default: break;
621  }
622  if (isTemplate) result+=" (Template) ";
623  result+=(QCString)clName;
624 
625  return result;
626  }
627 
628  /*! used as the title of the HTML page of a file */
629  virtual QCString trFileReference(const QCString &fileName)
630  {
631  QCString result="Referinţă la fişierul ";
632  result+=fileName;
633  return result;
634  }
635 
636  /*! used as the title of the HTML page of a namespace */
637  virtual QCString trNamespaceReference(const QCString &namespaceName)
638  {
639  QCString result="Referinţă la Namespace-ul ";
640  result+=namespaceName;
641  return result;
642  }
643 
644  /* these are for the member sections of a class, struct or union */
645  virtual QCString trPublicMembers()
646  { return "Metode Publice"; }
647  virtual QCString trPublicSlots()
648  { return "Conectori (slots) Publici"; }
649  virtual QCString trSignals()
650  { return "Semnale"; }
652  { return "Metode Statice Publice"; }
653  virtual QCString trProtectedMembers()
654  { return "Metode Protejate"; }
655  virtual QCString trProtectedSlots()
656  { return "Conectori (slots) Protejaţi"; }
658  { return "Metode Statice Protejate"; }
659  virtual QCString trPrivateMembers()
660  { return "Metode Private"; }
661  virtual QCString trPrivateSlots()
662  { return "Conectori (slots) Privaţi"; }
664  { return "Metode Statice Private"; }
665 
666  /*! this function is used to produce a comma-separated list of items.
667  * use generateMarker(i) to indicate where item i should be put.
668  */
669  virtual QCString trWriteList(int numEntries)
670  {
671  QCString result;
672  int i;
673  // the inherits list contain `numEntries' classes
674  for (i=0;i<numEntries;i++)
675  {
676  // use generateMarker to generate placeholders for the class links!
677  result+=generateMarker(i); // generate marker for entry i in the list
678  // (order is left to right)
679 
680  if (i!=numEntries-1) // not the last entry, so we need a separator
681  {
682  if (i<numEntries-2) // not the fore last entry
683  result+=", ";
684  else // the fore last entry
685  result+=" şi ";
686  }
687  }
688  return result;
689  }
690 
691  /*! used in class documentation to produce a list of base classes,
692  * if class diagrams are disabled.
693  */
694  virtual QCString trInheritsList(int numEntries)
695  {
696  return "Moşteneşte "+trWriteList(numEntries)+".";
697  }
698 
699  /*! used in class documentation to produce a list of super classes,
700  * if class diagrams are disabled.
701  */
702  virtual QCString trInheritedByList(int numEntries)
703  {
704  return "Moştenit de "+trWriteList(numEntries)+".";
705  }
706 
707  /*! used in member documentation blocks to produce a list of
708  * members that are hidden by this one.
709  */
710  virtual QCString trReimplementedFromList(int numEntries)
711  {
712  return "Reimplementat din "+trWriteList(numEntries)+".";
713  }
714 
715  /*! used in member documentation blocks to produce a list of
716  * all member that overwrite the implementation of this member.
717  */
718  virtual QCString trReimplementedInList(int numEntries)
719  {
720  return "Reimplementat în "+trWriteList(numEntries)+".";
721  }
722 
723  /*! This is put above each page as a link to all members of namespaces. */
724  virtual QCString trNamespaceMembers()
725  { return "Membrii Namespace-ului"; }
726 
727  /*! This is an introduction to the page with all namespace members */
728  virtual QCString trNamespaceMemberDescription(bool extractAll)
729  {
730  QCString result="Lista tuturor membrilor ";
731  if (!extractAll) result+="documentaţi ";
732  result+="din toate namespace-urile, cu legături către ";
733 
734  if (extractAll)
735  result+="documentaţia namespace-ului pentru fiecare membru în parte:";
736  else
737  result+="namespace-urile de care aparţin:";
738  return result;
739  }
740  /*! This is used in LaTeX as the title of the chapter with the
741  * index of all namespaces.
742  */
744  { return "Indexul Namespace-ului"; }
745 
746  /*! This is used in LaTeX as the title of the chapter containing
747  * the documentation of all namespaces.
748  */
750  { return "Documentaţia Namespace-ului"; }
751 
752 //////////////////////////////////////////////////////////////////////////
753 // new since 0.49-990522
754 //////////////////////////////////////////////////////////////////////////
755 
756  /*! This is used in the documentation before the list of all
757  * namespaces in a file.
758  */
759  virtual QCString trNamespaces()
760  { return "Namespace-uri"; }
761 
762 //////////////////////////////////////////////////////////////////////////
763 // new since 0.49-990728
764 //////////////////////////////////////////////////////////////////////////
765 
766  /*! This is put at the bottom of a class documentation page and is
767  * followed by a list of files that were used to generate the page.
768  */
770  bool single)
771  { // here s is one of " Class", " Struct" or " Union"
772  // single is true implies a single file
773  QCString result=(QCString)"Documentaţia pentru această ";
774  switch(compType)
775  {
776  case ClassDef::Class: result+="clasă"; break;
777  case ClassDef::Struct: result+="structură"; break;
778  case ClassDef::Union: result+="uniune"; break;
779  case ClassDef::Interface: result+="interfaţă"; break;
780  case ClassDef::Protocol: result+="protocol"; break;
781  case ClassDef::Category: result+="categorie"; break;
782  case ClassDef::Exception: result+="excepţie"; break;
783  default: break;
784  }
785  result+=" a fost generată din fişier";
786  if (single) result+="ul:"; else result+="ele:";
787  return result;
788  }
789 
790 //////////////////////////////////////////////////////////////////////////
791 // new since 0.49-990901
792 //////////////////////////////////////////////////////////////////////////
793 
794  /*! This is used as the heading text for the retval command. */
795  virtual QCString trReturnValues()
796  { return "Valori returnate"; }
797 
798  /*! This is in the (quick) index as a link to the main page (index.html)
799  */
800  virtual QCString trMainPage()
801  { return "Pagina principală"; }
802 
803  /*! This is used in references to page that are put in the LaTeX
804  * documentation. It should be an abbreviation of the word page.
805  */
806  virtual QCString trPageAbbreviation()
807  { return "pg."; }
808 
809 //////////////////////////////////////////////////////////////////////////
810 // new since 0.49-991003
811 //////////////////////////////////////////////////////////////////////////
812 
814  {
815  return "Definiţia în linia @0 a fişierului @1.";
816  }
818  {
819  return "Definiţia în fişierul @0.";
820  }
821 
822 //////////////////////////////////////////////////////////////////////////
823 // new since 0.49-991205
824 //////////////////////////////////////////////////////////////////////////
825 
826  virtual QCString trDeprecated()
827  {
828  return "Învechită(Deprecated)";
829  }
830 
831 //////////////////////////////////////////////////////////////////////////
832 // new since 1.0.0
833 //////////////////////////////////////////////////////////////////////////
834 
835  /*! this text is put before a collaboration diagram */
836  virtual QCString trCollaborationDiagram(const QCString &clName)
837  {
838  return (QCString)"Diagrama de relaţii pentru "+clName+":";
839  }
840  /*! this text is put before an include dependency graph */
841  virtual QCString trInclDepGraph(const QCString &fName)
842  {
843  return (QCString)"Graful dependenţelor prin incluziune pentru "+fName+":";
844  }
845  /*! header that is put before the list of constructor/destructors. */
847  {
848  return "Documentaţia pentru Constructori şi Destructori";
849  }
850  /*! Used in the file documentation to point to the corresponding sources. */
852  {
853  return "Vezi sursele.";
854  }
855  /*! Used in the file sources to point to the corresponding documentation. */
857  {
858  return "Vezi documentaţia.";
859  }
860  /*! Text for the \\pre command */
862  {
863  return "Precondiţie";
864  }
865  /*! Text for the \\post command */
867  {
868  return "Postcondiţie";
869  }
870  /*! Text for the \\invariant command */
872  {
873  return "Invariant";
874  }
875  /*! Text shown before a multi-line variable/enum initialization */
877  {
878  return "Valoarea iniţială:";
879  }
880  /*! Text used the source code in the file index */
881  virtual QCString trCode()
882  {
883  return "cod";
884  }
886  {
887  return "Ierarhia Claselor în mod grafic";
888  }
890  {
891  return "Vezi ierarhia claselor în mod grafic";
892  }
894  {
895  return "Vezi ierarhia claselor în mod text";
896  }
897  virtual QCString trPageIndex()
898  {
899  return "Indexul Paginilor";
900  }
901 
902 //////////////////////////////////////////////////////////////////////////
903 // new since 1.1.0
904 //////////////////////////////////////////////////////////////////////////
905 
906  virtual QCString trNote()
907  {
908  return "Notă";
909  }
910  virtual QCString trPublicTypes()
911  {
912  return "Tipuri Publice";
913  }
914  virtual QCString trPublicAttribs()
915  {
916  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
917  {
918  return "Câmpuri de Date";
919  }
920  else
921  {
922  return "Atribute Publice";
923  }
924 
925  }
927  {
928  return "Atribute Statice Publice";
929  }
930  virtual QCString trProtectedTypes()
931  {
932  return "Tipuri Protejate";
933  }
934  virtual QCString trProtectedAttribs()
935  {
936  return "Atribute Protejate";
937  }
939  {
940  return "Atribute Statice Protejate";
941  }
942  virtual QCString trPrivateTypes()
943  {
944  return "Tipuri Private";
945  }
946  virtual QCString trPrivateAttribs()
947  {
948  return "Atribute Private";
949  }
951  {
952  return "Atribute Statice Private";
953  }
954 
955 //////////////////////////////////////////////////////////////////////////
956 // new since 1.1.3
957 //////////////////////////////////////////////////////////////////////////
958 
959  /*! Used as a marker that is put before a todo item */
960  virtual QCString trTodo()
961  {
962  return "De făcut";
963  }
964  /*! Used as the header of the todo list */
966  {
967  return "Lista lucrurilor de făcut";
968  }
969 
970 //////////////////////////////////////////////////////////////////////////
971 // new since 1.1.4
972 //////////////////////////////////////////////////////////////////////////
973 
974  virtual QCString trReferencedBy()
975  {
976  return "Semnalat de";
977  }
978  virtual QCString trRemarks()
979  {
980  return "Observaţii";
981  }
982  virtual QCString trAttention()
983  {
984  return "Atenţie";
985  }
986  virtual QCString trInclByDepGraph()
987  {
988  return "Acest graf arată care fişiere includ, "
989  "direct sau indirect, acest fişier:";
990  }
991  virtual QCString trSince()
992  {
993  return "Din";
994  }
995 
996 //////////////////////////////////////////////////////////////////////////
997 // new since 1.1.5
998 //////////////////////////////////////////////////////////////////////////
999 
1000  /*! title of the graph legend page */
1002  {
1003  return "Legenda grafului";
1004  }
1005  /*! page explaining how the dot graph's should be interpreted */
1007  {
1008  return
1009  "Această pagină arată modul în care trebuie să interpretaţi "
1010  "grafurile generate de doxygen.<p>\n"
1011  "Consideraţi următorul exemplu:\n"
1012  "\\code\n"
1013  "/*! Clasă invizibilă, tăiată din cauza depăşirii spaţiului */\n"
1014  "class Invisible { };\n\n"
1015  "/*! Altă clasă tăiată, relaţia de moştenire este ascunsă */\n"
1016  "class Truncated : public Invisible { };\n\n"
1017  "/* Clasă necomentată în stil doxygen */\n"
1018  "class Undocumented { };\n\n"
1019  "/*! Clasă care este moştenită în mod public */\n"
1020  "class PublicBase : public Truncated { };\n\n"
1021  "/*! Clasă template */\n"
1022  "template<class T> class Templ { };\n\n"
1023  "/*! Clasă care este moştenită în mod protejat */\n"
1024  "class ProtectedBase { };\n\n"
1025  "/*! Clasă care este moştenită în mod privat */\n"
1026  "class PrivateBase { };\n\n"
1027  "/*! Clasă care este folosită de clasa Inherited */\n"
1028  "class Used { };\n\n"
1029  "/*! Superclasă care moşteneşte un număr de alte clase */\n"
1030  "class Inherited : public PublicBase,\n"
1031  " protected ProtectedBase,\n"
1032  " private PrivateBase,\n"
1033  " public Undocumented,\n"
1034  " public Templ<int>\n"
1035  "{\n"
1036  " private:\n"
1037  " Used *m_usedClass;\n"
1038  "};\n"
1039  "\\endcode\n"
1040  "Dacă tagul \\c MAX_DOT_GRAPH_HEIGHT din fişierul de configurare "
1041  "este setat la 200, acesta este graful rezultat:"
1042  "<p><center><img src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1043  "<p>\n"
1044  "Căsuţele din partea de sus au următoarea semnificaţie:\n"
1045  "<ul>\n"
1046  "<li>O căsuţă neagră reprezintă structura sau clasa pentru care "
1047  "graful este generat.\n"
1048  "<li>O căsuţă cu marginea neagră reprezintă o structură sau o clasă documentate.\n"
1049  "<li>O căsuţă cu marginea gri reprezintă o structură sau o clasă nedocumentate.\n"
1050  "<li>O căsuţă cu marginea roşie reprezintă o structură sau o clasă documentate, pentru\n"
1051  "care nu toate relaţiile de moştenire/incluziune sunt arătate. Un graf este "
1052  "tăiat dacă nu încape în marginile specificate."
1053  "</ul>\n"
1054  "Săgeţile au următoarea semnificaţie:\n"
1055  "<ul>\n"
1056  "<li>O săgeată de un albastru închis este folosită când avem o relaţie de "
1057  "moştenire publică între două clase.\n"
1058  "<li>O săgeată de un verde închis este folosită când avem o moştenire protejată.\n"
1059  "<li>O săgeată de un roşu închis este folosită când avem o moştenire privată.\n"
1060  "<li>O săgeată violetă punctată este folosită pentru o clasă conţinută sau folosită "
1061  "de o altă clasă. Săgeata este marcată cu variabila(e) "
1062  "prin care este accesibilă clasa sau structura spre care este îndreptată. \n"
1063  "</ul>\n";
1064  }
1065  /*! text for the link to the legend page */
1066  virtual QCString trLegend()
1067  {
1068  return "legenda";
1069  }
1070 
1071 //////////////////////////////////////////////////////////////////////////
1072 // new since 1.2.0
1073 //////////////////////////////////////////////////////////////////////////
1074 
1075  /*! Used as a marker that is put before a test item */
1076  virtual QCString trTest()
1077  {
1078  return "Test";
1079  }
1080  /*! Used as the header of the test list */
1082  {
1083  return "Listă de teste";
1084  }
1085 
1086 //////////////////////////////////////////////////////////////////////////
1087 // new since 1.2.2
1088 //////////////////////////////////////////////////////////////////////////
1089 
1090  /*! Used as a section header for IDL properties */
1092  {
1093  return "Proprietăţi";
1094  }
1095  /*! Used as a section header for IDL property documentation */
1097  {
1098  return "Documentaţia Proprietăţilor";
1099  }
1100 
1101 //////////////////////////////////////////////////////////////////////////
1102 // new since 1.2.4
1103 //////////////////////////////////////////////////////////////////////////
1104 
1105  /*! Used for Java classes in the summary section of Java packages */
1107  {
1108  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1109  {
1110  return "Structuri de Date";
1111  }
1112  else
1113  {
1114  return "Clase";
1115  }
1116  }
1117  /*! Used as the title of a Java package */
1118  virtual QCString trPackage(const QCString &name)
1119  {
1120  return (QCString)"Pachet "+name;
1121  }
1122  /*! Title of the package index page */
1123  virtual QCString trPackageList()
1124  {
1125  return "Lista Pachetelor";
1126  }
1127  /*! The description of the package index page */
1129  {
1130  return "Lista pachetelor, însoţită de scurte explicaţii, acolo unde acestea există:";
1131  }
1132  /*! The link name in the Quick links header for each page */
1134  {
1135  return "Pachete";
1136  }
1137  /*! Text shown before a multi-line define */
1139  {
1140  return "Valoare:";
1141  }
1142 
1143 //////////////////////////////////////////////////////////////////////////
1144 // new since 1.2.5
1145 //////////////////////////////////////////////////////////////////////////
1146 
1147  /*! Used as a marker that is put before a \\bug item */
1148  virtual QCString trBug()
1149  {
1150  return "Problema (Bug)";
1151  }
1152  /*! Used as the header of the bug list */
1154  {
1155  return "Lista de Probleme (Bugs)";
1156  }
1157 
1158 //////////////////////////////////////////////////////////////////////////
1159 // new since 1.2.6
1160 //////////////////////////////////////////////////////////////////////////
1161 
1162  /*! Used as ansicpg for RTF file
1163  *
1164  * The following table shows the correlation of Charset name, Charset Value and
1165  * <pre>
1166  * Codepage number:
1167  * Charset Name Charset Value(hex) Codepage number
1168  * ------------------------------------------------------
1169  * DEFAULT_CHARSET 1 (x01)
1170  * SYMBOL_CHARSET 2 (x02)
1171  * OEM_CHARSET 255 (xFF)
1172  * ANSI_CHARSET 0 (x00) 1252
1173  * RUSSIAN_CHARSET 204 (xCC) 1251
1174  * EE_CHARSET 238 (xEE) 1250
1175  * GREEK_CHARSET 161 (xA1) 1253
1176  * TURKISH_CHARSET 162 (xA2) 1254
1177  * BALTIC_CHARSET 186 (xBA) 1257
1178  * HEBREW_CHARSET 177 (xB1) 1255
1179  * ARABIC _CHARSET 178 (xB2) 1256
1180  * SHIFTJIS_CHARSET 128 (x80) 932
1181  * HANGEUL_CHARSET 129 (x81) 949
1182  * GB2313_CHARSET 134 (x86) 936
1183  * CHINESEBIG5_CHARSET 136 (x88) 950
1184  * </pre>
1185  *
1186  */
1187  virtual QCString trRTFansicp()
1188  {
1189  return "1250"; //EASTEUROPE_CHARSET
1190  }
1191 
1192 
1193  /*! Used as ansicpg for RTF fcharset
1194  * \see trRTFansicp() for a table of possible values.
1195  */
1196  virtual QCString trRTFCharSet()
1197  {
1198  return "238";
1199  }
1200 
1201  /*! Used as header RTF general index */
1203  {
1204  return "Index";
1205  }
1206 
1207  /*! This is used for translation of the word that will possibly
1208  * be followed by a single name or by a list of names
1209  * of the category.
1210  */
1211  virtual QCString trClass(bool first_capital, bool singular)
1212  {
1213  QCString result((first_capital ? "Clas" : "clas"));
1214  result+= singular ? "a":"ele";
1215  return result;
1216  }
1218  /*! This is used for translation of the word that will possibly
1219  * be followed by a single name or by a list of names
1220  * of the category.
1221  */
1222  virtual QCString trFile(bool first_capital, bool singular)
1223  {
1224  QCString result((first_capital ? "Fişier" : "fişier"));
1225  result+= singular ? "ul":"ele";
1226  return result;
1227  }
1228 
1229  /*! This is used for translation of the word that will possibly
1230  * be followed by a single name or by a list of names
1231  * of the category.
1232  */
1233  virtual QCString trNamespace(bool first_capital, bool singular)
1234  {
1235  QCString result((first_capital ? "Namespace" : "namespace"));
1236  result+= singular ? "-ul":"-urile";
1237  return result;
1238  }
1239 
1240  /*! This is used for translation of the word that will possibly
1241  * be followed by a single name or by a list of names
1242  * of the category.
1243  */
1244  virtual QCString trGroup(bool first_capital, bool singular)
1245  {
1246  QCString result((first_capital ? "Grupu" : "grupu"));
1247  result+= singular ? "l":"rile";
1248  return result;
1249  }
1250 
1251  /*! This is used for translation of the word that will possibly
1252  * be followed by a single name or by a list of names
1253  * of the category.
1254  */
1255  virtual QCString trPage(bool first_capital, bool singular)
1256  {
1257  QCString result((first_capital ? "Pagin" : "pagin"));
1258  result+= singular ? "a":"ile";
1259  return result;
1260  }
1261 
1262  /*! This is used for translation of the word that will possibly
1263  * be followed by a single name or by a list of names
1264  * of the category.
1265  */
1266  virtual QCString trMember(bool first_capital, bool singular)
1267  {
1268  QCString result((first_capital ? "Membr" : "membr"));
1269  result+= singular ? "ul":"ii";
1270  return result;
1271  }
1272 
1273  /*! This is used for translation of the word that will possibly
1274  * be followed by a single name or by a list of names
1275  * of the category.
1276  */
1277  virtual QCString trGlobal(bool first_capital, bool singular)
1278  {
1279  QCString result((first_capital ? "Global" : "global"));
1280  if (!singular) result+="e";
1281  return result;
1282  }
1283 
1284 //////////////////////////////////////////////////////////////////////////
1285 // new since 1.2.7
1286 //////////////////////////////////////////////////////////////////////////
1287 
1288  /*! This text is generated when the \\author command is used and
1289  * for the author section in man pages. */
1290  virtual QCString trAuthor(bool first_capital, bool singular)
1291  {
1292  QCString result((first_capital ? "Autor" : "autor"));
1293  result+= singular ? "ul":"ii";
1294  return result;
1295  }
1296 
1297 //////////////////////////////////////////////////////////////////////////
1298 // new since 1.2.11
1299 //////////////////////////////////////////////////////////////////////////
1300 
1301  /*! This text is put before the list of members referenced by a member
1302  */
1303  virtual QCString trReferences()
1304  {
1305  return "Referinţe";
1306  }
1307 
1308 //////////////////////////////////////////////////////////////////////////
1309 // new since 1.2.13
1310 //////////////////////////////////////////////////////////////////////////
1311 
1312  /*! used in member documentation blocks to produce a list of
1313  * members that are implemented by this one.
1314  */
1315  virtual QCString trImplementedFromList(int numEntries)
1316  {
1317  return "Implementează "+trWriteList(numEntries)+".";
1318  }
1319 
1320  /*! used in member documentation blocks to produce a list of
1321  * all members that implement this abstract member.
1322  */
1323  virtual QCString trImplementedInList(int numEntries)
1324  {
1325  return "Implementat în "+trWriteList(numEntries)+".";
1326  }
1327 
1328 //////////////////////////////////////////////////////////////////////////
1329 // new since 1.2.16
1330 //////////////////////////////////////////////////////////////////////////
1331 
1332  /*! used in RTF documentation as a heading for the Table
1333  * of Contents.
1334  */
1335  virtual QCString trRTFTableOfContents()
1336  {
1337  return "Cuprins";
1338  }
1339 
1340 //////////////////////////////////////////////////////////////////////////
1341 // new since 1.2.17
1342 //////////////////////////////////////////////////////////////////////////
1343 
1344  /*! Used as the header of the list of item that have been
1345  * flagged deprecated
1346  */
1347  virtual QCString trDeprecatedList()
1348  {
1349  return "Lista elementelor învechite (deprecated)";
1350  }
1351 
1352 //////////////////////////////////////////////////////////////////////////
1353 // new since 1.2.18
1354 //////////////////////////////////////////////////////////////////////////
1355 
1356  /*! Used as a header for declaration section of the events found in
1357  * a C# program
1358  */
1359  virtual QCString trEvents()
1360  {
1361  return "Evenimente";
1362  }
1363  /*! Header used for the documentation section of a class' events. */
1364  virtual QCString trEventDocumentation()
1365  {
1366  return "Documentaţia aferentă evenimentelor";
1367  }
1368 
1369 //////////////////////////////////////////////////////////////////////////
1370 // new since 1.3
1371 //////////////////////////////////////////////////////////////////////////
1372 
1373  /*! Used as a heading for a list of Java class types with package scope.
1374  */
1375  virtual QCString trPackageTypes()
1376  {
1377  return "Tipuri în pachet";
1378  }
1379  /*! Used as a heading for a list of Java class functions with package
1380  * scope.
1381  */
1382  virtual QCString trPackageMembers()
1383  {
1384  return "Funcţii în pachet";
1385  }
1386  /*! Used as a heading for a list of static Java class functions with
1387  * package scope.
1388  */
1390  {
1391  return "Funcţii statice în pachet";
1392  }
1393  /*! Used as a heading for a list of Java class variables with package
1394  * scope.
1395  */
1396  virtual QCString trPackageAttribs()
1397  {
1398  return "Atribute în pachet";
1399  }
1400  /*! Used as a heading for a list of static Java class variables with
1401  * package scope.
1402  */
1404  {
1405  return "Atribute statice în pachet";
1406  }
1407 
1408 //////////////////////////////////////////////////////////////////////////
1409 // new since 1.3.1
1410 //////////////////////////////////////////////////////////////////////////
1412  /*! Used in the quick index of a class/file/namespace member list page
1413  * to link to the unfiltered list of all members.
1414  */
1415  virtual QCString trAll()
1416  {
1417  return "Toate";
1418  }
1419  /*! Put in front of the call graph for a function. */
1420  virtual QCString trCallGraph()
1421  {
1422  return "Graful de apel al acestei funcţii:";
1423  }
1424 
1425 //////////////////////////////////////////////////////////////////////////
1426 // new since 1.3.3
1427 //////////////////////////////////////////////////////////////////////////
1428 
1429  /*! This string is used as the title for the page listing the search
1430  * results.
1431  */
1432  virtual QCString trSearchResultsTitle()
1433  {
1434  return "Rezultatele căutarii";
1435  }
1436  /*! This string is put just before listing the search results. The
1437  * text can be different depending on the number of documents found.
1438  * Inside the text you can put the special marker $num to insert
1439  * the number representing the actual number of search results.
1440  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1441  * value 2 represents 2 or more matches. HTML markup is allowed inside
1442  * the returned string.
1443  */
1444  virtual QCString trSearchResults(int numDocuments)
1445  {
1446  if (numDocuments==0)
1447  {
1448  return "Din păcate nu am găsit nici un document care să corespundă cererii.";
1449  }
1450  else if (numDocuments==1)
1451  {
1452  return "Am găsit <b>1</b> document corespunzând cererii.";
1453  }
1454  else
1455  {
1456  return "Am găsit <b>$num</b> documente corespunzând cererii. "
1457  "Lista documentelor găsite, sortate după relevanţă.";
1458  }
1459  }
1460  /*! This string is put before the list of matched words, for each search
1461  * result. What follows is the list of words that matched the query.
1462  */
1463  virtual QCString trSearchMatches()
1464  {
1465  return "Găsite:";
1466  }
1467 
1468 //////////////////////////////////////////////////////////////////////////
1469 // new since 1.3.8
1470 //////////////////////////////////////////////////////////////////////////
1471 
1472  /*! This is used in HTML as the title of page with source code for file filename
1473  */
1474  virtual QCString trSourceFile(QCString& filename)
1475  {
1476  return " Fişierul sursă " + filename;
1477  }
1479 //////////////////////////////////////////////////////////////////////////
1480 // new since 1.3.9
1481 //////////////////////////////////////////////////////////////////////////
1482 
1483  /*! This is used as the name of the chapter containing the directory
1484  * hierarchy.
1485  */
1486  virtual QCString trDirIndex()
1487  { return "Ierarhia directoarelor"; }
1488 
1489  /*! This is used as the name of the chapter containing the documentation
1490  * of the directories.
1491  */
1492  virtual QCString trDirDocumentation()
1493  { return "Documentaţia directoarelor"; }
1494 
1495  /*! This is used as the title of the directory index and also in the
1496  * Quick links of a HTML page, to link to the directory hierarchy.
1497  */
1498  virtual QCString trDirectories()
1499  { return "Directoare"; }
1500 
1501  /*! This returns a sentences that introduces the directory hierarchy.
1502  * and the fact that it is sorted alphabetically per level
1503  */
1504  virtual QCString trDirDescription()
1505  { return "Această ierarhie de directoare este sortată în general, "
1506  "dar nu complet, în ordine alfabetică:";
1507  }
1508 
1509  /*! This returns the title of a directory page. The name of the
1510  * directory is passed via \a dirName.
1511  */
1512  virtual QCString trDirReference(const QCString &dirName)
1513  {
1514  QCString result="Director-referinţă "; result+=dirName;
1515  return result;
1516  }
1517 
1518  /*! This returns the word directory with or without starting capital
1519  * (\a first_capital) and in sigular or plural form (\a singular).
1520  */
1521  virtual QCString trDir(bool first_capital, bool singular)
1522  {
1523  QCString result((first_capital ? "Directo" : "directo"));
1524  if (singular) result+="r"; else result="are";
1525  return result;
1526  }
1528 //////////////////////////////////////////////////////////////////////////
1529 // new since 1.4.1
1530 //////////////////////////////////////////////////////////////////////////
1531 
1532  /*! This text is added to the documentation when the \\overload command
1533  * is used for a overloaded function.
1534  */
1535  virtual QCString trOverloadText()
1536  {
1537  return "Aceasta este o funcţie membră suprascrisă. "
1538  "Diferă de funcţia de mai sus "
1539  "doar prin argumentele acceptate.";
1540  }
1541 
1542 //////////////////////////////////////////////////////////////////////////
1543 // new since 1.4.6
1544 //////////////////////////////////////////////////////////////////////////
1545 
1546  /*! This is used to introduce a caller (or called-by) graph */
1547  virtual QCString trCallerGraph()
1548  {
1549  return "Graful de apeluri pentru această funcţie:";
1550  }
1551 
1552  /*! This is used in the documentation of a file/namespace before the list
1553  * of documentation blocks for enumeration values
1554  */
1556  { return "Documentaţia Enumeratorilor"; }
1557 
1558 //////////////////////////////////////////////////////////////////////////
1559 // new since 1.5.4 (mainly for Fortran)
1560 //////////////////////////////////////////////////////////////////////////
1561 
1562  /*! header that is put before the list of member subprograms (Fortran). */
1564  { return "Documentaţia Funcţiei Membre/Subrutinei"; }
1565 
1566  /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1568  { return "Lista Tipurilor de Date"; }
1569 
1570  /*! This is put above each page as a link to all members of compounds (Fortran). */
1572  { return "Câmpuri de date"; }
1573 
1574  /*! This is an introduction to the annotated compound list (Fortran). */
1576  { return "Tipurile de date, cu scurte descrieri:"; }
1577 
1578  /*! This is an introduction to the page with all data types (Fortran). */
1579  virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
1580  {
1581  QCString result="Lista tuturor tipurilor de date ";
1582  if (!extractAll)
1583  {
1584  result+="documentate ";
1585  }
1586  result+=" cu legături către ";
1587  if (!extractAll)
1588  {
1589  result+="documentaţia structurii de date pentru fiecare membru";
1590  }
1591  else
1592  {
1593  result+="tipurile de date de care aparţin:";
1594  }
1595  return result;
1596  }
1597 
1598  /*! This is used in LaTeX as the title of the chapter with the
1599  * annotated compound index (Fortran).
1600  */
1602  { return "Indexul Tipurilor de Date"; }
1603 
1604  /*! This is used in LaTeX as the title of the chapter containing
1605  * the documentation of all data types (Fortran).
1606  */
1607  virtual QCString trTypeDocumentation()
1608  { return "Documentaţia Tipurilor de Date"; }
1609 
1610  /*! This is used in the documentation of a file as a header before the
1611  * list of (global) subprograms (Fortran).
1612  */
1613  virtual QCString trSubprograms()
1614  { return "Funcţii/Subrutine"; }
1615 
1616  /*! This is used in the documentation of a file/namespace before the list
1617  * of documentation blocks for subprograms (Fortran)
1618  */
1620  { return "Documentaţia Funcţiilor/Subrutinelor"; }
1621 
1622  /*! This is used in the documentation of a file/namespace/group before
1623  * the list of links to documented compounds (Fortran)
1624  */
1625  virtual QCString trDataTypes()
1626  { return "Tipuri de Date"; }
1627 
1628  /*! used as the title of page containing all the index of all modules (Fortran). */
1629  virtual QCString trModulesList()
1630  { return "Lista Modulelor"; }
1631 
1632  /*! used as an introduction to the modules list (Fortran) */
1633  virtual QCString trModulesListDescription(bool extractAll)
1634  {
1635  QCString result="Lista tuturor modulelor ";
1636  if (!extractAll) result+="documentate ";
1637  result+="cu scurte descrieri:";
1638  return result;
1639  }
1641  /*! used as the title of the HTML page of a module/type (Fortran) */
1642  virtual QCString trCompoundReferenceFortran(const QCString &clName,
1643  ClassDef::CompoundType compType,
1644  bool isTemplate)
1645  {
1646  QCString result="Referinţă la ";
1647  switch(compType)
1648  {
1649  case ClassDef::Class: result+="Modulul "; break;
1650  case ClassDef::Struct: result+="Tipul "; break;
1651  case ClassDef::Union: result+="Uniunea "; break;
1652  case ClassDef::Interface: result+="Interfaţa "; break;
1653  case ClassDef::Protocol: result+="Protocolul "; break;
1654  case ClassDef::Category: result+="Categoria "; break;
1655  case ClassDef::Exception: result+="Excepţia "; break;
1656  default: break;
1657  }
1658  if (isTemplate) result+="(Template) ";
1659  result+=(QCString)clName;
1660  return result;
1661  }
1662  /*! used as the title of the HTML page of a module (Fortran) */
1663  virtual QCString trModuleReference(const QCString &namespaceName)
1664  {
1665  QCString result="Referinţă la Modulul ";
1666  result += namespaceName;
1667  return result;
1668  }
1669 
1670  /*! This is put above each page as a link to all members of modules. (Fortran) */
1671  virtual QCString trModulesMembers()
1672  { return "Membrii Modulului"; }
1673 
1674  /*! This is an introduction to the page with all modules members (Fortran) */
1675  virtual QCString trModulesMemberDescription(bool extractAll)
1676  {
1677  QCString result="Lista tuturor membrilor ";
1678  if (!extractAll) result+="documentaţi ai ";
1679  result+="modulului cu legături către ";
1680  if (extractAll)
1681  {
1682  result+="documentaţia modulului pentru fiecare membru:";
1683  }
1684  else
1685  {
1686  result+="modulele de care aparţin:";
1687  }
1688  return result;
1689  }
1691  /*! This is used in LaTeX as the title of the chapter with the
1692  * index of all modules (Fortran).
1693  */
1694  virtual QCString trModulesIndex()
1695  { return "Indexul Modulelor"; }
1696 
1697  /*! This is used for translation of the word that will possibly
1698  * be followed by a single name or by a list of names
1699  * of the category.
1700  */
1701  virtual QCString trModule(bool first_capital, bool singular)
1702  {
1703  QCString result((first_capital ? "Modul" : "modul"));
1704  if (singular) result+="ul";
1705  else result += "ele";
1706  return result;
1707  }
1708  /*! This is put at the bottom of a module documentation page and is
1709  * followed by a list of files that were used to generate the page.
1710  */
1712  bool single)
1713  { // here s is one of " Module", " Struct" or " Union"
1714  // single is true implies a single file
1715  QCString result=(QCString)"Documentaţia ";
1716  switch(compType)
1717  {
1718  case ClassDef::Class: result+="modulului"; break;
1719  case ClassDef::Struct: result+="tipului"; break;
1720  case ClassDef::Union: result+="uniunii"; break;
1721  case ClassDef::Interface: result+="interfeţei"; break;
1722  case ClassDef::Protocol: result+="protocolului"; break;
1723  case ClassDef::Category: result+="categoriei"; break;
1724  case ClassDef::Exception: result+="excepţiei"; break;
1725  default: break;
1726  }
1727  result+=" a fost generată din următo";
1728  if (single) result+="rul fişier:"; else result+="arele fişiere:";
1729  return result;
1730  }
1731  /*! This is used for translation of the word that will possibly
1732  * be followed by a single name or by a list of names
1733  * of the category.
1734  */
1735  virtual QCString trType(bool first_capital, bool singular)
1736  {
1737  QCString result((first_capital ? "Tip" : "tip"));
1738  if (singular) result+="ul";
1739  else result += "urile";
1740  return result;
1741  }
1742  /*! This is used for translation of the word that will possibly
1743  * be followed by a single name or by a list of names
1744  * of the category.
1745  */
1746  virtual QCString trSubprogram(bool first_capital, bool singular)
1747  {
1748  QCString result((first_capital ? "Subprogram" : "subprogram"));
1749  if (singular) result+="ul";
1750  else result += "ele";
1751  return result;
1752  }
1753 
1754  /*! C# Type Constraint list */
1755  virtual QCString trTypeConstraints()
1756  {
1757  return "Constrângerile de Tip";
1758  }
1759 
1760 //////////////////////////////////////////////////////////////////////////
1761 // new since 1.6.0 (mainly for the new search engine)
1762 //////////////////////////////////////////////////////////////////////////
1763 
1764  /*! directory relation for \a name */
1765  virtual QCString trDirRelation(const QCString &name)
1766  {
1767  return QCString(name)+" Relație";
1768  }
1769 
1770  /*! Loading message shown when loading search results */
1771  virtual QCString trLoading()
1772  {
1773  return "Se încarcă...";
1774  }
1775 
1776  /*! Label used for search results in the global namespace */
1777  virtual QCString trGlobalNamespace()
1778  {
1779  return "Namespace Global";
1780  }
1781 
1782  /*! Message shown while searching */
1783  virtual QCString trSearching()
1784  {
1785  return "Căutare...";
1786  }
1787 
1788  /*! Text shown when no search results are found */
1789  virtual QCString trNoMatches()
1790  {
1791  return "Niciun rezultat";
1792  }
1793 
1794 //////////////////////////////////////////////////////////////////////////
1795 // new since 1.6.3 (missing items for the directory pages)
1796 //////////////////////////////////////////////////////////////////////////
1797 
1798  /*! when clicking a directory dependency label, a page with a
1799  * table is shown. The heading for the first column mentions the
1800  * source file that has a relation to another file.
1801  */
1802  virtual QCString trFileIn(const QCString &name)
1803  {
1804  return (QCString)"Fișierul din "+name;
1805  }
1806 
1807  /*! when clicking a directory dependency label, a page with a
1808  * table is shown. The heading for the second column mentions the
1809  * destination file that is included.
1810  */
1811  virtual QCString trIncludesFileIn(const QCString &name)
1812  {
1813  return (QCString)"Include fișierul din "+name;
1814  }
1815 
1816  /** Compiles a date string.
1817  * @param year Year in 4 digits
1818  * @param month Month of the year: 1=January
1819  * @param day Day of the Month: 1..31
1820  * @param dayOfWeek Day of the week: 1=Monday..7=Sunday
1821  * @param hour Hour of the day: 0..23
1822  * @param minutes Minutes in the hour: 0..59
1823  * @param seconds Seconds within the minute: 0..59
1824  * @param includeTime Include time in the result string?
1825  */
1826  virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
1827  int hour,int minutes,int seconds,
1828  bool includeTime)
1829  {
1830  static const char *days[] = { "Luni","Marți","Miercuri","Joi","Vineri","Sâmbătă","Duminică" };
1831  static const char *months[] = { "Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Noi","Dec" };
1832  QCString sdate;
1833  sdate.sprintf("%s %s %d %d",days[dayOfWeek-1],months[month-1],day,year);
1834  if (includeTime)
1835  {
1836  QCString stime;
1837  stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds);
1838  sdate+=stime;
1839  }
1840  return sdate;
1841  }
1842 
1843 //////////////////////////////////////////////////////////////////////////
1844 // new since 1.7.5
1845 //////////////////////////////////////////////////////////////////////////
1846 
1847  /*! Header for the page with bibliographic citations */
1848  virtual QCString trCiteReferences()
1849  { return "Referințe Bibliografice"; }
1850 
1851  /*! Text for copyright paragraph */
1852  virtual QCString trCopyright()
1853  { return "Copyright"; }
1854 
1855  /*! Header for the graph showing the directory dependencies */
1856  virtual QCString trDirDepGraph(const QCString &name)
1857  { return QCString("Grafic de dependență a directoarelor pentru ")+name+":"; }
1858 
1859 //////////////////////////////////////////////////////////////////////////
1860 // new since 1.8.0
1861 //////////////////////////////////////////////////////////////////////////
1862 
1863  /*! Detail level selector shown for hierarchical indices */
1864  virtual QCString trDetailLevel()
1865  { return "nivel de detaliu"; }
1866 
1867  /*! Section header for list of template parameters */
1868  virtual QCString trTemplateParameters()
1869  { return "Parametri Template"; }
1870 
1871  /*! Used in dot graph when UML_LOOK is enabled and there are many fields */
1872  virtual QCString trAndMore(const QCString &number)
1873  { return "și încă " + number; }
1874 
1875  /*! Used file list for a Java enum */
1876  virtual QCString trEnumGeneratedFromFiles(bool single)
1877  { QCString result = "Documentația pentru acest enum a fost generată din ";
1878  if (single)
1879  result += "următorul fișier:";
1880  else
1881  result += "următoarele fișiere:";
1882  return result;
1883  }
1884 
1885  /*! Header of a Java enum page (Java enums are represented as classes). */
1886  virtual QCString trEnumReference(const QCString &name)
1887  { return QCString(name)+" Referință Enum"; }
1888 
1889  /*! Used for a section containing inherited members */
1890  virtual QCString trInheritedFrom(const QCString &members,const QCString &what)
1891  { return QCString(members)+" moștenit(e) din "+what; }
1892 
1893  /*! Header of the sections with inherited members specific for the
1894  * base class(es)
1895  */
1897  { return "Membri Moșteniți Adiționali"; }
1898 
1899 //////////////////////////////////////////////////////////////////////////
1900 // new since 1.8.2
1901 //////////////////////////////////////////////////////////////////////////
1902 
1903  /*! Used as a tooltip for the toggle button that appears in the
1904  * navigation tree in the HTML output when GENERATE_TREEVIEW is
1905  * enabled. This tooltip explains the meaning of the button.
1906  */
1907  virtual QCString trPanelSynchronisationTooltip(bool enable)
1908  {
1909  QCString opt = enable ? "activa" : "dezactiva";
1910  return "apasă click pentru a "+opt+" sincronizarea panourilor";
1911  }
1912 
1913  /*! Used in a method of an Objective-C class that is declared in a
1914  * a category. Note that the @1 marker is required and is replaced
1915  * by a link.
1916  */
1917  virtual QCString trProvidedByCategory()
1918  {
1919  return "Furnizat de categoria @0.";
1920  }
1921 
1922  /*! Used in a method of an Objective-C category that extends a class.
1923  * Note that the @1 marker is required and is replaced by a link to
1924  * the class method.
1925  */
1926  virtual QCString trExtendsClass()
1927  {
1928  return "Extinde clasa @0.";
1929  }
1930 
1931  /*! Used as the header of a list of class methods in Objective-C.
1932  * These are similar to static public member functions in C++.
1933  */
1934  virtual QCString trClassMethods()
1935  {
1936  return "Metodele Clasei";
1937  }
1938 
1939  /*! Used as the header of a list of instance methods in Objective-C.
1940  * These are similar to public member functions in C++.
1941  */
1942  virtual QCString trInstanceMethods()
1943  {
1944  return "Metodele Instanței";
1945  }
1946 
1947  /*! Used as the header of the member functions of an Objective-C class.
1948  */
1950  {
1951  return "Documentația Metodelor";
1952  }
1953 
1954 //////////////////////////////////////////////////////////////////////////
1955 // new since 1.8.4
1956 //////////////////////////////////////////////////////////////////////////
1958  /** old style UNO IDL services: implemented interfaces */
1959  virtual QCString trInterfaces()
1960  { return "Interfețe exportate"; }
1961 
1962  /** old style UNO IDL services: inherited services */
1963  virtual QCString trServices()
1964  { return "Servicii Incluse"; }
1965 
1966  /** UNO IDL constant groups */
1967  virtual QCString trConstantGroups()
1968  { return "Grupuri Constante"; }
1969 
1970  /** UNO IDL constant groups */
1971  virtual QCString trConstantGroupReference(const QCString &namespaceName)
1972  {
1973  QCString result=namespaceName;
1974  result+=" Referință Grup Constant";
1975  return result;
1976  }
1977  /** UNO IDL service page title */
1978  virtual QCString trServiceReference(const QCString &sName)
1979  {
1980  QCString result=(QCString)sName;
1981  result+=" Referință Serviciu";
1982  return result;
1983  }
1984  /** UNO IDL singleton page title */
1985  virtual QCString trSingletonReference(const QCString &sName)
1986  {
1987  QCString result=(QCString)sName;
1988  result+=" Referință Singleton";
1989  return result;
1990  }
1991  /** UNO IDL service page */
1992  virtual QCString trServiceGeneratedFromFiles(bool single)
1993  {
1994  // single is true implies a single file
1995  QCString result=(QCString)"Documentația pentru acest serviciu "
1996  "a fost generată din ";
1997  if (single)
1998  result += "următorul fișier:";
1999  else
2000  result += "următoarele fișiere:";
2001  return result;
2002  }
2003  /** UNO IDL singleton page */
2004  virtual QCString trSingletonGeneratedFromFiles(bool single)
2005  {
2006  // single is true implies a single file
2007  QCString result=(QCString)"Documentația pentru acest singleton "
2008  "a fost generată din ";
2009  if (single)
2010  result += "următorul fișier:";
2011  else
2012  result += "următoarele fișiere:";
2013  return result;
2014  }
2015 
2016 };
2017 
2018 #endif
TranslatorRomanian::trClassMethods
virtual QCString trClassMethods()
Definition: translator_ro.h:1949
getDotImageExtension
QCString getDotImageExtension()
Definition: util.cpp:7032
TranslatorRomanian::trPackage
virtual QCString trPackage(const QCString &name)
Definition: translator_ro.h:1133
TranslatorRomanian::trModuleReference
virtual QCString trModuleReference(const QCString &namespaceName)
Definition: translator_ro.h:1678
TranslatorRomanian::trGlobal
virtual QCString trGlobal(bool first_capital, bool singular)
Definition: translator_ro.h:1292
TranslatorRomanian::trAdditionalInheritedMembers
virtual QCString trAdditionalInheritedMembers()
Definition: translator_ro.h:1911
TranslatorRomanian::trCompoundList
virtual QCString trCompoundList()
Definition: translator_ro.h:192
TranslatorRomanian::trInvariant
virtual QCString trInvariant()
Definition: translator_ro.h:886
TranslatorRomanian::trProtectedMembers
virtual QCString trProtectedMembers()
Definition: translator_ro.h:668
TranslatorRomanian::trEvents
virtual QCString trEvents()
Definition: translator_ro.h:1374
TranslatorRomanian::trGlobalNamespace
virtual QCString trGlobalNamespace()
Definition: translator_ro.h:1792
TranslatorRomanian::trClassDiagram
virtual QCString trClassDiagram(const QCString &clName)
Definition: translator_ro.h:543
TranslatorRomanian::trGeneratedBy
virtual QCString trGeneratedBy()
Definition: translator_ro.h:581
TranslatorRomanian::trExceptions
virtual QCString trExceptions()
Definition: translator_ro.h:577
TranslatorRomanian::trCompoundMembersDescriptionFortran
virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
Definition: translator_ro.h:1594
TranslatorRomanian::trNamespaceList
virtual QCString trNamespaceList()
Definition: translator_ro.h:587
TranslatorRomanian::trReimplementedFromList
virtual QCString trReimplementedFromList(int numEntries)
Definition: translator_ro.h:725
TranslatorRomanian::trThisIsTheListOfAllMembers
virtual QCString trThisIsTheListOfAllMembers()
Definition: translator_ro.h:150
TranslatorRomanian::trClassHierarchyDescription
virtual QCString trClassHierarchyDescription()
Definition: translator_ro.h:250
TranslatorRomanian::trCallGraph
virtual QCString trCallGraph()
Definition: translator_ro.h:1435
TranslatorRomanian::trFriends
virtual QCString trFriends()
Definition: translator_ro.h:603
TranslatorRomanian::trCode
virtual QCString trCode()
Definition: translator_ro.h:896
TranslatorRomanian::trSingletonGeneratedFromFiles
virtual QCString trSingletonGeneratedFromFiles(bool single)
UNO IDL singleton page
Definition: translator_ro.h:2019
TranslatorRomanian::trStaticPackageMembers
virtual QCString trStaticPackageMembers()
Definition: translator_ro.h:1404
TranslatorRomanian::trCompoundIndexFortran
virtual QCString trCompoundIndexFortran()
Definition: translator_ro.h:1616
TranslatorRomanian::trSubprogramDocumentation
virtual QCString trSubprogramDocumentation()
Definition: translator_ro.h:1634
TranslatorRomanian::trPostcondition
virtual QCString trPostcondition()
Definition: translator_ro.h:881
TranslatorRomanian::trDefinedAtLineInSourceFile
virtual QCString trDefinedAtLineInSourceFile()
Definition: translator_ro.h:828
TranslatorRomanian
Definition: translator_ro.h:45
ClassDef::Union
@ Union
Definition: classdef.h:109
TranslatorRomanian::trClassHierarchy
virtual QCString trClassHierarchy()
Definition: translator_ro.h:188
TranslatorRomanian::trFileReference
virtual QCString trFileReference(const QCString &fileName)
Definition: translator_ro.h:644
TranslatorRomanian::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_ro.h:1202
TranslatorRomanian::trSearchResultsTitle
virtual QCString trSearchResultsTitle()
Definition: translator_ro.h:1447
TranslatorRomanian::trDefinedInSourceFile
virtual QCString trDefinedInSourceFile()
Definition: translator_ro.h:832
TranslatorRomanian::trLegendTitle
virtual QCString trLegendTitle()
Definition: translator_ro.h:1016
TranslatorRomanian::trMore
virtual QCString trMore()
Definition: translator_ro.h:138
TranslatorRomanian::trCompounds
virtual QCString trCompounds()
Definition: translator_ro.h:518
TranslatorRomanian::trNamespaceReference
virtual QCString trNamespaceReference(const QCString &namespaceName)
Definition: translator_ro.h:652
TranslatorRomanian::trDirDescription
virtual QCString trDirDescription()
Definition: translator_ro.h:1519
TranslatorRomanian::trMemberDataDocumentation
virtual QCString trMemberDataDocumentation()
Definition: translator_ro.h:124
TranslatorRomanian::trEventDocumentation
virtual QCString trEventDocumentation()
Definition: translator_ro.h:1379
TranslatorRomanian::trCompoundReferenceFortran
virtual QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_ro.h:1657
TranslatorRomanian::trLegend
virtual QCString trLegend()
Definition: translator_ro.h:1081
TranslatorRomanian::trWriteList
virtual QCString trWriteList(int numEntries)
Definition: translator_ro.h:684
TranslatorRomanian::trModulesIndex
virtual QCString trModulesIndex()
Definition: translator_ro.h:1709
TranslatorRomanian::trTypedefDocumentation
virtual QCString trTypedefDocumentation()
Definition: translator_ro.h:494
TranslatorAdapter_1_8_15
Definition: translator_adapter.h:82
TranslatorRomanian::trNamespace
virtual QCString trNamespace(bool first_capital, bool singular)
Definition: translator_ro.h:1248
TranslatorRomanian::trReturnValues
virtual QCString trReturnValues()
Definition: translator_ro.h:810
TranslatorRomanian::trHierarchicalIndex
virtual QCString trHierarchicalIndex()
Definition: translator_ro.h:380
TranslatorRomanian::trTypeDocumentation
virtual QCString trTypeDocumentation()
Definition: translator_ro.h:1622
TranslatorRomanian::trPrivateAttribs
virtual QCString trPrivateAttribs()
Definition: translator_ro.h:961
TranslatorRomanian::trFileIndex
virtual QCString trFileIndex()
Definition: translator_ro.h:402
generateMarker
QCString generateMarker(int id)
Definition: util.cpp:284
TranslatorRomanian::trGotoDocumentation
virtual QCString trGotoDocumentation()
Definition: translator_ro.h:871
QCString::isEmpty
bool isEmpty() const
Returns TRUE iff the string is empty
Definition: qcstring.h:144
TranslatorRomanian::trSubprogram
virtual QCString trSubprogram(bool first_capital, bool singular)
Definition: translator_ro.h:1761
TranslatorRomanian::trPage
virtual QCString trPage(bool first_capital, bool singular)
Definition: translator_ro.h:1270
TranslatorRomanian::trFileList
virtual QCString trFileList()
Definition: translator_ro.h:206
TranslatorRomanian::trFile
virtual QCString trFile(bool first_capital, bool singular)
Definition: translator_ro.h:1237
ClassDef::CompoundType
CompoundType
The various compound types
Definition: classdef.h:107
TranslatorRomanian::trNamespaces
virtual QCString trNamespaces()
Definition: translator_ro.h:774
TranslatorRomanian::trAll
virtual QCString trAll()
Definition: translator_ro.h:1430
TranslatorRomanian::trPrivateTypes
virtual QCString trPrivateTypes()
Definition: translator_ro.h:957
TranslatorRomanian::trFileMembersDescription
virtual QCString trFileMembersDescription(bool extractAll)
Definition: translator_ro.h:329
TranslatorRomanian::trPrecondition
virtual QCString trPrecondition()
Definition: translator_ro.h:876
TranslatorRomanian::trCompoundListFortran
virtual QCString trCompoundListFortran()
Definition: translator_ro.h:1582
ClassDef::Interface
@ Interface
Definition: classdef.h:110
TranslatorRomanian::trImplementedFromList
virtual QCString trImplementedFromList(int numEntries)
Definition: translator_ro.h:1330
TranslatorRomanian::trSignals
virtual QCString trSignals()
Definition: translator_ro.h:664
TranslatorRomanian::trParameters
virtual QCString trParameters()
Definition: translator_ro.h:573
TranslatorRomanian::trReferences
virtual QCString trReferences()
Definition: translator_ro.h:1318
TranslatorRomanian::trPrivateMembers
virtual QCString trPrivateMembers()
Definition: translator_ro.h:674
TranslatorRomanian::trMemberTypedefDocumentation
virtual QCString trMemberTypedefDocumentation()
Definition: translator_ro.h:112
TranslatorRomanian::trModulesList
virtual QCString trModulesList()
Definition: translator_ro.h:1644
TranslatorRomanian::trSearching
virtual QCString trSearching()
Definition: translator_ro.h:1798
TranslatorRomanian::trPublicSlots
virtual QCString trPublicSlots()
Definition: translator_ro.h:662
TranslatorRomanian::trMemberList
virtual QCString trMemberList()
Definition: translator_ro.h:146
TranslatorRomanian::trVariableDocumentation
virtual QCString trVariableDocumentation()
Definition: translator_ro.h:512
TranslatorRomanian::latexLanguageSupportCommand
virtual QCString latexLanguageSupportCommand()
Definition: translator_ro.h:88
TranslatorRomanian::trCollaborationDiagram
virtual QCString trCollaborationDiagram(const QCString &clName)
Definition: translator_ro.h:851
TranslatorRomanian::trDeprecatedList
virtual QCString trDeprecatedList()
Definition: translator_ro.h:1362
TranslatorRomanian::trInheritsList
virtual QCString trInheritsList(int numEntries)
Definition: translator_ro.h:709
TranslatorRomanian::trProperties
virtual QCString trProperties()
Definition: translator_ro.h:1106
TranslatorRomanian::trStaticPublicMembers
virtual QCString trStaticPublicMembers()
Definition: translator_ro.h:666
TranslatorRomanian::trGeneratedFromFiles
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
Definition: translator_ro.h:784
TranslatorRomanian::trGeneratedAt
virtual QCString trGeneratedAt(const QCString &date, const QCString &projName)
Definition: translator_ro.h:534
TranslatorRomanian::trEnumGeneratedFromFiles
virtual QCString trEnumGeneratedFromFiles(bool single)
Definition: translator_ro.h:1891
TranslatorRomanian::trSearch
virtual QCString trSearch()
Definition: translator_ro.h:246
TranslatorRomanian::trInitialValue
virtual QCString trInitialValue()
Definition: translator_ro.h:891
TranslatorRomanian::trReferencedBy
virtual QCString trReferencedBy()
Definition: translator_ro.h:989
ClassDef::Class
@ Class
Definition: classdef.h:107
TranslatorRomanian::trSubprograms
virtual QCString trSubprograms()
Definition: translator_ro.h:1628
TranslatorRomanian::trMember
virtual QCString trMember(bool first_capital, bool singular)
Definition: translator_ro.h:1281
TranslatorRomanian::trAttention
virtual QCString trAttention()
Definition: translator_ro.h:997
TranslatorRomanian::trPrivateSlots
virtual QCString trPrivateSlots()
Definition: translator_ro.h:676
TranslatorRomanian::trFunctions
virtual QCString trFunctions()
Definition: translator_ro.h:470
TranslatorRomanian::trClasses
virtual QCString trClasses()
Definition: translator_ro.h:1121
TranslatorRomanian::trInclDepGraph
virtual QCString trInclDepGraph(const QCString &fName)
Definition: translator_ro.h:856
TranslatorRomanian::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_ro.h:1841
TranslatorRomanian::trVariables
virtual QCString trVariables()
Definition: translator_ro.h:476
TranslatorRomanian::trRTFGeneralIndex
virtual QCString trRTFGeneralIndex()
Definition: translator_ro.h:1217
TranslatorRomanian::trPackageTypes
virtual QCString trPackageTypes()
Definition: translator_ro.h:1390
TranslatorRomanian::trGeneratedFromFilesFortran
virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single)
Definition: translator_ro.h:1726
TranslatorRomanian::trInstanceMethods
virtual QCString trInstanceMethods()
Definition: translator_ro.h:1957
TranslatorRomanian::trServiceReference
virtual QCString trServiceReference(const QCString &sName)
UNO IDL service page title
Definition: translator_ro.h:1993
TranslatorRomanian::trForInternalUseOnly
virtual QCString trForInternalUseOnly()
Definition: translator_ro.h:549
TranslatorRomanian::trTestList
virtual QCString trTestList()
Definition: translator_ro.h:1096
TranslatorRomanian::trModuleIndex
virtual QCString trModuleIndex()
Definition: translator_ro.h:374
TranslatorRomanian::trDirIndex
virtual QCString trDirIndex()
Definition: translator_ro.h:1501
TranslatorRomanian::trNamespaceMemberDescription
virtual QCString trNamespaceMemberDescription(bool extractAll)
Definition: translator_ro.h:743
TranslatorRomanian::trDefineValue
virtual QCString trDefineValue()
Definition: translator_ro.h:1153
TranslatorRomanian::trTypeConstraints
virtual QCString trTypeConstraints()
Definition: translator_ro.h:1770
TranslatorRomanian::trModulesMembers
virtual QCString trModulesMembers()
Definition: translator_ro.h:1686
TranslatorRomanian::trEnumerations
virtual QCString trEnumerations()
Definition: translator_ro.h:464
TranslatorRomanian::trDirRelation
virtual QCString trDirRelation(const QCString &name)
Definition: translator_ro.h:1780
TranslatorRomanian::trDefineDocumentation
virtual QCString trDefineDocumentation()
Definition: translator_ro.h:488
TranslatorRomanian::trFileIn
virtual QCString trFileIn(const QCString &name)
Definition: translator_ro.h:1817
TranslatorRomanian::trMainPage
virtual QCString trMainPage()
Definition: translator_ro.h:815
TranslatorRomanian::trFunctionDocumentation
virtual QCString trFunctionDocumentation()
Definition: translator_ro.h:506
TranslatorRomanian::trDataTypes
virtual QCString trDataTypes()
Definition: translator_ro.h:1640
TranslatorRomanian::trMemberEnumerationDocumentation
virtual QCString trMemberEnumerationDocumentation()
Definition: translator_ro.h:116
TranslatorRomanian::trStaticProtectedAttribs
virtual QCString trStaticProtectedAttribs()
Definition: translator_ro.h:953
TranslatorRomanian::trDeprecated
virtual QCString trDeprecated()
Definition: translator_ro.h:841
TranslatorRomanian::trInheritedFrom
virtual QCString trInheritedFrom(const QCString &members, const QCString &what)
Definition: translator_ro.h:1905
TranslatorRomanian::trModulesListDescription
virtual QCString trModulesListDescription(bool extractAll)
Definition: translator_ro.h:1648
TranslatorRomanian::trExtendsClass
virtual QCString trExtendsClass()
Definition: translator_ro.h:1941
TranslatorRomanian::trDefines
virtual QCString trDefines()
Definition: translator_ro.h:452
TranslatorRomanian::trPackageAttribs
virtual QCString trPackageAttribs()
Definition: translator_ro.h:1411
TranslatorRomanian::trTypedefs
virtual QCString trTypedefs()
Definition: translator_ro.h:458
TranslatorRomanian::trVersion
virtual QCString trVersion()
Definition: translator_ro.h:557
TranslatorRomanian::trMethodDocumentation
virtual QCString trMethodDocumentation()
Definition: translator_ro.h:1964
TranslatorRomanian::trCompoundListDescription
virtual QCString trCompoundListDescription()
Definition: translator_ro.h:266
TranslatorRomanian::trModule
virtual QCString trModule(bool first_capital, bool singular)
Definition: translator_ro.h:1716
TranslatorRomanian::trConstructorDocumentation
virtual QCString trConstructorDocumentation()
Definition: translator_ro.h:861
TranslatorRomanian::trServiceGeneratedFromFiles
virtual QCString trServiceGeneratedFromFiles(bool single)
UNO IDL service page
Definition: translator_ro.h:2007
TranslatorRomanian::trEnumerationValueDocumentation
virtual QCString trEnumerationValueDocumentation()
Definition: translator_ro.h:1570
TranslatorRomanian::trReferenceManual
virtual QCString trReferenceManual()
Definition: translator_ro.h:446
TranslatorRomanian::trPublicMembers
virtual QCString trPublicMembers()
Definition: translator_ro.h:660
TranslatorRomanian::trCompoundMembersDescription
virtual QCString trCompoundMembersDescription(bool extractAll)
Definition: translator_ro.h:285
TranslatorRomanian::trStaticPublicAttribs
virtual QCString trStaticPublicAttribs()
Definition: translator_ro.h:941
TranslatorRomanian::trDir
virtual QCString trDir(bool first_capital, bool singular)
Definition: translator_ro.h:1536
TranslatorRomanian::trPublicTypes
virtual QCString trPublicTypes()
Definition: translator_ro.h:925
TranslatorRomanian::trStaticPrivateAttribs
virtual QCString trStaticPrivateAttribs()
Definition: translator_ro.h:965
TranslatorRomanian::trNamespaceIndex
virtual QCString trNamespaceIndex()
Definition: translator_ro.h:758
TranslatorRomanian::trInterfaces
virtual QCString trInterfaces()
old style UNO IDL services: implemented interfaces
Definition: translator_ro.h:1974
TranslatorRomanian::trPackageMembers
virtual QCString trPackageMembers()
Definition: translator_ro.h:1397
TranslatorRomanian::trModuleDocumentation
virtual QCString trModuleDocumentation()
Definition: translator_ro.h:408
TranslatorRomanian::trSearchMatches
virtual QCString trSearchMatches()
Definition: translator_ro.h:1478
TranslatorRomanian::trListOfAllMembers
virtual QCString trListOfAllMembers()
Definition: translator_ro.h:142
TranslatorRomanian::trBugList
virtual QCString trBugList()
Definition: translator_ro.h:1168
TranslatorRomanian::trPageIndex
virtual QCString trPageIndex()
Definition: translator_ro.h:912
TranslatorRomanian::trOverloadText
virtual QCString trOverloadText()
Definition: translator_ro.h:1550
TranslatorRomanian::trConstantGroupReference
virtual QCString trConstantGroupReference(const QCString &namespaceName)
UNO IDL constant groups
Definition: translator_ro.h:1986
TranslatorRomanian::trDirDepGraph
virtual QCString trDirDepGraph(const QCString &name)
Definition: translator_ro.h:1871
TranslatorRomanian::trRelatedFunctionDocumentation
virtual QCString trRelatedFunctionDocumentation()
Definition: translator_ro.h:613
TranslatorRomanian::trCompoundReference
virtual QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_ro.h:621
TranslatorRomanian::trEnumerationValues
virtual QCString trEnumerationValues()
Definition: translator_ro.h:482
TranslatorRomanian::trFileListDescription
virtual QCString trFileListDescription(bool extractAll)
Definition: translator_ro.h:256
TranslatorRomanian::trLoading
virtual QCString trLoading()
Definition: translator_ro.h:1786
TranslatorRomanian::trDirectories
virtual QCString trDirectories()
Definition: translator_ro.h:1513
TranslatorRomanian::trSeeAlso
virtual QCString trSeeAlso()
Definition: translator_ro.h:569
TranslatorRomanian::trClass
virtual QCString trClass(bool first_capital, bool singular)
Definition: translator_ro.h:1226
TranslatorRomanian::trAuthor
virtual QCString trAuthor(bool first_capital, bool singular)
Definition: translator_ro.h:1305
ClassDef::Category
@ Category
Definition: classdef.h:112
TranslatorRomanian::trGraphicalHierarchy
virtual QCString trGraphicalHierarchy()
Definition: translator_ro.h:900
ClassDef::Struct
@ Struct
Definition: classdef.h:108
TranslatorRomanian::trCiteReferences
virtual QCString trCiteReferences()
Definition: translator_ro.h:1863
TranslatorRomanian::trImplementedInList
virtual QCString trImplementedInList(int numEntries)
Definition: translator_ro.h:1338
TranslatorRomanian::trCompoundMembers
virtual QCString trCompoundMembers()
Definition: translator_ro.h:210
TranslatorRomanian::trProvidedByCategory
virtual QCString trProvidedByCategory()
Definition: translator_ro.h:1932
TranslatorRomanian::trConstantGroups
virtual QCString trConstantGroups()
UNO IDL constant groups
Definition: translator_ro.h:1982
TranslatorRomanian::trCallerGraph
virtual QCString trCallerGraph()
Definition: translator_ro.h:1562
TranslatorRomanian::trPageDocumentation
virtual QCString trPageDocumentation()
Definition: translator_ro.h:442
TranslatorRomanian::trCompoundListDescriptionFortran
virtual QCString trCompoundListDescriptionFortran()
Definition: translator_ro.h:1590
TranslatorRomanian::trSince
virtual QCString trSince()
Definition: translator_ro.h:1006
TranslatorRomanian::trExamplesDescription
virtual QCString trExamplesDescription()
Definition: translator_ro.h:353
TranslatorRomanian::trEnumerationTypeDocumentation
virtual QCString trEnumerationTypeDocumentation()
Definition: translator_ro.h:500
TranslatorRomanian::trNoMatches
virtual QCString trNoMatches()
Definition: translator_ro.h:1804
TranslatorRomanian::trPropertyDocumentation
virtual QCString trPropertyDocumentation()
Definition: translator_ro.h:1111
TranslatorRomanian::trPackageListDescription
virtual QCString trPackageListDescription()
Definition: translator_ro.h:1143
TranslatorRomanian::trProtectedTypes
virtual QCString trProtectedTypes()
Definition: translator_ro.h:945
TranslatorRomanian::trNamespaceMembers
virtual QCString trNamespaceMembers()
Definition: translator_ro.h:739
TranslatorRomanian::trStaticPrivateMembers
virtual QCString trStaticPrivateMembers()
Definition: translator_ro.h:678
TranslatorRomanian::trStaticPackageAttribs
virtual QCString trStaticPackageAttribs()
Definition: translator_ro.h:1418
TranslatorRomanian::trIncludesFileIn
virtual QCString trIncludesFileIn(const QCString &name)
Definition: translator_ro.h:1826
TranslatorRomanian::trServices
virtual QCString trServices()
old style UNO IDL services: inherited services
Definition: translator_ro.h:1978
TranslatorRomanian::trSingletonReference
virtual QCString trSingletonReference(const QCString &sName)
UNO IDL singleton page title
Definition: translator_ro.h:2000
TranslatorRomanian::trDirDocumentation
virtual QCString trDirDocumentation()
Definition: translator_ro.h:1507
TranslatorRomanian::trStaticProtectedMembers
virtual QCString trStaticProtectedMembers()
Definition: translator_ro.h:672
TranslatorRomanian::trDetailedDescription
virtual QCString trDetailedDescription()
Definition: translator_ro.h:108
TranslatorRomanian::trPackages
virtual QCString trPackages()
Definition: translator_ro.h:1148
TranslatorRomanian::trNamespaceListDescription
virtual QCString trNamespaceListDescription(bool extractAll)
Definition: translator_ro.h:591
TranslatorRomanian::trDocumentation
virtual QCString trDocumentation()
Definition: translator_ro.h:368
Config_getBool
#define Config_getBool(name)
Definition: config.h:33
ClassDef::Protocol
@ Protocol
Definition: classdef.h:111
TranslatorRomanian::trCompoundIndex
virtual QCString trCompoundIndex()
Definition: translator_ro.h:386
TranslatorRomanian::trMemberFunctionDocumentation
virtual QCString trMemberFunctionDocumentation()
Definition: translator_ro.h:120
TranslatorRomanian::trFileDocumentation
virtual QCString trFileDocumentation()
Definition: translator_ro.h:430
TranslatorRomanian::trType
virtual QCString trType(bool first_capital, bool singular)
Definition: translator_ro.h:1750
TranslatorRomanian::trTemplateParameters
virtual QCString trTemplateParameters()
Definition: translator_ro.h:1883
TranslatorRomanian::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_ro.h:1211
TranslatorRomanian::trClassDocumentation
virtual QCString trClassDocumentation()
Definition: translator_ro.h:414
TranslatorRomanian::trDefinedIn
virtual QCString trDefinedIn()
Definition: translator_ro.h:176
TranslatorRomanian::trGroup
virtual QCString trGroup(bool first_capital, bool singular)
Definition: translator_ro.h:1259
TranslatorRomanian::trMemberFunctionDocumentationFortran
virtual QCString trMemberFunctionDocumentationFortran()
Definition: translator_ro.h:1578
TranslatorRomanian::trSearchResults
virtual QCString trSearchResults(int numDocuments)
Definition: translator_ro.h:1459
TranslatorRomanian::trAndMore
virtual QCString trAndMore(const QCString &number)
Definition: translator_ro.h:1887
TranslatorRomanian::trRelatedFunctions
virtual QCString trRelatedFunctions()
Definition: translator_ro.h:100
TranslatorRomanian::trTodo
virtual QCString trTodo()
Definition: translator_ro.h:975
TranslatorRomanian::trEnumValue
virtual QCString trEnumValue()
Definition: translator_ro.h:172
TranslatorRomanian::trEnumReference
virtual QCString trEnumReference(const QCString &name)
Definition: translator_ro.h:1901
TranslatorRomanian::trRemarks
virtual QCString trRemarks()
Definition: translator_ro.h:993
TranslatorRomanian::trTodoList
virtual QCString trTodoList()
Definition: translator_ro.h:980
TranslatorRomanian::trLegendDocs
virtual QCString trLegendDocs()
Definition: translator_ro.h:1021
TranslatorRomanian::trCompoundMembersFortran
virtual QCString trCompoundMembersFortran()
Definition: translator_ro.h:1586
TranslatorRomanian::trPublicAttribs
virtual QCString trPublicAttribs()
Definition: translator_ro.h:929
TranslatorRomanian::trRelatedSubscript
virtual QCString trRelatedSubscript()
Definition: translator_ro.h:104
TranslatorRomanian::trProtectedSlots
virtual QCString trProtectedSlots()
Definition: translator_ro.h:670
TranslatorRomanian::trWarning
virtual QCString trWarning()
Definition: translator_ro.h:553
TranslatorRomanian::trModulesMemberDescription
virtual QCString trModulesMemberDescription(bool extractAll)
Definition: translator_ro.h:1690
TranslatorRomanian::trModules
virtual QCString trModules()
Definition: translator_ro.h:184
TranslatorRomanian::trModulesDescription
virtual QCString trModulesDescription()
Definition: translator_ro.h:361
TranslatorRomanian::trReimplementedInList
virtual QCString trReimplementedInList(int numEntries)
Definition: translator_ro.h:733
TranslatorRomanian::trTest
virtual QCString trTest()
Definition: translator_ro.h:1091
TranslatorRomanian::trCopyright
virtual QCString trCopyright()
Definition: translator_ro.h:1867
TranslatorRomanian::trRelatedPages
virtual QCString trRelatedPages()
Definition: translator_ro.h:238
TranslatorRomanian::trDetailLevel
virtual QCString trDetailLevel()
Definition: translator_ro.h:1879
TranslatorRomanian::trSourceFile
virtual QCString trSourceFile(QCString &filename)
Definition: translator_ro.h:1489
TranslatorRomanian::trExamples
virtual QCString trExamples()
Definition: translator_ro.h:242
TranslatorRomanian::trBug
virtual QCString trBug()
Definition: translator_ro.h:1163
TranslatorRomanian::trRTFTableOfContents
virtual QCString trRTFTableOfContents()
Definition: translator_ro.h:1350
TranslatorRomanian::trIncludingInheritedMembers
virtual QCString trIncludingInheritedMembers()
Definition: translator_ro.h:154
TranslatorRomanian::trPageAbbreviation
virtual QCString trPageAbbreviation()
Definition: translator_ro.h:821
TranslatorRomanian::trInclByDepGraph
virtual QCString trInclByDepGraph()
Definition: translator_ro.h:1001
TranslatorRomanian::trPackageList
virtual QCString trPackageList()
Definition: translator_ro.h:1138
TranslatorRomanian::trGotoSourceCode
virtual QCString trGotoSourceCode()
Definition: translator_ro.h:866
TranslatorRomanian::trISOLang
virtual QCString trISOLang()
Definition: translator_ro.h:92
TranslatorRomanian::trGeneratedAutomatically
virtual QCString trGeneratedAutomatically(const QCString &s)
Definition: translator_ro.h:160
TranslatorRomanian::trRelatedPagesDescription
virtual QCString trRelatedPagesDescription()
Definition: translator_ro.h:357
TranslatorRomanian::trNote
virtual QCString trNote()
Definition: translator_ro.h:921
ClassDef::Exception
@ Exception
Definition: classdef.h:113
TranslatorRomanian::trNamespaceDocumentation
virtual QCString trNamespaceDocumentation()
Definition: translator_ro.h:764
TranslatorRomanian::trFileMembers
virtual QCString trFileMembers()
Definition: translator_ro.h:224
TranslatorRomanian::trInheritedByList
virtual QCString trInheritedByList(int numEntries)
Definition: translator_ro.h:717
TranslatorRomanian::trGotoGraphicalHierarchy
virtual QCString trGotoGraphicalHierarchy()
Definition: translator_ro.h:904
TranslatorRomanian::trPanelSynchronisationTooltip
virtual QCString trPanelSynchronisationTooltip(bool enable)
Definition: translator_ro.h:1922
TranslatorRomanian::trExampleDocumentation
virtual QCString trExampleDocumentation()
Definition: translator_ro.h:436
TranslatorRomanian::trReturns
virtual QCString trReturns()
Definition: translator_ro.h:565
TranslatorRomanian::trGotoTextualHierarchy
virtual QCString trGotoTextualHierarchy()
Definition: translator_ro.h:908
QCString::sprintf
QCString & sprintf(const char *format,...)
Definition: qcstring.cpp:24
TranslatorRomanian::idLanguage
virtual QCString idLanguage()
Definition: translator_ro.h:72
TranslatorRomanian::trDirReference
virtual QCString trDirReference(const QCString &dirName)
Definition: translator_ro.h:1527
TranslatorRomanian::trDate
virtual QCString trDate()
Definition: translator_ro.h:561
TranslatorRomanian::trEnumName
virtual QCString trEnumName()
Definition: translator_ro.h:168
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108
TranslatorRomanian::trProtectedAttribs
virtual QCString trProtectedAttribs()
Definition: translator_ro.h:949