diff options
Diffstat (limited to 'src/translator_fr.h')
-rw-r--r-- | src/translator_fr.h | 238 |
1 files changed, 238 insertions, 0 deletions
diff --git a/src/translator_fr.h b/src/translator_fr.h index c7d9486..2bf7aa4 100644 --- a/src/translator_fr.h +++ b/src/translator_fr.h @@ -716,6 +716,244 @@ class TranslatorFrench : public Translator { return "D�finition dans le fichier @0."; } +////////////////////////////////////////////////////////////////////////// +// new since 0.49-991205 +////////////////////////////////////////////////////////////////////////// + + virtual QCString trDeprecated() + { + return "Obsol�te"; + } + +////////////////////////////////////////////////////////////////////////// +// new since 1.0.0 +////////////////////////////////////////////////////////////////////////// + + /*! this text is put before a collaboration diagram */ + virtual QCString trCollaborationDiagram(const char *clName) + { + return (QCString)"Diagramme de collaboration de "+clName+":"; + } + /*! this text is put before an include dependency graph */ + virtual QCString trInclDepGraph(const char *fName) + { + return (QCString)"Graphe des d�pendances par inclusion pour "+fName+":"; + } + /*! header that is put before the list of constructor/destructors. */ + virtual QCString trConstructorDocumentation() + { + return "Documentation des contructeurs et destructeurs"; + } + /*! Used in the file documentation to point to the corresponding sources. */ + virtual QCString trGotoSourceCode() + { + return "Aller au code source de ce fichier."; + } + /*! Used in the file sources to point to the corresponding documentation. */ + virtual QCString trGotoDocumentation() + { + return "Aller � la documentation de ce fichier."; + } + /*! Text for the \pre command */ + virtual QCString trPrecondition() + { + return "Pr�condition"; + } + /*! Text for the \post command */ + virtual QCString trPostcondition() + { + return "Postcondition"; + } + /*! Text for the \invariant command */ + virtual QCString trInvariant() + { + return "Invariant"; + } + /*! Text shown before a multi-line variable/enum initialization */ + virtual QCString trInitialValue() + { + return "Initialisation:"; + } + /*! Text used the source code in the file index */ + virtual QCString trCode() + { + return "code"; + } + virtual QCString trGraphicalHierarchy() + { + return "Diagramme hi�rarchique des classes"; + } + virtual QCString trGotoGraphicalHierarchy() + { + return "Aller au diagramme hi�rarchique des classes"; + } + virtual QCString trGotoTextualHierarchy() + { + return "Aller � la hi�rarchie des classes en texte"; + } + virtual QCString trPageIndex() + { + return "Index des pages"; + } + +////////////////////////////////////////////////////////////////////////// +// new since 1.1.0 +////////////////////////////////////////////////////////////////////////// + + virtual QCString trNote() + { + return "Note"; + } + virtual QCString trPublicTypes() + { + return "Types Publics"; + } + virtual QCString trPublicAttribs() + { + return "Attributs Publics"; + } + virtual QCString trStaticPublicAttribs() + { + return "Attributs Publics Statiques"; + } + virtual QCString trProtectedTypes() + { + return "Types Prot�g�s"; + } + virtual QCString trProtectedAttribs() + { + return "Attributs Prot�g�s"; + } + virtual QCString trStaticProtectedAttribs() + { + return "Attributs Prot�g�s Statiques"; + } + virtual QCString trPrivateTypes() + { + return "Types Priv�s"; + } + virtual QCString trPrivateAttribs() + { + return "Attributs Priv�s"; + } + virtual QCString trStaticPrivateAttribs() + { + return "Attributs Priv�s Statiques"; + } + +////////////////////////////////////////////////////////////////////////// +// new since 1.1.3 +////////////////////////////////////////////////////////////////////////// + + /*! Used as a marker that is put before a todo item */ + virtual QCString trTodo() + { + return "A Faire"; + } + /*! Used as the header of the todo list */ + virtual QCString trTodoList() + { + return "Liste des choses � faire"; + } + +////////////////////////////////////////////////////////////////////////// +// new since 1.1.4 +////////////////////////////////////////////////////////////////////////// + + virtual QCString trReferencedBy() + { + return "R�f�renc� par"; + } + virtual QCString trRemarks() + { + return "Remarques"; + } + virtual QCString trAttention() + { + return "Attention"; + } + virtual QCString trInclByDepGraph() + { + return "Ce graphe montre quels fichiers incluent directement " + "ou indirectement ce fichier:"; + } + virtual QCString trSince() + { + return "Depuis"; + } + +////////////////////////////////////////////////////////////////////////// +// new since 1.1.5 +////////////////////////////////////////////////////////////////////////// + + /*! title of the graph legend page */ + virtual QCString trLegendTitle() + { + return "L�gende du graphe"; + } + /*! page explaining how the dot graph's should be interpreted */ + virtual QCString trLegendDocs() + { + return + "Cette page explique comment interpr�ter les graphes g�n�r�s " + "par doxygen.<p>\n" + + "Consid�rez l'exemple suivant:\n" + "\\code\n" + "/*! Classe invisible � cause d'une troncature */\n" + "class Invisible { };\n\n" + "/*! Classe tronqu�e, la relation d'h�ritage est masqu�e */\n" + "class Truncated : public Invisible { };\n\n" + "/*! Classe non document�e avec des commentaires Doxygen */\n" + "class Undocumented { };\n\n" + "/*! Classe d�riv�e par h�ritage public */\n" + "class PublicBase : public Truncated { };\n\n" + "/*! Classe d�riv�e par h�ritage prot�g� */\n" + "class ProtectedBase { };\n\n" + "/*! Classe d�riv�e par h�ritage priv� */\n" + "class PrivateBase { };\n\n" + "/*! Classe utilis�e par la classe d�riv�e */\n" + "class Used { };\n\n" + "/*! Super-classe qui h�rite de plusieurs autres classes */\n" + "class Inherited : public PublicBase,\n" + " protected ProtectedBase,\n" + " private PrivateBase,\n" + " public Undocumented\n" + "{\n" + " private:\n" + " Used *m_usedClass;\n" + "};\n" + "\\endcode\n" + "Si la valeur 200 est attribu�e au tag \\c MAX_DOT_GRAPH_HEIGHT " + "du fichier de configuration, cela g�n�rera le graphe suivant:" + "<p><center><img src=\"graph_legend.gif\"></center>\n" + "<p>\n" + "Les rectangles du graphe ci-dessus ont la signification suivante:\n" + "<ul>\n" + "<li>Un rectangle plein noir repr�sente la structure ou la classe pour laquelle " + "le graphe est g�n�r�.\n" + "<li>Un rectangle avec un bord noir indique une classe ou une structure document�e.\n" + "<li>Un rectangle avec un bord gris indique une classe ou une structure non document�e.\n" + "<li>Un rectangle avec un bord rouge indique une structure ou une classe document�e\n" + "pour laquelle des relations d'h�ritage ou de collaboration manquent. Un graphe est " + "tronqu� s'il ne rentre pas dans les limites sp�cifi�es." + "</ul>\n" + "Les fl�ches ont la signification suivante:\n" + "<ul>\n" + "<li>Une fl�che bleu fonc� est utilis�e pour visuliser une relation d'h�ritage public " + "entre deux classes.\n" + "<li>Une fl�che vert fonc� est utilis�e pour une relation d'h�ritage prot�g�.\n" + "<li>Une fl�che rouge fonc� est utilis�e pour une relation d'h�ritage priv�.\n" + "<li>Une fl�che violette en pointill�s est utilis�e si une classe est contenue ou " + "utilis�e par une autre classe. La fl�che est �tiquet�e avec la ou les variable(s) " + "qui permettent d'acceder � la classe ou structure point�e. \n" + "</ul>\n"; + } + /*! text for the link to the legend page */ + virtual QCString trLegend() + { + return "L�gende"; + } }; #endif |