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.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ë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ële klasse hierarchie";
+ }
+ QCString trPageIndex()
+ {
+ return "Pagina Index";
+ }
};
#endif