Doxygen
translator_fr.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  * The translation into French was provided by
17  * Christophe Bordeux (bordeux@lig.di.epfl.ch)
18  * and after version 1.2.0 by Xavier Outhier (xouthier@yahoo.fr)
19  * member of the non for profit association D2SET (http://d2set.free.fr).
20  * Benoît BROSSE (Benoit dot BROSSE at ingenico dot com) was added
21  * after the 1.8.4 release.
22  */
23 
24 /******************************************************************************
25  * History of content
26  *
27  * Date | Description
28  * ============+=============================================================
29  * 2001-11-22 | Removed obsolet methods:
30  * | QCString latexBabelPackage()
31  * | QCString trAuthor()
32  * | QCString trAuthors()
33  * | QCString trFiles()
34  * | QCString trIncludeFile()
35  * | QCString trVerbatimText(const char *f)
36  * -------------+------------------------------------------------------------
37  * 2002-01-23 | Update for new since 1.2.13
38  * -------------+------------------------------------------------------------
39  * 2002-07-11 | Update for new since 1.2.16
40  * -------------+------------------------------------------------------------
41  * 2002-09-24 | Update for new since 1.2.17
42  * -------------+------------------------------------------------------------
43  * 2002-10-22 | Update for new since 1.2.18
44  * -------------+------------------------------------------------------------
45  * 2003-02-04 | Corrected typo. Thanks to Bertrand M. :)
46  * -------------+------------------------------------------------------------
47  * 2003-03-29 | Update for new since 1.3
48  * -------------+------------------------------------------------------------
49  * 2003-03-29 | Changed fonction into méthode.
50  * -------------+------------------------------------------------------------
51  * 2003-06-06 | Fixed code page problem appeared between 1.42 and 1.43 in CVS
52  * -------------+------------------------------------------------------------
53  * 2003-06-10 | Update for new since 1.3.1
54  * -------------+------------------------------------------------------------
55  * 2003-09-12 | Update for new since 1.3.3
56  * -------------+------------------------------------------------------------
57  * 2004-04-30 | Updates by Jacques Bouchard <jacques.bouchard@noos.fr>:
58  * | - spaces between ':' removed (should be added by the renderer)
59  * | - missing spaces added
60  * | - missing tests for OPTIMIZE_OUTPUT_FOR_C added
61  * | - translations corrected
62  * | - translator_fr.h now conforms exactly to translator_en.h
63  * | (try: gvim -d translator_en.h translator_fr.h)
64  * -------------+------------------------------------------------------------
65  * 2005-07-12 | Update for new since 1.4.1
66  * -------------+------------------------------------------------------------
67  * 2005-10-09 | Update for new since 1.4.6
68  * | Added virtual QCString trCallerGraph()
69  * | Removed virtual QCString trHeaderFilesDescription()
70  * | Removed virtual QCString trField(bool first_capital, bool singular)
71  * | Removed virtual QCString trPackageDocumentation()
72  * | Removed virtual QCString trSources()
73  * | Removed virtual QCString trReimplementedForInternalReasons()
74  * | Removed virtual QCString trInterfaces()
75  * | Removed virtual QCString trHeaderFiles()
76  * | Removed virtual QCString trBugsAndLimitations()
77  * | Removed virtual QCString trNoDescriptionAvailable()
78  * | Corrected some misspelling thanx to Christophe C.
79  * -------------+------------------------------------------------------------
80  */
81 
82 #ifndef TRANSLATOR_FR_H
83 #define TRANSLATOR_FR_H
84 
85 // When defining a translator class for the new language, follow
86 // the description in the documentation. One of the steps says
87 // that you should copy the translator_en.h (this) file to your
88 // translator_xx.h new file. Your new language should use the
89 // Translator class as the base class. This means that you need to
90 // implement exactly the same (pure virtual) methods as the
91 // TranslatorEnglish does. Because of this, it is a good idea to
92 // start with the copy of TranslatorEnglish and replace the strings
93 // one by one.
94 //
95 // It is not necessary to include "translator.h" or
96 // "translator_adapter.h" here. The files are included in the
97 // language.cpp correctly. Not including any of the mentioned
98 // files frees the maintainer from thinking about whether the
99 // first, the second, or both files should be included or not, and
100 // why. This holds namely for localized translators because their
101 // base class is changed occasionaly to adapter classes when the
102 // Translator class changes the interface, or back to the
103 // Translator class (by the local maintainer) when the localized
104 // translator is made up-to-date again.
105 
107 {
108  public:
109 
110  // --- Language control methods -------------------
111 
112  /*! Used for identification of the language. The identification
113  * should not be translated. It should be replaced by the name
114  * of the language in English using lower-case characters only
115  * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
116  * the identification used in language.cpp.
117  */
118  virtual QCString idLanguage()
119  { return "french"; }
120 
121  /*! Used to get the LaTeX command(s) for the language support.
122  * This method should return string with commands that switch
123  * LaTeX to the desired language. For example
124  * <pre>"\\usepackage[german]{babel}\n"
125  * </pre>
126  * or
127  * <pre>"\\usepackage{polski}\n"
128  * "\\usepackage[latin2]{inputenc}\n"
129  * "\\usepackage[T1]{fontenc}\n"
130  * </pre>
131  */
133  {
134  return "\\usepackage[french]{babel}\n"
135  "\\NoAutoSpaceBeforeFDP\n";
136  }
137 
138  virtual QCString trISOLang()
139  {
140  return "fr";
141  }
142 
143  // --- Language translation methods -------------------
144 
145  /*! used in the compound documentation before a list of related functions. */
146  virtual QCString trRelatedFunctions()
147  { return "Fonctions associées"; }
148 
149  /*! subscript for the related functions. */
150  virtual QCString trRelatedSubscript()
151  { return "(Notez que ce ne sont pas des fonctions membres)"; }
152 
153  /*! header that is put before the detailed description of files, classes and namespaces. */
155  { return "Description détaillée"; }
156 
157  /*! header that is put before the list of typedefs. */
159  { return "Documentation des définitions de type membres"; }
160 
161  /*! header that is put before the list of enumerations. */
163  { return "Documentation des énumérations membres"; }
164 
165  /*! header that is put before the list of member functions. */
167  { return "Documentation des fonctions membres"; }
168 
169  /*! header that is put before the list of member attributes. */
171  {
172  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
173  {
174  return "Documentation des champs";
175  }
176  else
177  {
178  return "Documentation des données membres";
179  }
180  }
181 
182  /*! this is the text of a link put after brief descriptions. */
183  virtual QCString trMore()
184  { return "Plus de détails..."; }
185 
186  /*! put in the class documentation */
187  virtual QCString trListOfAllMembers()
188  { return "Liste de tous les membres"; }
189 
190  /*! used as the title of the "list of all members" page of a class */
191  virtual QCString trMemberList()
192  { return "Liste des membres"; }
193 
194  /*! this is the first part of a sentence that is followed by a class name */
196  { return "Liste complète des membres de "; }
197 
198  /*! this is the remainder of the sentence after the class name */
200  { return ", y compris les membres hérités :"; }
201 
202  /*! this is put at the author sections at the bottom of man pages.
203  * parameter s is name of the project name.
204  */
205  virtual QCString trGeneratedAutomatically(const QCString &s)
206  { QCString result="Généré automatiquement par Doxygen";
207  if (!s.isEmpty()) result+=(QCString)" pour "+s;
208  result+=" à partir du code source.";
209  return result;
210  }
211 
212  /*! put after an enum name in the list of all members */
213  virtual QCString trEnumName()
214  { return "énumération"; }
215 
216  /*! put after an enum value in the list of all members */
217  virtual QCString trEnumValue()
218  { return "valeur énumérée"; }
219 
220  /*! put after an undocumented member in the list of all members */
221  virtual QCString trDefinedIn()
222  { return "défini dans"; }
223 
224  // quick reference sections
225 
226  /*! This is put above each page as a link to the list of all groups of
227  * compounds or files (see the \\group command).
228  */
229  virtual QCString trModules()
230  { return "Modules"; }
231 
232  /*! This is put above each page as a link to the class hierarchy */
233  virtual QCString trClassHierarchy()
234  { return "Hiérarchie des classes"; }
235 
236  /*! This is put above each page as a link to the list of annotated classes */
237  virtual QCString trCompoundList()
238  {
239  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
240  {
241  return "Structures de données";
242  }
243  else
244  {
245  return "Liste des classes";
246  }
247  }
248 
249  /*! This is put above each page as a link to the list of documented files */
250  virtual QCString trFileList()
251  { return "Liste des fichiers"; }
252 
253  /*! This is put above each page as a link to all members of compounds. */
254  virtual QCString trCompoundMembers()
255  {
256  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
257  {
258  return "Champs de donnée";
259  }
260  else
261  {
262  return "Membres de classe";
263  }
264  }
265 
266  /*! This is put above each page as a link to all members of files. */
267  virtual QCString trFileMembers()
268  {
269  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
270  {
271  return "Variables globale";
272  }
273  else
274  {
275  return "Membres de fichier";
276  }
277  }
278 
279  /*! This is put above each page as a link to all related pages. */
280  virtual QCString trRelatedPages()
281  { return "Pages associées"; }
282 
283  /*! This is put above each page as a link to all examples. */
284  virtual QCString trExamples()
285  { return "Exemples"; }
286 
287  /*! This is put above each page as a link to the search engine. */
288  virtual QCString trSearch()
289  { return "Recherche"; }
290 
291  /*! This is an introduction to the class hierarchy. */
293  {
294  if (Config_getBool(OPTIMIZE_OUTPUT_VHDL))
295  {
296  return "Liste hiérarchique de toutes les entités :";
297  }
298  else
299  {
300  return "Cette liste d'héritage est classée "
301  "approximativement par ordre alphabétique :";
302  }
303  }
304 
305  /*! This is an introduction to the list with all files. */
306  virtual QCString trFileListDescription(bool extractAll)
307  {
308  QCString result="Liste de tous les fichiers ";
309  if (!extractAll) result+="documentés ";
310  result+="avec une brève description :";
311  return result;
312  }
313 
314  /*! This is an introduction to the annotated compound list. */
316  {
317  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
318  {
319  return "Liste des structures de données avec une brève description :";
320  }
321  else if (Config_getBool(OPTIMIZE_OUTPUT_SLICE))
322  {
323  return "Liste des classes avec une brève description :";
324  }
325  else
326  {
327  return "Liste des classes, structures, "
328  "unions et interfaces avec une brève description :";
329  }
330  }
331 
332  /*! This is an introduction to the page with all class members. */
333  virtual QCString trCompoundMembersDescription(bool extractAll)
334  {
335  QCString result="Liste de tous les ";
336  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
337  {
338  result+="champs de structure et d'union ";
339  }
340  else
341  {
342  result+="membres de classe ";
343  }
344  if (!extractAll)
345  {
346  result+="documentés ";
347  }
348  result+="avec des liens vers ";
349  if (!extractAll)
350  {
351  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
352  {
353  result+="la documentation de structure/union de chaque champ :";
354  }
355  else
356  {
357  result+="la documentation de classe de chaque membre :";
358  }
359  }
360  else
361  {
362  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
363  {
364  result+="les structures/unions auxquelles ils appartiennent :";
365  }
366  else
367  {
368  result+="les classes auxquelles ils appartiennent :";
369  }
370  }
371  return result;
372  }
373 
374  /*! This is an introduction to the page with all file members. */
375  virtual QCString trFileMembersDescription(bool extractAll)
376  {
377  QCString result="Liste ";
378 
379  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
380  {
381  result+="de toutes les fonctions, variables, macros, enumérations, et définitions de type ";
382  }
383  else
384  {
385  result+="de tous les membres de fichier ";
386  }
387  if (!extractAll) result+="documentés ";
388  result+="avec des liens vers ";
389  if (extractAll)
390  result+="les fichiers auxquels ils appartiennent :";
391  else
392  result+="la documentation :";
393  return result;
394  }
395 
396  /*! This is an introduction to the page with the list of all examples */
398  { return "Liste de tous les exemples :"; }
399 
400  /*! This is an introduction to the page with the list of related pages */
402  { return "Liste de toutes les pages de documentation associées :"; }
403 
404  /*! This is an introduction to the page with the list of class/file groups */
406  { return "Liste de tous les modules :"; }
407 
408  /*! This is used in HTML as the title of index.html. */
409  virtual QCString trDocumentation()
410  { return "Documentation"; }
411 
412  /*! This is used in LaTeX as the title of the chapter with the
413  * index of all groups.
414  */
415  virtual QCString trModuleIndex()
416  { return "Index des modules"; }
417 
418  /*! This is used in LaTeX as the title of the chapter with the
419  * class hierarchy.
420  */
421  virtual QCString trHierarchicalIndex()
422  { return "Index hiérarchique"; }
423 
424  /*! This is used in LaTeX as the title of the chapter with the
425  * annotated compound index.
426  */
427  virtual QCString trCompoundIndex()
428  {
429  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
430  {
431  return "Index des structures de données";
432  }
433  else
434  {
435  return "Index des classes";
436  }
437  }
438 
439  /*! This is used in LaTeX as the title of the chapter with the
440  * list of all files.
441  */
442  virtual QCString trFileIndex()
443  { return "Index des fichiers"; }
444 
445  /*! This is used in LaTeX as the title of the chapter containing
446  * the documentation of all groups.
447  */
449  { return "Documentation des modules"; }
450 
451  /*! This is used in LaTeX as the title of the chapter containing
452  * the documentation of all classes, structs and unions.
453  */
455  {
456  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
457  {
458  return "Documentation des structures de données";
459  }
460  else
461  {
462  return "Documentation des classes";
463  }
464  }
465 
466  /*! This is used in LaTeX as the title of the chapter containing
467  * the documentation of all files.
468  */
469  virtual QCString trFileDocumentation()
470  { return "Documentation des fichiers"; }
471 
472  /*! This is used in LaTeX as the title of the chapter containing
473  * the documentation of all examples.
474  */
476  { return "Documentation des exemples"; }
477 
478  /*! This is used in LaTeX as the title of the chapter containing
479  * the documentation of all related pages.
480  */
481  virtual QCString trPageDocumentation()
482  { return "Documentation des pages associées"; }
483 
484  /*! This is used in LaTeX as the title of the document */
485  virtual QCString trReferenceManual()
486  { return "Manuel de référence"; }
487 
488  /*! This is used in the documentation of a file as a header before the
489  * list of defines
490  */
491  virtual QCString trDefines()
492  { return "Macros"; }
493 
494  /*! This is used in the documentation of a file as a header before the
495  * list of typedefs
496  */
497  virtual QCString trTypedefs()
498  { return "Définitions de type"; }
499 
500  /*! This is used in the documentation of a file as a header before the
501  * list of enumerations
502  */
503  virtual QCString trEnumerations()
504  { return "Énumérations"; }
505 
506  /*! This is used in the documentation of a file as a header before the
507  * list of (global) functions
508  */
509  virtual QCString trFunctions()
510  { return "Fonctions"; }
511 
512  /*! This is used in the documentation of a file as a header before the
513  * list of (global) variables
514  */
515  virtual QCString trVariables()
516  { return "Variables"; }
517 
518  /*! This is used in the documentation of a file as a header before the
519  * list of (global) variables
520  */
521  virtual QCString trEnumerationValues()
522  { return "Valeurs énumérées"; }
523 
524  /*! This is used in the documentation of a file before the list of
525  * documentation blocks for defines
526  */
528  { return "Documentation des macros"; }
529 
530  /*! This is used in the documentation of a file/namespace before the list
531  * of documentation blocks for typedefs
532  */
534  { return "Documentation des définitions de type"; }
535 
536  /*! This is used in the documentation of a file/namespace before the list
537  * of documentation blocks for enumeration types
538  */
540  { return "Documentation du type de l'énumération"; }
541 
542  /*! This is used in the documentation of a file/namespace before the list
543  * of documentation blocks for functions
544  */
546  { return "Documentation des fonctions"; }
547 
548  /*! This is used in the documentation of a file/namespace before the list
549  * of documentation blocks for variables
550  */
552  { return "Documentation des variables"; }
553 
554  /*! This is used in the documentation of a file/namespace/group before
555  * the list of links to documented compounds
556  */
557  virtual QCString trCompounds()
558  {
559  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
560  {
561  return "Structures de données";
562  }
563  else
564  {
565  return "Classes";
566  }
567  }
568 
569  /*! This is used in the standard footer of each page and indicates when
570  * the page was generated
571  */
572  virtual QCString trGeneratedAt(const QCString &date,const QCString &projName)
573  {
574  QCString result=(QCString)"Généré le "+date;
575  if (!projName.isEmpty()) result+=(QCString)" pour "+projName;
576  result+=(QCString)" par";
577  return result;
578  }
579 
580  /*! this text is put before a class diagram */
581  virtual QCString trClassDiagram(const QCString &clName)
582  {
583  return (QCString)"Graphe d'héritage de "+clName+":";
584  }
585 
586  /*! this text is generated when the \\internal command is used. */
588  { return "Pour un usage interne uniquement."; }
589 
590  /*! this text is generated when the \\warning command is used. */
591  virtual QCString trWarning()
592  { return "Avertissement"; }
593 
594  /*! this text is generated when the \\version command is used. */
595  virtual QCString trVersion()
596  { return "Version"; }
597 
598  /*! this text is generated when the \\date command is used. */
599  virtual QCString trDate()
600  { return "Date"; }
601 
602  /*! this text is generated when the \\return command is used. */
603  virtual QCString trReturns()
604  { return "Renvoie"; }
605 
606  /*! this text is generated when the \\sa command is used. */
607  virtual QCString trSeeAlso()
608  { return "Voir également"; }
609 
610  /*! this text is generated when the \\param command is used. */
611  virtual QCString trParameters()
612  { return "Paramètres"; }
613 
614  /*! this text is generated when the \\exception command is used. */
615  virtual QCString trExceptions()
616  { return "Exceptions"; }
617 
618  /*! this text is used in the title page of a LaTeX document. */
619  virtual QCString trGeneratedBy()
620  { return "Généré par"; }
621 
622 //////////////////////////////////////////////////////////////////////////
623 // new since 0.49-990307
624 //////////////////////////////////////////////////////////////////////////
625 
626  /*! used as the title of page containing all the index of all namespaces. */
627  virtual QCString trNamespaceList()
628  { return "Liste des espaces de nommage"; }
629 
630  /*! used as an introduction to the namespace list */
631  virtual QCString trNamespaceListDescription(bool extractAll)
632  {
633  QCString result="Liste de tous les espaces de nommage ";
634  if (!extractAll) result+="documentés ";
635  result+="avec une brève description:";
636  return result;
637  }
638 
639  /*! used in the class documentation as a header before the list of all
640  * friends of a class
641  */
642  virtual QCString trFriends()
643  { return "Amis"; }
644 
645 //////////////////////////////////////////////////////////////////////////
646 // new since 0.49-990405
647 //////////////////////////////////////////////////////////////////////////
648 
649  /*! used in the class documentation as a header before the list of all
650  * related classes
651  */
653  { return "Documentation des fonctions amies et associées"; }
654 
655 //////////////////////////////////////////////////////////////////////////
656 // new since 0.49-990425
657 //////////////////////////////////////////////////////////////////////////
658 
659  /*! used as the title of the HTML page of a class/struct/union */
660  virtual QCString trCompoundReference(const QCString &clName,
661  ClassDef::CompoundType compType,
662  bool isTemplate)
663  {
664  QCString result="Référence ";
665  if (isTemplate) result+="du modèle ";
666  result+="de ";
667  switch(compType)
668  {
669  case ClassDef::Class: result+="la classe "; break;
670  case ClassDef::Struct: result+="la structure "; break;
671  case ClassDef::Union: result+="l'union "; break;
672  case ClassDef::Interface: result+="l'interface "; break;
673  case ClassDef::Protocol: result+="le protocol "; break;
674  case ClassDef::Category: result+="la catégorie "; break;
675  case ClassDef::Exception: result+="l'exception "; break;
676  default: break;
677  }
678  result+=(QCString)clName;
679  return result;
680  }
681 
682  /*! used as the title of the HTML page of a file */
683  virtual QCString trFileReference(const QCString &fileName)
684  {
685  QCString result= "Référence du fichier ";
686  result+=fileName;
687  return result;
688  }
689 
690  /*! used as the title of the HTML page of a namespace */
691  virtual QCString trNamespaceReference(const QCString &namespaceName)
692  {
693  QCString result= "Référence de l'espace de nommage ";
694  result+=namespaceName;
695  return result;
696  }
697 
698  virtual QCString trPublicMembers()
699  { return "Fonctions membres publiques"; }
700  virtual QCString trPublicSlots()
701  { return "Connecteurs publics"; }
702  virtual QCString trSignals()
703  { return "Signaux"; }
705  { return "Fonctions membres publiques statiques"; }
706  virtual QCString trProtectedMembers()
707  { return "Fonctions membres protégées"; }
709  { return "Connecteurs protégés"; }
711  { return "Fonctions membres protégées statiques"; }
712  virtual QCString trPrivateMembers()
713  { return "Fonctions membres privées"; }
714  virtual QCString trPrivateSlots()
715  { return "Connecteurs privés"; }
717  { return "Fonctions membres privées statiques"; }
718 
719  /*! this function is used to produce a comma-separated list of items.
720  * use generateMarker(i) to indicate where item i should be put.
721  */
722  virtual QCString trWriteList(int numEntries)
723  {
724  QCString result;
725  int i;
726  // the inherits list contain `numEntries' classes
727  for (i=0;i<numEntries;i++)
728  {
729  // use generateMarker to generate placeholders for the class links!
730  result+=generateMarker(i); // generate marker for entry i in the list
731  // (order is left to right)
732 
733  if (i!=numEntries-1) // not the last entry, so we need a separator
734  {
735  if (i<numEntries-2) // not the fore last entry
736  result+=", ";
737  else // the fore last entry
738  result+=", et ";
739  }
740  }
741  return result;
742  }
743 
744  /*! used in class documentation to produce a list of base classes,
745  * if class diagrams are disabled.
746  */
747  virtual QCString trInheritsList(int numEntries)
748  {
749  return "Est dérivée de "+trWriteList(numEntries)+".";
750  }
751 
752  /*! used in class documentation to produce a list of super classes,
753  * if class diagrams are disabled.
754  */
755  virtual QCString trInheritedByList(int numEntries)
756  {
757  return "Dérivée par "+trWriteList(numEntries)+".";
758  }
759 
760  /*! used in member documentation blocks to produce a list of
761  * members that are hidden by this one.
762  */
763  virtual QCString trReimplementedFromList(int numEntries)
764  {
765  return "Réimplémentée à partir de "+trWriteList(numEntries)+".";
766  }
767 
768  /*! used in member documentation blocks to produce a list of
769  * all member that overwrite the implementation of this member.
770  */
771  virtual QCString trReimplementedInList(int numEntries)
772  {
773  return "Réimplémentée dans "+trWriteList(numEntries)+".";
774  }
775 
776  /*! This is put above each page as a link to all members of namespaces. */
778  { return "Membres de l'espace de nommage"; }
779 
780  /*! This is an introduction to the page with all namespace members */
781  virtual QCString trNamespaceMemberDescription(bool extractAll)
782  {
783  QCString result="Liste de tous les membres des espaces de nommage ";
784  if (!extractAll) result+="documentés ";
785  result+="avec des liens vers ";
786  if (extractAll)
787  result+="la documentation de namespace de chaque membre :";
788  else
789  result+="les espaces de nommage auxquels ils appartiennent :";
790  return result;
791  }
792  /*! This is used in LaTeX as the title of the chapter with the
793  * index of all namespaces.
794  */
795  virtual QCString trNamespaceIndex()
796  { return "Index des espaces de nommage"; }
797 
798  /*! This is used in LaTeX as the title of the chapter containing
799  * the documentation of all namespaces.
800  */
802  { return "Documentation des espaces de nommage"; }
803 
804 //////////////////////////////////////////////////////////////////////////
805 // new since 0.49-990522
806 //////////////////////////////////////////////////////////////////////////
807 
808  /*! This is used in the documentation before the list of all
809  * namespaces in a file.
810  */
811  virtual QCString trNamespaces()
812  { return "Espaces de nommage"; }
813 
814 //////////////////////////////////////////////////////////////////////////
815 // new since 0.49-990728
816 //////////////////////////////////////////////////////////////////////////
817 
818  /*! This is put at the bottom of a class documentation page and is
819  * followed by a list of files that were used to generate the page.
820  */
822  bool single)
823  { // here s is one of " Class", " Struct" or " Union"
824  // single is true implies a single file
825  bool feminine = true;
826  QCString result=(QCString)"La documentation de ";
827  switch(compType)
828  {
829  case ClassDef::Class: result+="cette classe"; break;
830  case ClassDef::Struct: result+="cette structure"; break;
831  case ClassDef::Union: result+="cette union"; break;
832  case ClassDef::Interface: result+="cette interface"; break;
833  case ClassDef::Protocol: result+="ce protocol"; feminine = false; break;
834  case ClassDef::Category: result+="cette catégorie"; break;
835  case ClassDef::Exception: result+="cette exception"; break;
836  default: break;
837  }
838  if (feminine) result+= " a été générée à partir ";
839  else result+=" a été généré à partir ";
840  if (feminine) result+="du fichier suivant :";
841  else result+="des fichiers suivants :";
842  return result;
843  }
844 
845 //////////////////////////////////////////////////////////////////////////
846 // new since 0.49-990901
847 //////////////////////////////////////////////////////////////////////////
848 
849  /*! This is used as the heading text for the retval command. */
850  virtual QCString trReturnValues()
851  { return "Valeurs retournées"; }
852 
853  /*! This is in the (quick) index as a link to the main page (index.html)
854  */
855  virtual QCString trMainPage()
856  { return "Page principale"; }
857 
858  /*! This is used in references to page that are put in the LaTeX
859  * documentation. It should be an abbreviation of the word page.
860  */
861  virtual QCString trPageAbbreviation()
862  { return "p."; }
863 
864 //////////////////////////////////////////////////////////////////////////
865 // new since 0.49-991003
866 //////////////////////////////////////////////////////////////////////////
867 
869  {
870  return "Définition à la ligne @0 du fichier @1.";
871  }
873  {
874  return "Définition dans le fichier @0.";
875  }
876 
877 //////////////////////////////////////////////////////////////////////////
878 // new since 0.49-991205
879 //////////////////////////////////////////////////////////////////////////
880 
881  virtual QCString trDeprecated()
882  {
883  return "Obsolète";
884  }
885 
886 //////////////////////////////////////////////////////////////////////////
887 // new since 1.0.0
888 //////////////////////////////////////////////////////////////////////////
889 
890  /*! this text is put before a collaboration diagram */
891  virtual QCString trCollaborationDiagram(const QCString &clName)
892  {
893  return (QCString)"Graphe de collaboration de "+clName+":";
894  }
895  /*! this text is put before an include dependency graph */
896  virtual QCString trInclDepGraph(const QCString &fName)
897  {
898  return (QCString)"Graphe des dépendances par inclusion de "+fName+":";
899  }
900  /*! header that is put before the list of constructor/destructors. */
902  {
903  return "Documentation des constructeurs et destructeur";
904  }
905  /*! Used in the file documentation to point to the corresponding sources. */
906  virtual QCString trGotoSourceCode()
907  {
908  return "Aller au code source de ce fichier.";
909  }
910  /*! Used in the file sources to point to the corresponding documentation. */
911  virtual QCString trGotoDocumentation()
912  {
913  return "Aller à la documentation de ce fichier.";
914  }
915  /*! Text for the \\pre command */
916  virtual QCString trPrecondition()
917  {
918  return "Précondition";
919  }
920  /*! Text for the \\post command */
921  virtual QCString trPostcondition()
922  {
923  return "Postcondition";
924  }
925  /*! Text for the \\invariant command */
926  virtual QCString trInvariant()
927  {
928  return "Invariant";
929  }
930  /*! Text shown before a multi-line variable/enum initialization */
931  virtual QCString trInitialValue()
932  {
933  return "Valeur initiale :";
934  }
935  /*! Text used the source code in the file index */
936  virtual QCString trCode()
937  {
938  return "code";
939  }
941  {
942  return "Graphe hiérarchique des classes";
943  }
945  {
946  return "Aller au graphe hiérarchique des classes";
947  }
949  {
950  return "Aller à la hiérarchie des classes en mode texte";
951  }
952  virtual QCString trPageIndex()
953  {
954  return "Index des pages";
955  }
956 
957 //////////////////////////////////////////////////////////////////////////
958 // new since 1.1.0
959 //////////////////////////////////////////////////////////////////////////
960 
961  virtual QCString trNote()
962  {
963  return "Note";
964  }
965  virtual QCString trPublicTypes()
966  {
967  return "Types publics";
968  }
969  virtual QCString trPublicAttribs()
970  {
971  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
972  {
973  return "Champs de données";
974  }
975  else
976  {
977  return "Attributs publics";
978  }
979  }
981  {
982  return "Attributs publics statiques";
983  }
984  virtual QCString trProtectedTypes()
985  {
986  return "Types protégés";
987  }
989  {
990  return "Attributs protégés";
991  }
993  {
994  return "Attributs protégés statiques";
995  }
996  virtual QCString trPrivateTypes()
997  {
998  return "Types privés";
999  }
1000  virtual QCString trPrivateAttribs()
1001  {
1002  return "Attributs privés";
1003  }
1005  {
1006  return "Attributs privés statiques";
1007  }
1009 //////////////////////////////////////////////////////////////////////////
1010 // new since 1.1.3
1011 //////////////////////////////////////////////////////////////////////////
1012 
1013  /*! Used as a marker that is put before a \\todo item */
1014  virtual QCString trTodo()
1015  {
1016  return "A faire";
1017  }
1018  /*! Used as the header of the todo list */
1019  virtual QCString trTodoList()
1020  {
1021  return "Liste des choses à faire";
1022  }
1023 
1024 //////////////////////////////////////////////////////////////////////////
1025 // new since 1.1.4
1026 //////////////////////////////////////////////////////////////////////////
1027 
1028  virtual QCString trReferencedBy()
1029  {
1030  return "Référencé par";
1031  }
1032  virtual QCString trRemarks()
1033  {
1034  return "Remarques";
1035  }
1036  virtual QCString trAttention()
1037  {
1038  return "Attention";
1039  }
1040  virtual QCString trInclByDepGraph()
1041  {
1042  return "Ce graphe montre quels fichiers incluent directement "
1043  "ou indirectement ce fichier :";
1044  }
1045  virtual QCString trSince()
1046  {
1047  return "Depuis";
1048  }
1049 
1050 //////////////////////////////////////////////////////////////////////////
1051 // new since 1.1.5
1052 //////////////////////////////////////////////////////////////////////////
1053 
1054  /*! title of the graph legend page */
1055  virtual QCString trLegendTitle()
1056  {
1057  return "Légende du graphe";
1058  }
1059  /*! page explaining how the dot graph's should be interpreted
1060  * The %A in the text below are to prevent link to classes called "A".
1061  */
1062  virtual QCString trLegendDocs()
1063  {
1064  return
1065  "Cette page explique comment interpréter les graphes générés "
1066  "par doxygen.<p>\n"
1067  "Considérez l'exemple suivant :\n"
1068  "\\code\n"
1069  "/*! Classe invisible à cause d'une troncature */\n"
1070  "class Invisible { };\n\n"
1071  "/*! Classe tronquée, la relation d'héritage est masquée */\n"
1072  "class Truncated : public Invisible { };\n\n"
1073  "/*! Classe non documentée avec des commentaires Doxygen */\n"
1074  "class Undocumented { };\n\n"
1075  "/*! Classe dérivée par héritage public */\n"
1076  "class PublicBase : public Truncated { };\n\n"
1077  "/*! Un modèle de classe */\n"
1078  "template<class T> class Templ { };\n\n"
1079  "/*! Classe dérivée par héritage protégé */\n"
1080  "class ProtectedBase { };\n\n"
1081  "/*! Classe dérivée par héritage privé */\n"
1082  "class PrivateBase { };\n\n"
1083  "/*! Classe utilisée par la classe dérivée */\n"
1084  "class Used { };\n\n"
1085  "/*! Super-classe qui hérite de plusieurs autres classes */\n"
1086  "class Inherited : public PublicBase,\n"
1087  " protected ProtectedBase,\n"
1088  " private PrivateBase,\n"
1089  " public Undocumented,\n"
1090  " public Templ<int>\n"
1091  "{\n"
1092  " private:\n"
1093  " Used *m_usedClass;\n"
1094  "};\n"
1095  "\\endcode\n"
1096  "Cela aboutira au graphe suivant :"
1097  "<p><center><img alt=\"\" src=\"graph_legend."+getDotImageExtension()+"\"></center></p>\n"
1098  "<p>\n"
1099  "Les rectangles du graphe ci-dessus ont la signification suivante :\n"
1100  "<ul>\n"
1101  "<li>Un rectangle plein noir représente la structure ou la classe pour laquelle "
1102  "le graphe est généré.\n"
1103  "<li>Un rectangle avec un bord noir indique une classe ou une structure documentée.\n"
1104  "<li>Un rectangle avec un bord gris indique une classe ou une structure non documentée.\n"
1105  "<li>Un rectangle avec un bord rouge indique une structure ou une classe documentée\n"
1106  "pour laquelle des relations d'héritage ou de collaboration manquent. Un graphe est "
1107  "tronqué s'il n'entre pas dans les limites spécifiées."
1108  "</ul>\n"
1109  "Les flèches ont la signification suivante :\n"
1110  "<ul>\n"
1111  "<li>Une flèche bleu foncé est utilisée pour visualiser une relation d'héritage publique "
1112  "entre deux classes.\n"
1113  "<li>Une flèche vert foncé est utilisée pour une relation d'héritage protégée.\n"
1114  "<li>Une flèche rouge foncé est utilisée pour une relation d'héritage privée.\n"
1115  "<li>Une flèche violette en pointillés est utilisée si une classe est contenue ou "
1116  "utilisée par une autre classe. La flèche est étiquetée avec la ou les variable(s) "
1117  "qui permettent d'accéder à la classe ou structure pointée. \n"
1118  "<li>Une flèche jaune en pointillés indique une relation entre un modèle d'instance et "
1119  "le modèle de classe duquel il est instancié. La flèche est étiquetée avec "
1120  "les paramètres de modèle de l'instance.\n"
1121  "</ul>\n";
1122  }
1123  /*! text for the link to the legend page */
1124  virtual QCString trLegend()
1125  {
1126  return "légende";
1127  }
1128 
1129 //////////////////////////////////////////////////////////////////////////
1130 // new since 1.2.0
1131 //////////////////////////////////////////////////////////////////////////
1133  /*! Used as a marker that is put before a test item */
1134  virtual QCString trTest()
1135  {
1136  return "Test";
1137  }
1138  /*! Used as the header of the test list */
1140  {
1141  return "Liste des tests";
1142  }
1143 
1144 //////////////////////////////////////////////////////////////////////////
1145 // new since 1.2.2
1146 //////////////////////////////////////////////////////////////////////////
1147 
1148  /*! Used as a section header for IDL properties */
1149  virtual QCString trProperties()
1150  {
1151  return "Propriétés";
1152  }
1153  /*! Used as a section header for IDL property documentation */
1155  {
1156  return "Documentation des propriétés";
1157  }
1158 
1159 //////////////////////////////////////////////////////////////////////////
1160 // new since 1.2.4
1161 //////////////////////////////////////////////////////////////////////////
1162 
1163  /*! Used for Java classes in the summary section of Java packages */
1164  virtual QCString trClasses()
1165  {
1166  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1167  {
1168  return "Structures de données";
1169  }
1170  else
1171  {
1172  return "Classes";
1173  }
1174  }
1175  /*! Used as the title of a Java package */
1176  virtual QCString trPackage(const QCString &name)
1177  {
1178  return (QCString)"Paquetage "+name;
1179  }
1180  /*! Title of the package index page */
1181  virtual QCString trPackageList()
1182  {
1183  return "Liste des paquetages";
1184  }
1185  /*! The description of the package index page */
1187  {
1188  return "Liste des paquetages avec une brève description (si disponible) :";
1189  }
1190  /*! The link name in the Quick links header for each page */
1191  virtual QCString trPackages()
1192  {
1193  return "Paquetages";
1194  }
1195  /*! Text shown before a multi-line define */
1196  virtual QCString trDefineValue()
1197  {
1198  return "Valeur :";
1199  }
1200 
1201 //////////////////////////////////////////////////////////////////////////
1202 // new since 1.2.5
1203 //////////////////////////////////////////////////////////////////////////
1204 
1205  /*! Used as a marker that is put before a \\bug item */
1206  virtual QCString trBug()
1207  {
1208  return "Bogue";
1209  }
1210  /*! Used as the header of the bug list */
1212  {
1213  return "Liste des bogues";
1214  }
1215 
1216 //////////////////////////////////////////////////////////////////////////
1217 // new since 1.2.6
1218 //////////////////////////////////////////////////////////////////////////
1219 
1220  /*! Used as ansicpg for RTF file
1221  *
1222  * The following table shows the correlation of Charset name, Charset Value and
1223  * <pre>
1224  * Codepage number:
1225  * Charset Name Charset Value(hex) Codepage number
1226  * ------------------------------------------------------
1227  * DEFAULT_CHARSET 1 (x01)
1228  * SYMBOL_CHARSET 2 (x02)
1229  * OEM_CHARSET 255 (xFF)
1230  * ANSI_CHARSET 0 (x00) 1252
1231  * RUSSIAN_CHARSET 204 (xCC) 1251
1232  * EE_CHARSET 238 (xEE) 1250
1233  * GREEK_CHARSET 161 (xA1) 1253
1234  * TURKISH_CHARSET 162 (xA2) 1254
1235  * BALTIC_CHARSET 186 (xBA) 1257
1236  * HEBREW_CHARSET 177 (xB1) 1255
1237  * ARABIC _CHARSET 178 (xB2) 1256
1238  * SHIFTJIS_CHARSET 128 (x80) 932
1239  * HANGEUL_CHARSET 129 (x81) 949
1240  * GB2313_CHARSET 134 (x86) 936
1241  * CHINESEBIG5_CHARSET 136 (x88) 950
1242  * </pre>
1243  *
1244  */
1245  virtual QCString trRTFansicp()
1246  {
1247  return "1252";
1248  }
1249 
1250 
1251  /*! Used as ansicpg for RTF fcharset
1252  * \see trRTFansicp() for a table of possible values.
1253  */
1254  virtual QCString trRTFCharSet()
1255  {
1256  return "0";
1257  }
1259  /*! Used as header RTF general index */
1260  virtual QCString trRTFGeneralIndex()
1261  {
1262  return "Index";
1263  }
1264 
1265  /*! This is used for translation of the word that will possibly
1266  * be followed by a single name or by a list of names
1267  * of the category.
1268  */
1269  virtual QCString trClass(bool first_capital, bool singular)
1270  {
1271  QCString result((first_capital ? "Classe" : "classe"));
1272  if (!singular) result+="s";
1273  return result;
1274  }
1275 
1276  /*! This is used for translation of the word that will possibly
1277  * be followed by a single name or by a list of names
1278  * of the category.
1279  */
1280  virtual QCString trFile(bool first_capital, bool singular)
1281  {
1282  QCString result((first_capital ? "Fichier" : "fichier"));
1283  if (!singular) result+="s";
1284  return result;
1285  }
1286 
1287  /*! This is used for translation of the word that will possibly
1288  * be followed by a single name or by a list of names
1289  * of the category.
1290  */
1291  virtual QCString trNamespace(bool first_capital, bool singular)
1292  {
1293  QCString result((first_capital ? "Espace" : "espace"));
1294  if (!singular) result+="s";
1295  result+=" de nommage";
1296  return result;
1297  }
1298 
1299  /*! This is used for translation of the word that will possibly
1300  * be followed by a single name or by a list of names
1301  * of the category.
1302  */
1303  virtual QCString trGroup(bool first_capital, bool singular)
1304  {
1305  QCString result((first_capital ? "Groupe" : "groupe"));
1306  if (!singular) result+="s";
1307  return result;
1308  }
1309 
1310  /*! This is used for translation of the word that will possibly
1311  * be followed by a single name or by a list of names
1312  * of the category.
1313  */
1314  virtual QCString trPage(bool first_capital, bool singular)
1315  {
1316  QCString result((first_capital ? "Page" : "page"));
1317  if (!singular) result+="s";
1318  return result;
1319  }
1320 
1321  /*! This is used for translation of the word that will possibly
1322  * be followed by a single name or by a list of names
1323  * of the category.
1324  */
1325  virtual QCString trMember(bool first_capital, bool singular)
1326  {
1327  QCString result((first_capital ? "Membre" : "membre"));
1328  if (!singular) result+="s";
1329  return result;
1330  }
1332  /*! This is used for translation of the word that will possibly
1333  * be followed by a single name or by a list of names
1334  * of the category.
1335  */
1336  virtual QCString trGlobal(bool first_capital, bool singular)
1337  {
1338  QCString result((first_capital ? "Globa" : "globa"));
1339  if (!singular) result+="ux(ales)"; else result+="l(e)";
1340  return result;
1341  }
1342 
1343 //////////////////////////////////////////////////////////////////////////
1344 // new since 1.2.7
1345 //////////////////////////////////////////////////////////////////////////
1347  /*! This text is generated when the \\author command is used and
1348  * for the author section in man pages. */
1349  virtual QCString trAuthor(bool first_capital, bool singular)
1350  {
1351  QCString result((first_capital ? "Auteur" : "auteur"));
1352  if (!singular) result+="s";
1353  return result;
1354  }
1355 
1356 //////////////////////////////////////////////////////////////////////////
1357 // new since 1.2.11
1358 //////////////////////////////////////////////////////////////////////////
1359 
1360  /*! This text is put before the list of members referenced by a member
1361  */
1362  virtual QCString trReferences()
1363  {
1364  return "Références";
1365  }
1366 
1367 //////////////////////////////////////////////////////////////////////////
1368 // new since 1.2.13
1369 //////////////////////////////////////////////////////////////////////////
1370 
1371  /*! used in member documentation blocks to produce a list of
1372  * members that are implemented by this one.
1373  */
1374  virtual QCString trImplementedFromList(int numEntries)
1375  {
1376  return "Implémente "+trWriteList(numEntries)+".";
1377  }
1378 
1379  /*! used in member documentation blocks to produce a list of
1380  * all members that implement this abstract member.
1381  */
1382  virtual QCString trImplementedInList(int numEntries)
1383  {
1384  return "Implémenté dans "+trWriteList(numEntries)+".";
1385  }
1386 
1387 //////////////////////////////////////////////////////////////////////////
1388 // new since 1.2.16
1389 //////////////////////////////////////////////////////////////////////////
1390 
1391  /*! used in RTF documentation as a heading for the Table
1392  * of Contents.
1393  */
1394  virtual QCString trRTFTableOfContents()
1395  {
1396  return "Table des matières";
1397  }
1398 
1399 //////////////////////////////////////////////////////////////////////////
1400 // new since 1.2.17
1401 //////////////////////////////////////////////////////////////////////////
1403  /*! Used as the header of the list of item that have been
1404  * flagged deprecated
1405  */
1406  virtual QCString trDeprecatedList()
1407  {
1408  return "Liste des éléments obsolètes";
1409  }
1410 
1411 //////////////////////////////////////////////////////////////////////////
1412 // new since 1.2.18
1413 //////////////////////////////////////////////////////////////////////////
1414 
1415  /*! Used as a header for declaration section of the events found in
1416  * a C# program
1417  */
1418  virtual QCString trEvents()
1419  {
1420  return "Événements";
1421  }
1422  /*! Header used for the documentation section of a class' events. */
1423  virtual QCString trEventDocumentation()
1424  {
1425  return "Documentation des événements";
1426  }
1427 
1428 //////////////////////////////////////////////////////////////////////////
1429 // new since 1.3
1430 //////////////////////////////////////////////////////////////////////////
1431 
1432  /*! Used as a heading for a list of Java class types with package scope.
1433  */
1434  virtual QCString trPackageTypes()
1435  {
1436  return "Types de paquetage";
1437  }
1438  /*! Used as a heading for a list of Java class functions with package
1439  * scope.
1440  */
1441  virtual QCString trPackageMembers()
1442  {
1443  return "Fonctions de paquetage";
1444  }
1445  /*! Used as a heading for a list of static Java class functions with
1446  * package scope.
1447  */
1449  {
1450  return "Fonctions statiques de paquetage";
1451  }
1452  /*! Used as a heading for a list of Java class variables with package
1453  * scope.
1454  */
1455  virtual QCString trPackageAttribs()
1456  {
1457  return "Attributs de paquetage";
1458  }
1459  /*! Used as a heading for a list of static Java class variables with
1460  * package scope.
1461  */
1463  {
1464  return "Attributs statiques de paquetage";
1465  }
1466 
1467 //////////////////////////////////////////////////////////////////////////
1468 // new since 1.3.1
1469 //////////////////////////////////////////////////////////////////////////
1470 
1471  /*! Used in the quick index of a class/file/namespace member list page
1472  * to link to the unfiltered list of all members.
1473  */
1474  virtual QCString trAll()
1475  {
1476  return "Tout";
1477  }
1478  /*! Put in front of the call graph for a function. */
1479  virtual QCString trCallGraph()
1480  {
1481  return "Voici le graphe d'appel pour cette fonction :";
1482  }
1484 //////////////////////////////////////////////////////////////////////////
1485 // new since 1.3.3
1486 //////////////////////////////////////////////////////////////////////////
1487 
1488  /*! This string is used as the title for the page listing the search
1489  * results.
1490  */
1491  virtual QCString trSearchResultsTitle()
1492  {
1493  return "Résultats de la recherche";
1494  }
1495  /*! This string is put just before listing the search results. The
1496  * text can be different depending on the number of documents found.
1497  * Inside the text you can put the special marker $num to insert
1498  * the number representing the actual number of search results.
1499  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1500  * value 2 represents 2 or more matches. HTML markup is allowed inside
1501  * the returned string.
1502  */
1503  virtual QCString trSearchResults(int numDocuments)
1504  {
1505  if (numDocuments==0)
1506  {
1507  return "Désolé, aucun document ne correspond à votre requête.";
1508  }
1509  else if (numDocuments==1)
1510  {
1511  return "Trouvé <b>1</b> document correspondant à votre requête.";
1512  }
1513  else
1514  {
1515  return "Trouvé <b>$num</b> documents correspondant à votre requête. "
1516  "Classé par ordre de pertinence décroissant.";
1517  }
1518  }
1519  /*! This string is put before the list of matched words, for each search
1520  * result. What follows is the list of words that matched the query.
1521  */
1522  virtual QCString trSearchMatches()
1523  {
1524  return "Correspondances :";
1525  }
1526 
1527 //////////////////////////////////////////////////////////////////////////
1528 // new since 1.3.8
1529 //////////////////////////////////////////////////////////////////////////
1530 
1531  /*! This is used in HTML as the title of page with source code for file filename
1532  */
1533  virtual QCString trSourceFile(QCString& filename)
1534  {
1535  return " Fichier source de " + filename;
1536  }
1537 
1538 //////////////////////////////////////////////////////////////////////////
1539 // new since 1.3.9
1540 //////////////////////////////////////////////////////////////////////////
1541 
1542  /*! This is used as the name of the chapter containing the directory
1543  * hierarchy.
1544  */
1545  virtual QCString trDirIndex()
1546  { return "Hiérarchie de répertoires"; }
1547 
1548  /*! This is used as the name of the chapter containing the documentation
1549  * of the directories.
1550  */
1552  { return "Documentation des répertoires"; }
1553 
1554  /*! This is used as the title of the directory index and also in the
1555  * Quick links of an HTML page, to link to the directory hierarchy.
1556  */
1557  virtual QCString trDirectories()
1558  { return "Répertoires"; }
1559 
1560  /*! This returns a sentences that introduces the directory hierarchy.
1561  * and the fact that it is sorted alphabetically per level
1562  */
1563  virtual QCString trDirDescription()
1564  { return "Cette hiérarchie de répertoire est triée approximativement, "
1565  "mais pas complètement, par ordre alphabétique :";
1566  }
1567 
1568  /*! This returns the title of a directory page. The name of the
1569  * directory is passed via \a dirName.
1570  */
1571  virtual QCString trDirReference(const QCString &dirName)
1572  { QCString result="Répertoire de référence de "; result+=dirName; return result; }
1573 
1574  /*! This returns the word directory with or without starting capital
1575  * (\a first_capital) and in singular or plural form (\a singular).
1576  */
1577  virtual QCString trDir(bool first_capital, bool singular)
1578  {
1579  QCString result((first_capital ? "Répertoire" : "répertoire"));
1580  if (singular) result+=""; else result+="s";
1581  return result;
1582  }
1583 
1584 //////////////////////////////////////////////////////////////////////////
1585 // new since 1.4.1
1586 //////////////////////////////////////////////////////////////////////////
1587 
1588  /*! This text is added to the documentation when the \\overload command
1589  * is used for a overloaded function.
1590  */
1591  virtual QCString trOverloadText()
1592  {
1593  return "Ceci est une fonction membre surchargée, "
1594  "proposée par commodité. Elle diffère de la fonction "
1595  "ci-dessus uniquement par le(s) argument(s) qu'elle accepte.";
1596  }
1597 
1598 //////////////////////////////////////////////////////////////////////////
1599 // new since 1.4.6
1600 //////////////////////////////////////////////////////////////////////////
1601 
1602  /*! This is used to introduce a caller (or called-by) graph */
1603  virtual QCString trCallerGraph()
1604  {
1605  return "Voici le graphe des appelants de cette fonction :";
1606  }
1607 
1608  /*! This is used in the documentation of a file/namespace before the list
1609  * of documentation blocks for enumeration values
1610  */
1612  { return "Documentation des énumérations"; }
1613 
1614 //////////////////////////////////////////////////////////////////////////
1615 // new since 1.5.4 (mainly for Fortran)
1616 //////////////////////////////////////////////////////////////////////////
1617 
1618  /*! header that is put before the list of member subprograms (Fortran). */
1620  { return "Documentation des fonctions/subroutines membres"; }
1621 
1622  /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1624  { return "Liste des types de données"; }
1625 
1626  /*! This is put above each page as a link to all members of compounds (Fortran). */
1628  { return "Champs de données"; }
1629 
1630  /*! This is an introduction to the annotated compound list (Fortran). */
1632  { return "Liste des types de données avec une brève description :"; }
1633 
1634  /*! This is an introduction to the page with all data types (Fortran). */
1635  virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
1636  {
1637  QCString result="Liste de tous les membres de types de données ";
1638  if (!extractAll)
1639  {
1640  result+="documentés ";
1641  }
1642  result+="avec des liens vers ";
1643  if (!extractAll)
1644  {
1645  result+="la documentation de la structure des données de chaque membre :";
1646  }
1647  else
1648  {
1649  result+="les types des données auxquels ils appartiennent :";
1650  }
1651  return result;
1652  }
1653 
1654  /*! This is used in LaTeX as the title of the chapter with the
1655  * annotated compound index (Fortran).
1656  */
1658  { return "Index du type de données"; }
1659 
1660  /*! This is used in LaTeX as the title of the chapter containing
1661  * the documentation of all data types (Fortran).
1662  */
1663  virtual QCString trTypeDocumentation()
1664  { return "Documentation du type de données"; }
1665 
1666  /*! This is used in the documentation of a file as a header before the
1667  * list of (global) subprograms (Fortran).
1668  */
1669  virtual QCString trSubprograms()
1670  { return "Fonctions/Subroutines"; }
1671 
1672  /*! This is used in the documentation of a file/namespace before the list
1673  * of documentation blocks for subprograms (Fortran)
1674  */
1676  { return "Documentation de la fonction/subroutine"; }
1677 
1678  /*! This is used in the documentation of a file/namespace/group before
1679  * the list of links to documented compounds (Fortran)
1680  */
1681  virtual QCString trDataTypes()
1682  { return "Les types de données"; }
1683 
1684  /*! used as the title of page containing all the index of all modules (Fortran). */
1685  virtual QCString trModulesList()
1686  { return "Liste des modules"; }
1687 
1688  /*! used as an introduction to the modules list (Fortran) */
1689  virtual QCString trModulesListDescription(bool extractAll)
1690  {
1691  QCString result="Liste de tous les modules ";
1692  if (!extractAll) result+="documentés ";
1693  result+="avec une brève description :";
1694  return result;
1695  }
1697  /*! used as the title of the HTML page of a module/type (Fortran) */
1698  virtual QCString trCompoundReferenceFortran(const QCString &clName,
1699  ClassDef::CompoundType compType,
1700  bool isTemplate)
1701  {
1702  QCString result="Réference ";
1703  if (isTemplate) result+="du modèle ";
1704  switch(compType)
1705  {
1706  case ClassDef::Class: result+="du module "; break;
1707  case ClassDef::Struct: result+="du type "; break;
1708  case ClassDef::Union: result+="de l'union "; break;
1709  case ClassDef::Interface: result+="de l'interface "; break;
1710  case ClassDef::Protocol: result+="du protocole "; break;
1711  case ClassDef::Category: result+="de la catégorie "; break;
1712  case ClassDef::Exception: result+="de l'exception "; break;
1713  default: break;
1714  }
1715  result+=(QCString)clName;
1716  return result;
1717  }
1718  /*! used as the title of the HTML page of a module (Fortran) */
1719  virtual QCString trModuleReference(const QCString &namespaceName)
1720  {
1721  QCString result="Référence du module ";
1722  result+= namespaceName;
1723  return result;
1724  }
1725 
1726  /*! This is put above each page as a link to all members of modules. (Fortran) */
1727  virtual QCString trModulesMembers()
1728  { return "Membres du module"; }
1729 
1730  /*! This is an introduction to the page with all modules members (Fortran) */
1731  virtual QCString trModulesMemberDescription(bool extractAll)
1732  {
1733  QCString result="Liste de tous les membres ";
1734  if (!extractAll) result+="documentés ";
1735  result+="du module avec des liens vers ";
1736  if (extractAll)
1737  {
1738  result+="la documentation du module de chaque membre :";
1739  }
1740  else
1741  {
1742  result+="les modules auxquels ils appartiennent :";
1743  }
1744  return result;
1745  }
1747  /*! This is used in LaTeX as the title of the chapter with the
1748  * index of all modules (Fortran).
1749  */
1750  virtual QCString trModulesIndex()
1751  { return "Index des modules"; }
1753  /*! This is used for translation of the word that will possibly
1754  * be followed by a single name or by a list of names
1755  * of the category.
1756  */
1757  virtual QCString trModule(bool first_capital, bool singular)
1758  {
1759  QCString result((first_capital ? "Module" : "module"));
1760  if (!singular) result+="s";
1761  return result;
1762  }
1763 
1764  /*! This is put at the bottom of a module documentation page and is
1765  * followed by a list of files that were used to generate the page.
1766  */
1768  bool single)
1769  {
1770  // single is true implies a single file
1771  QCString result=(QCString)"La documentation de ";
1772  switch(compType)
1773  {
1774  case ClassDef::Class: result+="ce module"; break;
1775  case ClassDef::Struct: result+="ce type"; break;
1776  case ClassDef::Union: result+="cette union"; break;
1777  case ClassDef::Interface: result+="cette interface"; break;
1778  case ClassDef::Protocol: result+="ce protocole"; break;
1779  case ClassDef::Category: result+="cette catégorie"; break;
1780  case ClassDef::Exception: result+="cette exception"; break;
1781  default: break;
1782  }
1783  result+=" a été générée à partir ";
1784  if (single) result+="du fichier suivant :"; else result+="des fichiers suivants :";
1785  return result;
1786  }
1787 
1788  /*! This is used for translation of the word that will possibly
1789  * be followed by a single name or by a list of names
1790  * of the category.
1791  */
1792  virtual QCString trType(bool first_capital, bool singular)
1793  {
1794  QCString result((first_capital ? "Type" : "type"));
1795  if (!singular) result+="s";
1796  return result;
1797  }
1798 
1799  /*! This is used for translation of the word that will possibly
1800  * be followed by a single name or by a list of names
1801  * of the category.
1802  */
1803  virtual QCString trSubprogram(bool first_capital, bool singular)
1804  {
1805  QCString result((first_capital ? "Sous-programme" : "sous-programme"));
1806  if (!singular) result+="s";
1807  return result;
1808  }
1809 
1810  /*! C# Type Constraint list */
1811  virtual QCString trTypeConstraints()
1812  {
1813  return "Contraintes de type";
1814  }
1815 
1816 //////////////////////////////////////////////////////////////////////////
1817 // new since 1.6.0 (mainly for the new search engine)
1818 //////////////////////////////////////////////////////////////////////////
1819 
1820  /*! directory relation for \a name */
1821  virtual QCString trDirRelation(const QCString &name)
1822  {
1823  return "Relation " + QCString(name);
1824  }
1825 
1826  /*! Loading message shown when loading search results */
1828  {
1829  return "Chargement...";
1830  }
1831 
1832  /*! Label used for search results in the global namespace */
1833  virtual QCString trGlobalNamespace()
1834  {
1835  return "Espace de nommage global";
1836  }
1837 
1838  /*! Message shown while searching */
1839  virtual QCString trSearching()
1840  {
1841  return "Recherche...";
1842  }
1843 
1844  /*! Text shown when no search results are found */
1845  virtual QCString trNoMatches()
1846  {
1847  return "Aucune correspondance";
1848  }
1849 
1850 //////////////////////////////////////////////////////////////////////////
1851 // new since 1.6.3 (missing items for the directory pages)
1852 //////////////////////////////////////////////////////////////////////////
1853 
1854  /*! when clicking a directory dependency label, a page with a
1855  * table is shown. The heading for the first column mentions the
1856  * source file that has a relation to another file.
1857  */
1858  virtual QCString trFileIn(const QCString &name)
1859  {
1860  return (QCString)"Fichier dans "+name;
1861  }
1862 
1863  /*! when clicking a directory dependency label, a page with a
1864  * table is shown. The heading for the second column mentions the
1865  * destination file that is included.
1866  */
1867  virtual QCString trIncludesFileIn(const QCString &name)
1868  {
1869  return (QCString)"Inclut le fichier dans "+name;
1870  }
1871 
1872  /** Compiles a date string.
1873  * @param year Year in 4 digits
1874  * @param month Month of the year: 1=January
1875  * @param day Day of the Month: 1..31
1876  * @param dayOfWeek Day of the week: 1=Monday..7=Sunday
1877  * @param hour Hour of the day: 0..23
1878  * @param minutes Minutes in the hour: 0..59
1879  * @param seconds Seconds within the minute: 0..59
1880  * @param includeTime Include time in the result string?
1881  */
1882  virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
1883  int hour,int minutes,int seconds,
1884  bool includeTime)
1885  {
1886  static const char *days[] = { "Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi","Dimanche" };
1887  static const char *months[] = { "Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre" };
1888  QCString sdate;
1889  sdate.sprintf("%s %d %s %d",days[dayOfWeek-1],day,months[month-1],year);
1890  if (includeTime)
1891  {
1892  QCString stime;
1893  stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds);
1894  sdate+=stime;
1895  }
1896  return sdate;
1897  }
1899 //////////////////////////////////////////////////////////////////////////
1900 // new since 1.7.5
1901 //////////////////////////////////////////////////////////////////////////
1902 
1903  /*! Header for the page with bibliographic citations */
1905  { return "Références bibliographiques"; }
1906 
1907  /*! Text for copyright paragraph */
1908  virtual QCString trCopyright()
1909  { return "Copyright"; }
1911  /*! Header for the graph showing the directory dependencies */
1912  virtual QCString trDirDepGraph(const QCString &name)
1913  { return QCString("Graphe des dépendances de répertoires pour ")+name+":"; }
1914 
1915 
1916 //////////////////////////////////////////////////////////////////////////
1917 // new since 1.8.0
1918 //////////////////////////////////////////////////////////////////////////
1919 
1920  /*! Detail level selector shown for hierarchical indices */
1921  virtual QCString trDetailLevel()
1922  { return "Niveau de détails"; }
1923 
1924  /*! Section header for list of template parameters */
1925  virtual QCString trTemplateParameters()
1926  { return "Paramètres du template"; }
1927 
1928  /*! Used in dot graph when UML_LOOK is enabled and there are many fields */
1929  virtual QCString trAndMore(const QCString &number)
1930  { return "et "+number+" de plus..."; }
1931 
1932  /*! Used file list for a Java enum */
1933  virtual QCString trEnumGeneratedFromFiles(bool single)
1934  { QCString result = "La documentation pour cette énumération a été générée à partir ";
1935  if (!single) result += "du fichier suivant"; else result += "des fichiers suivants";
1936  result+=" :";
1937  return result;
1938  }
1939 
1940  /*! Header of a Java enum page (Java enums are represented as classes). */
1941  virtual QCString trEnumReference(const QCString &name)
1942  { return QCString(name)+" Référence de l'énumération"; }
1943 
1944  /*! Used for a section containing inherited members */
1945  virtual QCString trInheritedFrom(const QCString &members,const QCString &what)
1946  { return QCString(members)+" hérités de "+what; }
1947 
1948  /*! Header of the sections with inherited members specific for the
1949  * base class(es)
1950  */
1952  { return "Membres hérités additionnels"; }
1953 
1954 //////////////////////////////////////////////////////////////////////////
1955 // new since 1.8.2
1956 //////////////////////////////////////////////////////////////////////////
1957 
1958  /*! Used as a tooltip for the toggle button that appears in the
1959  * navigation tree in the HTML output when GENERATE_TREEVIEW is
1960  * enabled. This tooltip explains the meaning of the button.
1961  */
1962  virtual QCString trPanelSynchronisationTooltip(bool enable)
1963  {
1964  QCString opt = enable ? "activer" : "désactiver";
1965  return "cliquez pour "+opt+" la synchronisation du panel";
1966  }
1967 
1968  /*! Used in a method of an Objective-C class that is declared in a
1969  * a category. Note that the @1 marker is required and is replaced
1970  * by a link.
1971  */
1972  virtual QCString trProvidedByCategory()
1973  {
1974  return "Déclarée dans la catégorie @0.";
1975  }
1976 
1977  /*! Used in a method of an Objective-C category that extends a class.
1978  * Note that the @1 marker is required and is replaced by a link to
1979  * the class method.
1980  */
1982  {
1983  return "Dérive la classe @0.";
1984  }
1986  /*! Used as the header of a list of class methods in Objective-C.
1987  * These are similar to static public member functions in C++.
1988  */
1990  {
1991  return "Méthodes de classe";
1992  }
1993 
1994  /*! Used as the header of a list of instance methods in Objective-C.
1995  * These are similar to public member functions in C++.
1996  */
1997  virtual QCString trInstanceMethods()
1998  {
1999  return "Méthodes d'instance";
2000  }
2001 
2002  /*! Used as the header of the member functions of an Objective-C class.
2003  */
2005  {
2006  return "Documentation des méthodes";
2007  }
2008 
2009 //////////////////////////////////////////////////////////////////////////
2010 // new since 1.8.4
2011 //////////////////////////////////////////////////////////////////////////
2012 
2013  /** old style UNO IDL services: implemented interfaces */
2014  virtual QCString trInterfaces()
2015  { return "Interfaces exportées"; }
2016 
2017  /** old style UNO IDL services: inherited services */
2019  { return "Services inclus"; }
2020 
2021  /** UNO IDL constant groups */
2023  { return "Groupes constants"; }
2024 
2025  /** UNO IDL constant groups */
2026  virtual QCString trConstantGroupReference(const QCString &namespaceName)
2027  {
2028  QCString result="Référence du groupe constant ";
2029  result+=namespaceName;
2030  return result;
2031  }
2032  /** UNO IDL service page title */
2033  virtual QCString trServiceReference(const QCString &sName)
2034  {
2035  QCString result="Référence du service ";
2036  result+=(QCString)sName;
2037  return result;
2038  }
2039  /** UNO IDL singleton page title */
2040  virtual QCString trSingletonReference(const QCString &sName)
2041  {
2042  QCString result="Référence du singleton ";
2043  result+=(QCString)sName;
2044  return result;
2045  }
2046  /** UNO IDL service page */
2047  virtual QCString trServiceGeneratedFromFiles(bool single)
2048  {
2049  // single is true implies a single file
2050  QCString result=(QCString)"La documentation pour ce service "
2051  "a été générée par ";
2052  if (single) result+="le fichier suivant :"; else result+="les fichiers suivants :";
2053  return result;
2054  }
2055  /** UNO IDL singleton page */
2056  virtual QCString trSingletonGeneratedFromFiles(bool single)
2057  {
2058  // single is true implies a single file
2059  QCString result=(QCString)"La documentation pour ce singleton "
2060  "a été générée par ";
2061  if (single) result+="le fichier suivant :"; else result+="les fichiers suivants :";
2062  return result;
2063  }
2064 
2065 //////////////////////////////////////////////////////////////////////////
2066 // new since 1.8.15
2067 //////////////////////////////////////////////////////////////////////////
2068 
2069  /** VHDL design unit hierarchy */
2071  { return "Hiérarchie des unités de conception"; }
2072  /** VHDL design unit list */
2073  virtual QCString trDesignUnitList()
2074  { return "Liste des unités de conception"; }
2075  /** VHDL design unit members */
2076  virtual QCString trDesignUnitMembers()
2077  { return "Membres des unités de conception"; }
2078  /** VHDL design unit list description */
2080  {
2081  return "Liste de tous les membres des unités de conception avec liens vers "
2082  "les entités auxquelles ils appartiennent :";
2083  }
2084  /** VHDL design unit index */
2085  virtual QCString trDesignUnitIndex()
2086  { return "Index des unités de conception"; }
2087  /** VHDL design units */
2088  virtual QCString trDesignUnits()
2089  { return "Unités de conception"; }
2090  /** VHDL functions/procedures/processes */
2092  { return "Fonctions/Procédures/Processes"; }
2093  /** VHDL type */
2094  virtual QCString trVhdlType(uint64 type,bool single)
2095  {
2096  switch(type)
2097  {
2098  case VhdlDocGen::LIBRARY:
2099  if (single) return "Librairie";
2100  else return "Librairies";
2101  case VhdlDocGen::PACKAGE:
2102  if (single) return "Paquetage";
2103  else return "Paquetages";
2104  case VhdlDocGen::SIGNAL:
2105  if (single) return "Signal";
2106  else return "Signaux";
2107  case VhdlDocGen::COMPONENT:
2108  if (single) return "Composant";
2109  else return "Composants";
2111  if (single) return "Constante";
2112  else return "Constantes";
2113  case VhdlDocGen::ENTITY:
2114  if (single) return "Entité";
2115  else return "Entités";
2116  case VhdlDocGen::TYPE:
2117  if (single) return "Type";
2118  else return "Types";
2119  case VhdlDocGen::SUBTYPE:
2120  if (single) return "Sous-type";
2121  else return "Sous-types";
2122  case VhdlDocGen::FUNCTION:
2123  if (single) return "Fonction";
2124  else return "Fonctions";
2125  case VhdlDocGen::RECORD:
2126  if (single) return "Enregistrement";
2127  else return "Enregistrements";
2128  case VhdlDocGen::PROCEDURE:
2129  if (single) return "Procédure";
2130  else return "Procédures";
2132  if (single) return "Architecture";
2133  else return "Architectures";
2134  case VhdlDocGen::ATTRIBUTE:
2135  if (single) return "Attribut";
2136  else return "Attributs";
2137  case VhdlDocGen::PROCESS:
2138  if (single) return "Process";
2139  else return "Processes";
2140  case VhdlDocGen::PORT:
2141  if (single) return "Port";
2142  else return "Ports";
2143  case VhdlDocGen::USE:
2144  if (single) return "Clause d'utilisation";
2145  else return "Clauses d'utilisation";
2146  case VhdlDocGen::GENERIC:
2147  if (single) return "Generique";
2148  else return "Generiques";
2150  return "Corps du paquetage";
2151  case VhdlDocGen::UNITS:
2152  return "Unités";
2154  if (single) return "Variable partagée";
2155  else return "Variables partagées";
2157  if (single) return "Fichier";
2158  else return "Fichiers";
2159  case VhdlDocGen::GROUP:
2160  if (single) return "Groupe";
2161  else return "Groupes";
2163  if (single) return "Instanciation";
2164  else return "Instanciations";
2166  if (single) return "Alias";
2167  else return "Alias";
2169  if (single) return "Configuration";
2170  else return "Configurations";
2172  return "Divers";
2173  case VhdlDocGen::UCF_CONST:
2174  return "Contraintes";
2175  default:
2176  return "Classe";
2177  }
2178  }
2179  virtual QCString trCustomReference(const QCString &name)
2180  { return QCString("Référence ") + QCString(name); }
2181 
2182  virtual QCString trConstants()
2183  {
2184  return "Constantes";
2185  }
2187  {
2188  return "Documentation des constantes";
2189  }
2190  virtual QCString trSequences()
2191  {
2192  return "Séquences";
2193  }
2195  {
2196  return "Documentation des séquences";
2197  }
2198  virtual QCString trDictionaries()
2199  {
2200  return "Dictionnaires";
2201  }
2203  {
2204  return "Documentation des dictionnaires";
2205  }
2206  virtual QCString trSliceInterfaces()
2207  {
2208  return "Interfaces";
2209  }
2210  virtual QCString trInterfaceIndex()
2211  {
2212  return "Index des interfaces";
2213  }
2214  virtual QCString trInterfaceList()
2215  {
2216  return "Liste des interfaces";
2217  }
2219  {
2220  return "Liste des interfaces avec une brève description :";
2221  }
2222  virtual QCString trInterfaceHierarchy()
2223  {
2224  return "Hiérarchies des interfaces";
2225  }
2227  {
2228  return "Cette liste d'héritage est classée approximativement par ordre alphabétique :";
2229  }
2231  {
2232  return "Documentation des interfaces";
2233  }
2234  virtual QCString trStructs()
2235  {
2236  return "Structures";
2237  }
2238  virtual QCString trStructIndex()
2239  {
2240  return "Index des structures";
2241  }
2242  virtual QCString trStructList()
2243  {
2244  return "Liste des structures";
2245  }
2247  {
2248  return "Liste des structures avec une brève description :";
2249  }
2251  {
2252  return "Documentation des structures";
2253  }
2254  virtual QCString trExceptionIndex()
2255  {
2256  return "Index des exceptions";
2257  }
2258  virtual QCString trExceptionList()
2259  {
2260  return "Liste des exceptions";
2261  }
2263  {
2264  return "Liste des exceptions avec une brève description :";
2265  }
2266  virtual QCString trExceptionHierarchy()
2267  {
2268  return "Hiérarchies des exceptions";
2269  }
2271  {
2272  return "Cette liste d'héritage est classée approximativement par ordre alphabétique :";
2273  }
2275  {
2276  return "Documentation des exceptions";
2277  }
2278  virtual QCString trCompoundReferenceSlice(const QCString &clName, ClassDef::CompoundType compType, bool isLocal)
2279  {
2280  QCString result = "Référence ";
2281  bool feminine = true;
2282  switch(compType)
2283  {
2284  case ClassDef::Class: result+="de la classe "; break;
2285  case ClassDef::Struct: result+="de la structure "; break;
2286  case ClassDef::Union: result+="de l'union "; break;
2287  case ClassDef::Interface: result+="de l'interface "; break;
2288  case ClassDef::Protocol: result+="du protocole "; feminine=false; break;
2289  case ClassDef::Category: result+="de la catégorie "; break;
2290  case ClassDef::Exception: result+="de l'exception "; break;
2291  default: break;
2292  }
2293 
2294  if(isLocal)
2295  {
2296  result += (feminine) ? "locale " : "local ";
2297  }
2298 
2299  result += (QCString)clName;
2300 
2301  return result;
2302  }
2304  {
2305  return "Opérations";
2306  }
2308  {
2309  return "Documentation des opérations";
2310  }
2312  {
2313  return "Champs de données";
2314  }
2316  {
2317  return "Documentation des champs de données";
2318  }
2320 };
2321 
2322 #endif
TranslatorFrench::trGotoDocumentation
virtual QCString trGotoDocumentation()
Definition: translator_fr.h:988
TranslatorFrench::trInheritedByList
virtual QCString trInheritedByList(int numEntries)
Definition: translator_fr.h:832
TranslatorFrench::trBug
virtual QCString trBug()
Definition: translator_fr.h:1283
getDotImageExtension
QCString getDotImageExtension()
Definition: util.cpp:7032
TranslatorFrench::trConstants
virtual QCString trConstants()
Definition: translator_fr.h:2259
TranslatorFrench::trInterfaceHierarchyDescription
virtual QCString trInterfaceHierarchyDescription()
Definition: translator_fr.h:2303
TranslatorFrench::trMore
virtual QCString trMore()
Definition: translator_fr.h:260
TranslatorFrench::trFileList
virtual QCString trFileList()
Definition: translator_fr.h:327
TranslatorFrench::trEnumValue
virtual QCString trEnumValue()
Definition: translator_fr.h:294
TranslatorFrench::trGotoSourceCode
virtual QCString trGotoSourceCode()
Definition: translator_fr.h:983
TranslatorFrench::trRemarks
virtual QCString trRemarks()
Definition: translator_fr.h:1109
TranslatorFrench::trFunctions
virtual QCString trFunctions()
Definition: translator_fr.h:586
TranslatorFrench::trFileIndex
virtual QCString trFileIndex()
Definition: translator_fr.h:519
VhdlDocGen::PROCEDURE
@ PROCEDURE
Definition: vhdldocgen.h:95
TranslatorFrench::trCustomReference
virtual QCString trCustomReference(const QCString &name)
Definition: translator_fr.h:2256
TranslatorFrench::trStaticPrivateMembers
virtual QCString trStaticPrivateMembers()
Definition: translator_fr.h:793
TranslatorFrench::trDirRelation
virtual QCString trDirRelation(const QCString &name)
Definition: translator_fr.h:1898
TranslatorFrench::trTest
virtual QCString trTest()
Definition: translator_fr.h:1211
TranslatorFrench::trImplementedInList
virtual QCString trImplementedInList(int numEntries)
Definition: translator_fr.h:1459
TranslatorFrench::trServiceGeneratedFromFiles
virtual QCString trServiceGeneratedFromFiles(bool single)
UNO IDL service page
Definition: translator_fr.h:2124
TranslatorFrench::trInterfaces
virtual QCString trInterfaces()
old style UNO IDL services: implemented interfaces
Definition: translator_fr.h:2091
VhdlDocGen::TYPE
@ TYPE
Definition: vhdldocgen.h:91
TranslatorFrench::trHierarchicalIndex
virtual QCString trHierarchicalIndex()
Definition: translator_fr.h:498
TranslatorFrench::trPackage
virtual QCString trPackage(const QCString &name)
Definition: translator_fr.h:1253
TranslatorFrench::trAll
virtual QCString trAll()
Definition: translator_fr.h:1551
TranslatorFrench::trStaticPublicMembers
virtual QCString trStaticPublicMembers()
Definition: translator_fr.h:781
TranslatorFrench::trMemberTypedefDocumentation
virtual QCString trMemberTypedefDocumentation()
Definition: translator_fr.h:235
VhdlDocGen::COMPONENT
@ COMPONENT
Definition: vhdldocgen.h:89
TranslatorFrench::trRelatedSubscript
virtual QCString trRelatedSubscript()
Definition: translator_fr.h:227
TranslatorFrench::trGotoGraphicalHierarchy
virtual QCString trGotoGraphicalHierarchy()
Definition: translator_fr.h:1021
TranslatorFrench::trDesignUnitList
virtual QCString trDesignUnitList()
VHDL design unit list
Definition: translator_fr.h:2150
ClassDef::Union
@ Union
Definition: classdef.h:109
TranslatorFrench::trCompoundReferenceFortran
virtual QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_fr.h:1775
TranslatorFrench::trDirectories
virtual QCString trDirectories()
Definition: translator_fr.h:1634
VhdlDocGen::SUBTYPE
@ SUBTYPE
Definition: vhdldocgen.h:92
TranslatorFrench::trStaticProtectedAttribs
virtual QCString trStaticProtectedAttribs()
Definition: translator_fr.h:1069
TranslatorFrench::trModule
virtual QCString trModule(bool first_capital, bool singular)
Definition: translator_fr.h:1834
TranslatorFrench::trAndMore
virtual QCString trAndMore(const QCString &number)
Definition: translator_fr.h:2006
TranslatorFrench::trConstructorDocumentation
virtual QCString trConstructorDocumentation()
Definition: translator_fr.h:978
TranslatorFrench::trCompoundIndexFortran
virtual QCString trCompoundIndexFortran()
Definition: translator_fr.h:1734
TranslatorFrench::trModulesList
virtual QCString trModulesList()
Definition: translator_fr.h:1762
TranslatorFrench::trDirReference
virtual QCString trDirReference(const QCString &dirName)
Definition: translator_fr.h:1648
TranslatorFrench::trProtectedSlots
virtual QCString trProtectedSlots()
Definition: translator_fr.h:785
TranslatorFrench::trCompoundMembersFortran
virtual QCString trCompoundMembersFortran()
Definition: translator_fr.h:1704
TranslatorFrench::trSince
virtual QCString trSince()
Definition: translator_fr.h:1122
TranslatorFrench::trExamplesDescription
virtual QCString trExamplesDescription()
Definition: translator_fr.h:474
TranslatorFrench::trModuleIndex
virtual QCString trModuleIndex()
Definition: translator_fr.h:492
TranslatorFrench::trDocumentation
virtual QCString trDocumentation()
Definition: translator_fr.h:486
TranslatorFrench::trDesignUnitIndex
virtual QCString trDesignUnitIndex()
VHDL design unit index
Definition: translator_fr.h:2162
TranslatorAdapter_1_8_15
Definition: translator_adapter.h:82
TranslatorFrench::trModulesListDescription
virtual QCString trModulesListDescription(bool extractAll)
Definition: translator_fr.h:1766
TranslatorFrench::trCallGraph
virtual QCString trCallGraph()
Definition: translator_fr.h:1556
TranslatorFrench::trMemberEnumerationDocumentation
virtual QCString trMemberEnumerationDocumentation()
Definition: translator_fr.h:239
TranslatorFrench::trConstantDocumentation
virtual QCString trConstantDocumentation()
Definition: translator_fr.h:2263
TranslatorFrench::trCompounds
virtual QCString trCompounds()
Definition: translator_fr.h:634
TranslatorFrench::trExamples
virtual QCString trExamples()
Definition: translator_fr.h:361
TranslatorFrench::trMemberFunctionDocumentationFortran
virtual QCString trMemberFunctionDocumentationFortran()
Definition: translator_fr.h:1696
VhdlDocGen::ENTITY
@ ENTITY
Definition: vhdldocgen.h:83
TranslatorFrench::trGeneratedFromFilesFortran
virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single)
Definition: translator_fr.h:1844
TranslatorFrench::trTestList
virtual QCString trTestList()
Definition: translator_fr.h:1216
TranslatorFrench::trDefineValue
virtual QCString trDefineValue()
Definition: translator_fr.h:1273
VhdlDocGen::SIGNAL
@ SIGNAL
Definition: vhdldocgen.h:88
TranslatorFrench::trAdditionalInheritedMembers
virtual QCString trAdditionalInheritedMembers()
Definition: translator_fr.h:2028
TranslatorFrench::trModulesMemberDescription
virtual QCString trModulesMemberDescription(bool extractAll)
Definition: translator_fr.h:1808
generateMarker
QCString generateMarker(int id)
Definition: util.cpp:284
QCString::isEmpty
bool isEmpty() const
Returns TRUE iff the string is empty
Definition: qcstring.h:144
TranslatorFrench::trPrecondition
virtual QCString trPrecondition()
Definition: translator_fr.h:993
VhdlDocGen::CONFIG
@ CONFIG
Definition: vhdldocgen.h:105
VhdlDocGen::GENERIC
@ GENERIC
Definition: vhdldocgen.h:100
TranslatorFrench::trInterfaceList
virtual QCString trInterfaceList()
Definition: translator_fr.h:2291
TranslatorFrench::trSignals
virtual QCString trSignals()
Definition: translator_fr.h:779
TranslatorFrench::trCompoundList
virtual QCString trCompoundList()
Definition: translator_fr.h:314
TranslatorFrench::trDictionaryDocumentation
virtual QCString trDictionaryDocumentation()
Definition: translator_fr.h:2279
TranslatorFrench::trDefinedInSourceFile
virtual QCString trDefinedInSourceFile()
Definition: translator_fr.h:949
TranslatorFrench::trEventDocumentation
virtual QCString trEventDocumentation()
Definition: translator_fr.h:1500
TranslatorFrench::trPrivateAttribs
virtual QCString trPrivateAttribs()
Definition: translator_fr.h:1077
TranslatorFrench::trMemberDataDocumentation
virtual QCString trMemberDataDocumentation()
Definition: translator_fr.h:247
ClassDef::CompoundType
CompoundType
The various compound types
Definition: classdef.h:107
TranslatorFrench::trCiteReferences
virtual QCString trCiteReferences()
Definition: translator_fr.h:1981
TranslatorFrench::trMainPage
virtual QCString trMainPage()
Definition: translator_fr.h:932
TranslatorFrench::trNamespaceListDescription
virtual QCString trNamespaceListDescription(bool extractAll)
Definition: translator_fr.h:708
VhdlDocGen::PACKAGE
@ PACKAGE
Definition: vhdldocgen.h:86
TranslatorFrench::trStructDocumentation
virtual QCString trStructDocumentation()
Definition: translator_fr.h:2327
ClassDef::Interface
@ Interface
Definition: classdef.h:110
TranslatorFrench::trDeprecated
virtual QCString trDeprecated()
Definition: translator_fr.h:958
TranslatorFrench::trEnumerationTypeDocumentation
virtual QCString trEnumerationTypeDocumentation()
Definition: translator_fr.h:616
TranslatorFrench::trPackages
virtual QCString trPackages()
Definition: translator_fr.h:1268
TranslatorFrench::trFileListDescription
virtual QCString trFileListDescription(bool extractAll)
Definition: translator_fr.h:383
TranslatorFrench::trProvidedByCategory
virtual QCString trProvidedByCategory()
Definition: translator_fr.h:2049
TranslatorFrench::trExceptionIndex
virtual QCString trExceptionIndex()
Definition: translator_fr.h:2331
TranslatorFrench::trTodoList
virtual QCString trTodoList()
Definition: translator_fr.h:1096
TranslatorFrench::trStaticProtectedMembers
virtual QCString trStaticProtectedMembers()
Definition: translator_fr.h:787
TranslatorFrench::trEnumerationValueDocumentation
virtual QCString trEnumerationValueDocumentation()
Definition: translator_fr.h:1688
TranslatorFrench::trPackageListDescription
virtual QCString trPackageListDescription()
Definition: translator_fr.h:1263
TranslatorFrench::trIncludesFileIn
virtual QCString trIncludesFileIn(const QCString &name)
Definition: translator_fr.h:1944
TranslatorFrench::trFunctionDocumentation
virtual QCString trFunctionDocumentation()
Definition: translator_fr.h:622
TranslatorFrench::trStaticPublicAttribs
virtual QCString trStaticPublicAttribs()
Definition: translator_fr.h:1057
TranslatorFrench::trRTFTableOfContents
virtual QCString trRTFTableOfContents()
Definition: translator_fr.h:1471
TranslatorFrench::trListOfAllMembers
virtual QCString trListOfAllMembers()
Definition: translator_fr.h:264
TranslatorFrench::trOverloadText
virtual QCString trOverloadText()
Definition: translator_fr.h:1668
TranslatorFrench::trGraphicalHierarchy
virtual QCString trGraphicalHierarchy()
Definition: translator_fr.h:1017
TranslatorFrench::trWriteList
virtual QCString trWriteList(int numEntries)
Definition: translator_fr.h:799
TranslatorFrench::trSingletonReference
virtual QCString trSingletonReference(const QCString &sName)
UNO IDL singleton page title
Definition: translator_fr.h:2117
TranslatorFrench::trStructIndex
virtual QCString trStructIndex()
Definition: translator_fr.h:2315
TranslatorFrench::trVersion
virtual QCString trVersion()
Definition: translator_fr.h:672
TranslatorFrench::trTemplateParameters
virtual QCString trTemplateParameters()
Definition: translator_fr.h:2002
TranslatorFrench::trExceptionListDescription
virtual QCString trExceptionListDescription()
Definition: translator_fr.h:2339
TranslatorFrench::trSequences
virtual QCString trSequences()
Definition: translator_fr.h:2267
TranslatorFrench::trClasses
virtual QCString trClasses()
Definition: translator_fr.h:1241
TranslatorFrench::trFunctionAndProc
virtual QCString trFunctionAndProc()
VHDL functions/procedures/processes
Definition: translator_fr.h:2168
TranslatorFrench::trSliceInterfaces
virtual QCString trSliceInterfaces()
Definition: translator_fr.h:2283
TranslatorFrench::trRelatedFunctions
virtual QCString trRelatedFunctions()
Definition: translator_fr.h:223
TranslatorFrench::trClassHierarchy
virtual QCString trClassHierarchy()
Definition: translator_fr.h:310
TranslatorFrench::trReturnValues
virtual QCString trReturnValues()
Definition: translator_fr.h:927
TranslatorFrench::trFileReference
virtual QCString trFileReference(const QCString &fileName)
Definition: translator_fr.h:760
TranslatorFrench::trConstantGroupReference
virtual QCString trConstantGroupReference(const QCString &namespaceName)
UNO IDL constant groups
Definition: translator_fr.h:2103
TranslatorFrench::trISOLang
virtual QCString trISOLang()
Definition: translator_fr.h:215
TranslatorFrench::trPublicAttribs
virtual QCString trPublicAttribs()
Definition: translator_fr.h:1046
TranslatorFrench::trDate
virtual QCString trDate()
Definition: translator_fr.h:676
VhdlDocGen::VFILE
@ VFILE
Definition: vhdldocgen.h:103
VhdlDocGen::UNITS
@ UNITS
Definition: vhdldocgen.h:99
ClassDef::Class
@ Class
Definition: classdef.h:107
TranslatorFrench::trDetailedDescription
virtual QCString trDetailedDescription()
Definition: translator_fr.h:231
TranslatorFrench::trCode
virtual QCString trCode()
Definition: translator_fr.h:1013
TranslatorFrench::trConstantGroups
virtual QCString trConstantGroups()
UNO IDL constant groups
Definition: translator_fr.h:2099
VhdlDocGen::PORT
@ PORT
Definition: vhdldocgen.h:98
TranslatorFrench::trGlobal
virtual QCString trGlobal(bool first_capital, bool singular)
Definition: translator_fr.h:1413
TranslatorFrench::trOperations
virtual QCString trOperations()
Definition: translator_fr.h:2380
TranslatorFrench::trPublicMembers
virtual QCString trPublicMembers()
Definition: translator_fr.h:775
TranslatorFrench::trReturns
virtual QCString trReturns()
Definition: translator_fr.h:680
TranslatorFrench
Definition: translator_fr.h:106
TranslatorFrench::trReferencedBy
virtual QCString trReferencedBy()
Definition: translator_fr.h:1105
TranslatorFrench::trAttention
virtual QCString trAttention()
Definition: translator_fr.h:1113
TranslatorFrench::trGroup
virtual QCString trGroup(bool first_capital, bool singular)
Definition: translator_fr.h:1380
TranslatorFrench::trStructListDescription
virtual QCString trStructListDescription()
Definition: translator_fr.h:2323
TranslatorFrench::trLegendTitle
virtual QCString trLegendTitle()
Definition: translator_fr.h:1132
TranslatorFrench::trEnumName
virtual QCString trEnumName()
Definition: translator_fr.h:290
TranslatorFrench::trModulesDescription
virtual QCString trModulesDescription()
Definition: translator_fr.h:482
TranslatorFrench::trInheritedFrom
virtual QCString trInheritedFrom(const QCString &members, const QCString &what)
Definition: translator_fr.h:2022
TranslatorFrench::trPageIndex
virtual QCString trPageIndex()
Definition: translator_fr.h:1029
TranslatorFrench::trNoMatches
virtual QCString trNoMatches()
Definition: translator_fr.h:1922
TranslatorFrench::trNamespaceIndex
virtual QCString trNamespaceIndex()
Definition: translator_fr.h:872
TranslatorFrench::trPropertyDocumentation
virtual QCString trPropertyDocumentation()
Definition: translator_fr.h:1231
TranslatorFrench::trMember
virtual QCString trMember(bool first_capital, bool singular)
Definition: translator_fr.h:1402
TranslatorFrench::trCompoundMembersDescription
virtual QCString trCompoundMembersDescription(bool extractAll)
Definition: translator_fr.h:410
TranslatorFrench::trNamespaceList
virtual QCString trNamespaceList()
Definition: translator_fr.h:704
TranslatorFrench::trSubprogramDocumentation
virtual QCString trSubprogramDocumentation()
Definition: translator_fr.h:1752
TranslatorFrench::trSearch
virtual QCString trSearch()
Definition: translator_fr.h:365
TranslatorFrench::trClass
virtual QCString trClass(bool first_capital, bool singular)
Definition: translator_fr.h:1346
TranslatorFrench::trTodo
virtual QCString trTodo()
Definition: translator_fr.h:1091
TranslatorFrench::trGeneratedFromFiles
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
Definition: translator_fr.h:898
TranslatorFrench::trPageDocumentation
virtual QCString trPageDocumentation()
Definition: translator_fr.h:558
TranslatorFrench::trRTFGeneralIndex
virtual QCString trRTFGeneralIndex()
Definition: translator_fr.h:1337
TranslatorFrench::trEnumerationValues
virtual QCString trEnumerationValues()
Definition: translator_fr.h:598
TranslatorFrench::trInclDepGraph
virtual QCString trInclDepGraph(const QCString &fName)
Definition: translator_fr.h:973
TranslatorFrench::trImplementedFromList
virtual QCString trImplementedFromList(int numEntries)
Definition: translator_fr.h:1451
TranslatorFrench::trDefinedIn
virtual QCString trDefinedIn()
Definition: translator_fr.h:298
TranslatorFrench::trCompoundMembers
virtual QCString trCompoundMembers()
Definition: translator_fr.h:331
TranslatorFrench::trDesignUnitMembers
virtual QCString trDesignUnitMembers()
VHDL design unit members
Definition: translator_fr.h:2153
VhdlDocGen::ALIAS
@ ALIAS
Definition: vhdldocgen.h:106
TranslatorFrench::trCompoundListDescriptionFortran
virtual QCString trCompoundListDescriptionFortran()
Definition: translator_fr.h:1708
TranslatorFrench::trDir
virtual QCString trDir(bool first_capital, bool singular)
Definition: translator_fr.h:1654
TranslatorFrench::trRelatedFunctionDocumentation
virtual QCString trRelatedFunctionDocumentation()
Definition: translator_fr.h:729
TranslatorFrench::trExceptions
virtual QCString trExceptions()
Definition: translator_fr.h:692
TranslatorFrench::trInheritsList
virtual QCString trInheritsList(int numEntries)
Definition: translator_fr.h:824
VhdlDocGen::ARCHITECTURE
@ ARCHITECTURE
Definition: vhdldocgen.h:85
TranslatorFrench::trEvents
virtual QCString trEvents()
Definition: translator_fr.h:1495
TranslatorFrench::trDataMembers
virtual QCString trDataMembers()
Definition: translator_fr.h:2388
TranslatorFrench::trMethodDocumentation
virtual QCString trMethodDocumentation()
Definition: translator_fr.h:2081
TranslatorFrench::trVariables
virtual QCString trVariables()
Definition: translator_fr.h:592
TranslatorFrench::trProperties
virtual QCString trProperties()
Definition: translator_fr.h:1226
TranslatorFrench::trSubprograms
virtual QCString trSubprograms()
Definition: translator_fr.h:1746
TranslatorFrench::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_fr.h:1322
VhdlDocGen::ATTRIBUTE
@ ATTRIBUTE
Definition: vhdldocgen.h:87
TranslatorFrench::trDetailLevel
virtual QCString trDetailLevel()
Definition: translator_fr.h:1998
TranslatorFrench::trReferences
virtual QCString trReferences()
Definition: translator_fr.h:1439
TranslatorFrench::trPrivateSlots
virtual QCString trPrivateSlots()
Definition: translator_fr.h:791
TranslatorFrench::trReimplementedFromList
virtual QCString trReimplementedFromList(int numEntries)
Definition: translator_fr.h:840
TranslatorFrench::trSequenceDocumentation
virtual QCString trSequenceDocumentation()
Definition: translator_fr.h:2271
TranslatorFrench::trDataMemberDocumentation
virtual QCString trDataMemberDocumentation()
Definition: translator_fr.h:2392
TranslatorFrench::trStructList
virtual QCString trStructList()
Definition: translator_fr.h:2319
TranslatorFrench::trServices
virtual QCString trServices()
old style UNO IDL services: inherited services
Definition: translator_fr.h:2095
TranslatorFrench::trSeeAlso
virtual QCString trSeeAlso()
Definition: translator_fr.h:684
TranslatorFrench::trOperationDocumentation
virtual QCString trOperationDocumentation()
Definition: translator_fr.h:2384
VhdlDocGen::CONSTANT
@ CONSTANT
Definition: vhdldocgen.h:90
TranslatorFrench::trProtectedMembers
virtual QCString trProtectedMembers()
Definition: translator_fr.h:783
TranslatorFrench::trSearchMatches
virtual QCString trSearchMatches()
Definition: translator_fr.h:1599
TranslatorFrench::trDictionaries
virtual QCString trDictionaries()
Definition: translator_fr.h:2275
TranslatorFrench::trStaticPrivateAttribs
virtual QCString trStaticPrivateAttribs()
Definition: translator_fr.h:1081
TranslatorFrench::trStaticPackageAttribs
virtual QCString trStaticPackageAttribs()
Definition: translator_fr.h:1539
TranslatorFrench::trFriends
virtual QCString trFriends()
Definition: translator_fr.h:719
TranslatorFrench::trSingletonGeneratedFromFiles
virtual QCString trSingletonGeneratedFromFiles(bool single)
UNO IDL singleton page
Definition: translator_fr.h:2133
VhdlDocGen::PACKAGE_BODY
@ PACKAGE_BODY
Definition: vhdldocgen.h:84
TranslatorFrench::trSearching
virtual QCString trSearching()
Definition: translator_fr.h:1916
TranslatorFrench::trFile
virtual QCString trFile(bool first_capital, bool singular)
Definition: translator_fr.h:1357
TranslatorFrench::trCopyright
virtual QCString trCopyright()
Definition: translator_fr.h:1985
TranslatorFrench::trGotoTextualHierarchy
virtual QCString trGotoTextualHierarchy()
Definition: translator_fr.h:1025
VhdlDocGen::LIBRARY
@ LIBRARY
Definition: vhdldocgen.h:82
TranslatorFrench::trCompoundReferenceSlice
virtual QCString trCompoundReferenceSlice(const QCString &clName, ClassDef::CompoundType compType, bool isLocal)
Definition: translator_fr.h:2355
TranslatorFrench::trInterfaceDocumentation
virtual QCString trInterfaceDocumentation()
Definition: translator_fr.h:2307
TranslatorFrench::trDefineDocumentation
virtual QCString trDefineDocumentation()
Definition: translator_fr.h:604
ClassDef::Category
@ Category
Definition: classdef.h:112
TranslatorFrench::trTypeDocumentation
virtual QCString trTypeDocumentation()
Definition: translator_fr.h:1740
TranslatorFrench::trPageAbbreviation
virtual QCString trPageAbbreviation()
Definition: translator_fr.h:938
ClassDef::Struct
@ Struct
Definition: classdef.h:108
VhdlDocGen::UCF_CONST
@ UCF_CONST
Definition: vhdldocgen.h:108
TranslatorFrench::trStructs
virtual QCString trStructs()
Definition: translator_fr.h:2311
TranslatorFrench::trThisIsTheListOfAllMembers
virtual QCString trThisIsTheListOfAllMembers()
Definition: translator_fr.h:272
TranslatorFrench::trParameters
virtual QCString trParameters()
Definition: translator_fr.h:688
TranslatorFrench::trProtectedTypes
virtual QCString trProtectedTypes()
Definition: translator_fr.h:1061
TranslatorFrench::trProtectedAttribs
virtual QCString trProtectedAttribs()
Definition: translator_fr.h:1065
TranslatorFrench::trPostcondition
virtual QCString trPostcondition()
Definition: translator_fr.h:998
TranslatorFrench::trModulesMembers
virtual QCString trModulesMembers()
Definition: translator_fr.h:1804
TranslatorFrench::trPackageList
virtual QCString trPackageList()
Definition: translator_fr.h:1258
TranslatorFrench::trServiceReference
virtual QCString trServiceReference(const QCString &sName)
UNO IDL service page title
Definition: translator_fr.h:2110
TranslatorFrench::trSubprogram
virtual QCString trSubprogram(bool first_capital, bool singular)
Definition: translator_fr.h:1880
TranslatorFrench::trRelatedPagesDescription
virtual QCString trRelatedPagesDescription()
Definition: translator_fr.h:478
TranslatorFrench::trWarning
virtual QCString trWarning()
Definition: translator_fr.h:668
TranslatorFrench::trNamespaceReference
virtual QCString trNamespaceReference(const QCString &namespaceName)
Definition: translator_fr.h:768
TranslatorFrench::trForInternalUseOnly
virtual QCString trForInternalUseOnly()
Definition: translator_fr.h:664
TranslatorFrench::trCallerGraph
virtual QCString trCallerGraph()
Definition: translator_fr.h:1680
TranslatorFrench::trPublicSlots
virtual QCString trPublicSlots()
Definition: translator_fr.h:777
TranslatorFrench::trTypedefDocumentation
virtual QCString trTypedefDocumentation()
Definition: translator_fr.h:610
TranslatorFrench::trIncludingInheritedMembers
virtual QCString trIncludingInheritedMembers()
Definition: translator_fr.h:276
TranslatorFrench::trDefinedAtLineInSourceFile
virtual QCString trDefinedAtLineInSourceFile()
Definition: translator_fr.h:945
TranslatorFrench::trCompoundListDescription
virtual QCString trCompoundListDescription()
Definition: translator_fr.h:392
TranslatorFrench::trPanelSynchronisationTooltip
virtual QCString trPanelSynchronisationTooltip(bool enable)
Definition: translator_fr.h:2039
TranslatorFrench::trFileDocumentation
virtual QCString trFileDocumentation()
Definition: translator_fr.h:546
TranslatorFrench::trGeneratedAt
virtual QCString trGeneratedAt(const QCString &date, const QCString &projName)
Definition: translator_fr.h:649
TranslatorFrench::trNamespaceMemberDescription
virtual QCString trNamespaceMemberDescription(bool extractAll)
Definition: translator_fr.h:858
TranslatorFrench::trInitialValue
virtual QCString trInitialValue()
Definition: translator_fr.h:1008
TranslatorFrench::trExceptionDocumentation
virtual QCString trExceptionDocumentation()
Definition: translator_fr.h:2351
TranslatorFrench::trReimplementedInList
virtual QCString trReimplementedInList(int numEntries)
Definition: translator_fr.h:848
TranslatorFrench::trInterfaceHierarchy
virtual QCString trInterfaceHierarchy()
Definition: translator_fr.h:2299
TranslatorFrench::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_fr.h:1331
TranslatorFrench::trInstanceMethods
virtual QCString trInstanceMethods()
Definition: translator_fr.h:2074
TranslatorFrench::trDesignUnitListDescription
virtual QCString trDesignUnitListDescription()
VHDL design unit list description
Definition: translator_fr.h:2156
TranslatorFrench::trSearchResults
virtual QCString trSearchResults(int numDocuments)
Definition: translator_fr.h:1580
TranslatorFrench::trCompoundReference
virtual QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_fr.h:737
TranslatorFrench::trLoading
virtual QCString trLoading()
Definition: translator_fr.h:1904
TranslatorFrench::trFileMembersDescription
virtual QCString trFileMembersDescription(bool extractAll)
Definition: translator_fr.h:452
VhdlDocGen::INSTANTIATION
@ INSTANTIATION
Definition: vhdldocgen.h:101
TranslatorFrench::trModulesIndex
virtual QCString trModulesIndex()
Definition: translator_fr.h:1827
TranslatorFrench::trNamespaceDocumentation
virtual QCString trNamespaceDocumentation()
Definition: translator_fr.h:878
TranslatorFrench::latexLanguageSupportCommand
virtual QCString latexLanguageSupportCommand()
Definition: translator_fr.h:209
TranslatorFrench::trNamespace
virtual QCString trNamespace(bool first_capital, bool singular)
Definition: translator_fr.h:1368
TranslatorFrench::trModuleReference
virtual QCString trModuleReference(const QCString &namespaceName)
Definition: translator_fr.h:1796
Config_getBool
#define Config_getBool(name)
Definition: config.h:33
ClassDef::Protocol
@ Protocol
Definition: classdef.h:111
TranslatorFrench::trEnumGeneratedFromFiles
virtual QCString trEnumGeneratedFromFiles(bool single)
Definition: translator_fr.h:2010
TranslatorFrench::trInterfaceIndex
virtual QCString trInterfaceIndex()
Definition: translator_fr.h:2287
TranslatorFrench::trPrivateMembers
virtual QCString trPrivateMembers()
Definition: translator_fr.h:789
TranslatorFrench::trRelatedPages
virtual QCString trRelatedPages()
Definition: translator_fr.h:357
TranslatorFrench::trClassDocumentation
virtual QCString trClassDocumentation()
Definition: translator_fr.h:531
TranslatorFrench::trNamespaceMembers
virtual QCString trNamespaceMembers()
Definition: translator_fr.h:854
TranslatorFrench::trClassDiagram
virtual QCString trClassDiagram(const QCString &clName)
Definition: translator_fr.h:658
TranslatorFrench::trGlobalNamespace
virtual QCString trGlobalNamespace()
Definition: translator_fr.h:1910
TranslatorFrench::trTypedefs
virtual QCString trTypedefs()
Definition: translator_fr.h:574
TranslatorFrench::trMemberFunctionDocumentation
virtual QCString trMemberFunctionDocumentation()
Definition: translator_fr.h:243
TranslatorFrench::trInterfaceListDescription
virtual QCString trInterfaceListDescription()
Definition: translator_fr.h:2295
TranslatorFrench::trGeneratedBy
virtual QCString trGeneratedBy()
Definition: translator_fr.h:696
VhdlDocGen::PROCESS
@ PROCESS
Definition: vhdldocgen.h:97
TranslatorFrench::trEnumReference
virtual QCString trEnumReference(const QCString &name)
Definition: translator_fr.h:2018
TranslatorFrench::trDirDocumentation
virtual QCString trDirDocumentation()
Definition: translator_fr.h:1628
TranslatorFrench::trDataTypes
virtual QCString trDataTypes()
Definition: translator_fr.h:1758
VhdlDocGen::SHAREDVARIABLE
@ SHAREDVARIABLE
Definition: vhdldocgen.h:104
TranslatorFrench::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_fr.h:1959
TranslatorFrench::trCollaborationDiagram
virtual QCString trCollaborationDiagram(const QCString &clName)
Definition: translator_fr.h:968
TranslatorFrench::trReferenceManual
virtual QCString trReferenceManual()
Definition: translator_fr.h:562
TranslatorFrench::trFileIn
virtual QCString trFileIn(const QCString &name)
Definition: translator_fr.h:1935
TranslatorFrench::trPackageAttribs
virtual QCString trPackageAttribs()
Definition: translator_fr.h:1532
TranslatorFrench::trCompoundIndex
virtual QCString trCompoundIndex()
Definition: translator_fr.h:504
TranslatorFrench::trStaticPackageMembers
virtual QCString trStaticPackageMembers()
Definition: translator_fr.h:1525
TranslatorFrench::trInvariant
virtual QCString trInvariant()
Definition: translator_fr.h:1003
TranslatorFrench::trPublicTypes
virtual QCString trPublicTypes()
Definition: translator_fr.h:1042
TranslatorFrench::trExceptionList
virtual QCString trExceptionList()
Definition: translator_fr.h:2335
TranslatorFrench::trDesignUnitHierarchy
virtual QCString trDesignUnitHierarchy()
VHDL design unit hierarchy
Definition: translator_fr.h:2147
TranslatorFrench::trDeprecatedList
virtual QCString trDeprecatedList()
Definition: translator_fr.h:1483
TranslatorFrench::trExceptionHierarchyDescription
virtual QCString trExceptionHierarchyDescription()
Definition: translator_fr.h:2347
VhdlDocGen::GROUP
@ GROUP
Definition: vhdldocgen.h:102
TranslatorFrench::trDirDepGraph
virtual QCString trDirDepGraph(const QCString &name)
Definition: translator_fr.h:1989
TranslatorFrench::trLegend
virtual QCString trLegend()
Definition: translator_fr.h:1201
TranslatorFrench::trClassHierarchyDescription
virtual QCString trClassHierarchyDescription()
Definition: translator_fr.h:369
TranslatorFrench::trCompoundListFortran
virtual QCString trCompoundListFortran()
Definition: translator_fr.h:1700
TranslatorFrench::trLegendDocs
virtual QCString trLegendDocs()
Definition: translator_fr.h:1139
TranslatorFrench::trPrivateTypes
virtual QCString trPrivateTypes()
Definition: translator_fr.h:1073
TranslatorFrench::trDesignUnits
virtual QCString trDesignUnits()
VHDL design units
Definition: translator_fr.h:2165
TranslatorFrench::trVariableDocumentation
virtual QCString trVariableDocumentation()
Definition: translator_fr.h:628
TranslatorFrench::trModuleDocumentation
virtual QCString trModuleDocumentation()
Definition: translator_fr.h:525
TranslatorFrench::trSearchResultsTitle
virtual QCString trSearchResultsTitle()
Definition: translator_fr.h:1568
TranslatorFrench::trNamespaces
virtual QCString trNamespaces()
Definition: translator_fr.h:888
VhdlDocGen::USE
@ USE
Definition: vhdldocgen.h:96
TranslatorFrench::trClassMethods
virtual QCString trClassMethods()
Definition: translator_fr.h:2066
TranslatorFrench::trFileMembers
virtual QCString trFileMembers()
Definition: translator_fr.h:344
TranslatorFrench::trVhdlType
virtual QCString trVhdlType(uint64 type, bool single)
VHDL type
Definition: translator_fr.h:2171
TranslatorFrench::trPackageTypes
virtual QCString trPackageTypes()
Definition: translator_fr.h:1511
TranslatorFrench::idLanguage
virtual QCString idLanguage()
Definition: translator_fr.h:195
TranslatorFrench::trEnumerations
virtual QCString trEnumerations()
Definition: translator_fr.h:580
TranslatorFrench::trBugList
virtual QCString trBugList()
Definition: translator_fr.h:1288
TranslatorFrench::trExceptionHierarchy
virtual QCString trExceptionHierarchy()
Definition: translator_fr.h:2343
ClassDef::Exception
@ Exception
Definition: classdef.h:113
TranslatorFrench::trExtendsClass
virtual QCString trExtendsClass()
Definition: translator_fr.h:2058
TranslatorFrench::trAuthor
virtual QCString trAuthor(bool first_capital, bool singular)
Definition: translator_fr.h:1426
TranslatorFrench::trExampleDocumentation
virtual QCString trExampleDocumentation()
Definition: translator_fr.h:552
TranslatorFrench::trSourceFile
virtual QCString trSourceFile(QCString &filename)
Definition: translator_fr.h:1610
TranslatorFrench::trCompoundMembersDescriptionFortran
virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
Definition: translator_fr.h:1712
TranslatorFrench::trDirIndex
virtual QCString trDirIndex()
Definition: translator_fr.h:1622
TranslatorFrench::trGeneratedAutomatically
virtual QCString trGeneratedAutomatically(const QCString &s)
Definition: translator_fr.h:282
VhdlDocGen::FUNCTION
@ FUNCTION
Definition: vhdldocgen.h:93
TranslatorFrench::trModules
virtual QCString trModules()
Definition: translator_fr.h:306
TranslatorFrench::trType
virtual QCString trType(bool first_capital, bool singular)
Definition: translator_fr.h:1869
TranslatorFrench::trNote
virtual QCString trNote()
Definition: translator_fr.h:1038
TranslatorFrench::trMemberList
virtual QCString trMemberList()
Definition: translator_fr.h:268
uint64
uint64_t uint64
Definition: qcstring.h:43
TranslatorFrench::trPage
virtual QCString trPage(bool first_capital, bool singular)
Definition: translator_fr.h:1391
VhdlDocGen::RECORD
@ RECORD
Definition: vhdldocgen.h:94
QCString::sprintf
QCString & sprintf(const char *format,...)
Definition: qcstring.cpp:24
TranslatorFrench::trInclByDepGraph
virtual QCString trInclByDepGraph()
Definition: translator_fr.h:1117
TranslatorFrench::trPackageMembers
virtual QCString trPackageMembers()
Definition: translator_fr.h:1518
TranslatorFrench::trDirDescription
virtual QCString trDirDescription()
Definition: translator_fr.h:1640
VhdlDocGen::MISCELLANEOUS
@ MISCELLANEOUS
Definition: vhdldocgen.h:107
TranslatorFrench::trTypeConstraints
virtual QCString trTypeConstraints()
Definition: translator_fr.h:1888
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108
TranslatorFrench::trDefines
virtual QCString trDefines()
Definition: translator_fr.h:568