diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2002-02-03 10:42:52 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2002-02-03 10:42:52 (GMT) |
commit | ac16b765b390a835d3f455691a2e3f6a0e94bd78 (patch) | |
tree | c6e72204c112ad8646d737990b93aa290c61c34c /src/translator_fr.h | |
parent | 75fa97fc3cac911c348d177c98057dc68c61771b (diff) | |
download | Doxygen-ac16b765b390a835d3f455691a2e3f6a0e94bd78.zip Doxygen-ac16b765b390a835d3f455691a2e3f6a0e94bd78.tar.gz Doxygen-ac16b765b390a835d3f455691a2e3f6a0e94bd78.tar.bz2 |
Release-1.2.13-20020203
Diffstat (limited to 'src/translator_fr.h')
-rw-r--r-- | src/translator_fr.h | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/src/translator_fr.h b/src/translator_fr.h index 375afbc..a85defd 100644 --- a/src/translator_fr.h +++ b/src/translator_fr.h @@ -2,7 +2,7 @@ * * * - * Copyright (C) 1997-2002 by Dimitri van Heesch. + * Copyright (C) 1997-2001 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby @@ -33,11 +33,13 @@ * | QCString trIncludeFile() * | QCString trVerbatimText(const char *f) * -------------+------------------------------------------------------------ + * 2002-01-23 | Update for new since 1.2.13 + * -------------+------------------------------------------------------------ */ #ifndef TRANSLATOR_FR_H #define TRANSLATOR_FR_H -class TranslatorFrench : public TranslatorAdapter_1_2_13 +class TranslatorFrench : public Translator { public: QCString idLanguage() @@ -1232,5 +1234,25 @@ class TranslatorFrench : public TranslatorAdapter_1_2_13 { return "Références"; } +////////////////////////////////////////////////////////////////////////// +// new since 1.2.13 +////////////////////////////////////////////////////////////////////////// + + /*! used in member documentation blocks to produce a list of + * members that are implemented by this one. + */ + virtual QCString trImplementedFromList(int numEntries) + { + return "Implémente "+trWriteList(numEntries)+"."; + } + + /*! used in member documentation blocks to produce a list of + * all members that implementation this member. + */ + virtual QCString trImplementedInList(int numEntries) + { + return "Implémenté dans "+trWriteList(numEntries)+"."; + } + }; #endif |