summaryrefslogtreecommitdiffstats
path: root/src/translator_nl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/translator_nl.h')
-rw-r--r--src/translator_nl.h19
1 files changed, 17 insertions, 2 deletions
diff --git a/src/translator_nl.h b/src/translator_nl.h
index c757351..f2348cb 100644
--- a/src/translator_nl.h
+++ b/src/translator_nl.h
@@ -2,7 +2,7 @@
*
*
*
- * Copyright (C) 1997-2001 by Dimitri van Heesch.
+ * Copyright (C) 1997-2002 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
@@ -218,7 +218,7 @@ class TranslatorDutch : public Translator
QCString trForInternalUseOnly()
{ return "Alleen voor intern gebruik."; }
QCString trReimplementedForInternalReasons()
- { return "Om interne rederene opnieuwd geïmplemented; "
+ { return "Om interne redenen opnieuwd geïmplemented; "
"de API wordt er niet door beïnvloed.";
}
QCString trWarning()
@@ -975,6 +975,21 @@ class TranslatorDutch : public Translator
return "Gebruikt";
}
+ /*! used in member documentation blocks to produce a list of
+ * members that are implemented by this one.
+ */
+ virtual QCString trImplementedFromList(int numEntries)
+ {
+ return "Implementeert "+trWriteList(numEntries)+".";
+ }
+
+ /*! used in member documentation blocks to produce a list of
+ * all members that implementation this member.
+ */
+ virtual QCString trImplementedInList(int numEntries)
+ {
+ return "Wordt geïmplementeerd door "+trWriteList(numEntries)+".";
+ }
};
#endif