diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-11-25 18:56:18 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-11-25 18:56:18 (GMT) |
commit | cce8b9505201c95443798341d3d6176922db9253 (patch) | |
tree | 6643370adedf0cbaac88d674978bd44175ab1475 /src/translator_fr.h | |
parent | c736b03f16a88b6654ff9c1ae680e46b86e50218 (diff) | |
download | Doxygen-cce8b9505201c95443798341d3d6176922db9253.zip Doxygen-cce8b9505201c95443798341d3d6176922db9253.tar.gz Doxygen-cce8b9505201c95443798341d3d6176922db9253.tar.bz2 |
Release-1.2.12-20011125
Diffstat (limited to 'src/translator_fr.h')
-rw-r--r-- | src/translator_fr.h | 51 |
1 files changed, 25 insertions, 26 deletions
diff --git a/src/translator_fr.h b/src/translator_fr.h index 490e45c..584995b 100644 --- a/src/translator_fr.h +++ b/src/translator_fr.h @@ -20,10 +20,24 @@ * d2set@d2set.org). */ +/****************************************************************************** + * History of content + * + * Date | Description + * ============+============================================================= + * 2001-11-22 | Removed obsolet methods: + * | QCString latexBabelPackage() + * | QCString trAuthor() + * | QCString trAuthors() + * | QCString trFiles() + * | QCString trIncludeFile() + * | QCString trVerbatimText(const char *f) + * -------------+------------------------------------------------------------ + */ #ifndef TRANSLATOR_FR_H #define TRANSLATOR_FR_H -class TranslatorFrench : public TranslatorAdapter_1_2_11 +class TranslatorFrench : public Translator { public: QCString idLanguage() @@ -46,9 +60,6 @@ class TranslatorFrench : public TranslatorAdapter_1_2_11 { return "\\usepackage[french]{babel}\n"; } - /*! returns the name of the package that is included by LaTeX */ - QCString latexBabelPackage() - { return "french"; } /*! return the language charset. This will be used for the HTML output */ virtual QCString idLanguageCharset() @@ -126,14 +137,6 @@ class TranslatorFrench : public TranslatorAdapter_1_2_11 QCString trDefinedIn() { return "défini dans"; } - /*! put as in introduction in the verbatim header file of a class. - * parameter f is the name of the include file. - */ - QCString trIncludeFile() - { return "Fichier inclu"; } - QCString trVerbatimText(const char *f) - { return (QCString)"Ce texte provient du fichier inclu "+f+"."; } - // quick reference sections /*! This is put above each page as a link to the list of all groups of @@ -351,10 +354,6 @@ class TranslatorFrench : public TranslatorAdapter_1_2_11 QCString trEnumerationValues() { return "Éléments énumérés"; } - /*! This is used in man pages as the author section. */ - QCString trAuthor() - { return "Auteur"; } - /*! This is used in the documentation of a file before the list of * documentation blocks for defines */ @@ -403,12 +402,6 @@ class TranslatorFrench : public TranslatorAdapter_1_2_11 QCString trCompounds() { return "Composants"; } - /*! This is used in the documentation of a group before the list of - * links to documented files - */ - QCString trFiles() - { return "Fichiers"; } - /*! This is used in the standard footer of each page and indicates when * the page was generated */ @@ -458,10 +451,6 @@ class TranslatorFrench : public TranslatorAdapter_1_2_11 QCString trDate() { return "Date"; } - /*! this text is generated when the \\author command is used. */ - QCString trAuthors() - { return "Auteur(s)"; } - /*! this text is generated when the \\return command is used. */ QCString trReturns() { return "Renvoie"; } @@ -1233,5 +1222,15 @@ class TranslatorFrench : public TranslatorAdapter_1_2_11 return result; } +////////////////////////////////////////////////////////////////////////// +// new since 1.2.11 +////////////////////////////////////////////////////////////////////////// + + /*! This text is put before the list of members referenced by a member + */ + virtual QCString trReferences() + { + return "Références"; + } }; #endif |