summaryrefslogtreecommitdiffstats
path: root/src/translator_nl.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-03-05 18:16:47 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-03-05 18:16:47 (GMT)
commit000241f7603af61328b25cd9a9defc40be43e558 (patch)
treefea55c7f521b9b8d4c7cdecc6579109f17cae89a /src/translator_nl.h
parent75cfc919c930dc2a5c9e6770d6b1e7b09e5e8883 (diff)
downloadDoxygen-000241f7603af61328b25cd9a9defc40be43e558.zip
Doxygen-000241f7603af61328b25cd9a9defc40be43e558.tar.gz
Doxygen-000241f7603af61328b25cd9a9defc40be43e558.tar.bz2
Release_1.1.0-20000305
Diffstat (limited to 'src/translator_nl.h')
-rw-r--r--src/translator_nl.h75
1 files changed, 73 insertions, 2 deletions
diff --git a/src/translator_nl.h b/src/translator_nl.h
index 40efcdd..221cd7f 100644
--- a/src/translator_nl.h
+++ b/src/translator_nl.h
@@ -442,7 +442,7 @@ class TranslatorDutch : public Translator
QCString trSources()
{
- return "Sources";
+ return "Broncode";
}
QCString trDefinedAtLineInSourceFile()
{
@@ -457,10 +457,81 @@ class TranslatorDutch : public Translator
// new since 1.0.0
//////////////////////////////////////////////////////////////////////////
- virtual QCString trDeprecated()
+ QCString trDeprecated()
{
return "Verouderd";
}
+
+//////////////////////////////////////////////////////////////////////////
+// new since 1.1.0
+//////////////////////////////////////////////////////////////////////////
+
+ /*! this text is put before a collaboration diagram */
+ QCString trCollaborationDiagram(const char *clName)
+ {
+ return (QCString)"Collaboratie diagram voor "+clName+":";
+ }
+ /*! this text is put before an include dependency graph */
+ QCString trInclDepGraph(const char *fName)
+ {
+ return (QCString)"Include afhankelijkheidsgraaf voor "+fName+":";
+ }
+ /*! header that is put before the list of constructor/destructors. */
+ QCString trConstructorDocumentation()
+ {
+ return "Constructor & Destructor Documentatie";
+ }
+ /*! Used in the file documentation to point to the corresponding sources. */
+ QCString trGotoSourceCode()
+ {
+ return "Ga naar de bron code van deze file.";
+ }
+ /*! Used in the file sources to point to the corresponding documentation. */
+ QCString trGotoDocumentation()
+ {
+ return "Ga naar de documentatie van deze file.";
+ }
+ /*! Text for the \pre command */
+ QCString trPrecondition()
+ {
+ return "Preconditie";
+ }
+ /*! Text for the \post command */
+ QCString trPostcondition()
+ {
+ return "Postconditie";
+ }
+ /*! Text for the \invariant command */
+ QCString trInvariant()
+ {
+ return "Invariant";
+ }
+ /*! Text shown before a multi-line variable/enum initialization */
+ QCString trInitialValue()
+ {
+ return "Initi&euml;le waarde:";
+ }
+ /*! Text used the source code in the file index */
+ QCString trCode()
+ {
+ return "code";
+ }
+ QCString trGraphicalHierarchy()
+ {
+ return "Grafische Klasse Hierarchie";
+ }
+ QCString trGotoGraphicalHierarchy()
+ {
+ return "Ga naar de grafische klasse hierarchie";
+ }
+ QCString trGotoTextualHierarchy()
+ {
+ return "Ga naar de tekstu&euml;le klasse hierarchie";
+ }
+ QCString trPageIndex()
+ {
+ return "Pagina Index";
+ }
};
#endif