diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2004-10-05 18:06:58 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2004-10-05 18:06:58 (GMT) |
commit | 89f2e4c8f026df987fab492c050e43011ef96871 (patch) | |
tree | 71b1f69fb092055eb6cb12c050b73c5ff04afd85 /src/translator_fr.h | |
parent | b7473cd86e57053b866a719f160cd4d01e92f092 (diff) | |
download | Doxygen-89f2e4c8f026df987fab492c050e43011ef96871.zip Doxygen-89f2e4c8f026df987fab492c050e43011ef96871.tar.gz Doxygen-89f2e4c8f026df987fab492c050e43011ef96871.tar.bz2 |
Release-1.3.9
Diffstat (limited to 'src/translator_fr.h')
-rw-r--r-- | src/translator_fr.h | 62 |
1 files changed, 61 insertions, 1 deletions
diff --git a/src/translator_fr.h b/src/translator_fr.h index 0fb4c12..7b32cb9 100644 --- a/src/translator_fr.h +++ b/src/translator_fr.h @@ -85,7 +85,7 @@ // Translator class (by the local maintainer) when the localized // translator is made up-to-date again. -class TranslatorFrench : public TranslatorAdapter_1_3_8 +class TranslatorFrench : public Translator { public: @@ -1590,6 +1590,66 @@ class TranslatorFrench : public TranslatorAdapter_1_3_8 return "Correspondances:"; } +////////////////////////////////////////////////////////////////////////// +// new since 1.3.8 +////////////////////////////////////////////////////////////////////////// + + /*! This is used in HTML as the title of page with source code for file filename + */ + virtual QCString trSourceFile(QCString& filename) + { + return " Fichier source de " + filename; + } + +////////////////////////////////////////////////////////////////////////// +// new since 1.3.9 +////////////////////////////////////////////////////////////////////////// + + /*! This is used as the name of the chapter containing the directory + * hierarchy. + */ + virtual QCString trDirIndex() + { return "Hiérarchie de répertoires"; } + + /*! This is used as the name of the chapter containing the documentation + * of the directories. + */ + virtual QCString trDirDocumentation() + { return "Documentation des répertoires"; } + + /*! This is used as the title of the directory index and also in the + * Quick links of a HTML page, to link to the directory hierarchy. + */ + virtual QCString trDirectories() + { return "Répertoires"; } + + /*! This returns a sentences that introduces the directory hierarchy. + * and the fact that it is sorted alphabetically per level + */ + virtual QCString trDirDescription() + { return "Cette hiérarchie de répertoire est triée approximativement, " + "mais pas complètement, par ordre alphabétique:"; + } + + /*! This returns the title of a directory page. The name of the + * directory is passed via \a dirName. + */ + virtual QCString trDirReference(const char *dirName) + { + QCString result="Répertoire de référence de "; result+=dirName; + return result; + } + + /*! This returns the word directory with or without starting capital + * (\a first_capital) and in sigular or plural form (\a singular). + */ + virtual QCString trDir(bool first_capital, bool singular) + { + QCString result((first_capital ? "Répertoire" : "répertoire")); + if (singular) result+=""; else result+="s"; + return result; + } + }; #endif |