summaryrefslogtreecommitdiffstats
path: root/src/translator_nl.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2004-09-13 17:26:00 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2004-09-13 17:26:00 (GMT)
commit2fbdd54de993944146888498d997e6ade29e8d8c (patch)
treee74e4a8d2b3a92ce8032ad6114a63f1ddb8fed48 /src/translator_nl.h
parent4ccd672ea5dbda17649f2e33577b5ab7eb02db7e (diff)
downloadDoxygen-2fbdd54de993944146888498d997e6ade29e8d8c.zip
Doxygen-2fbdd54de993944146888498d997e6ade29e8d8c.tar.gz
Doxygen-2fbdd54de993944146888498d997e6ade29e8d8c.tar.bz2
Release-1.3.8-20040913
Diffstat (limited to 'src/translator_nl.h')
-rw-r--r--src/translator_nl.h48
1 files changed, 47 insertions, 1 deletions
diff --git a/src/translator_nl.h b/src/translator_nl.h
index 12348cd..796051e 100644
--- a/src/translator_nl.h
+++ b/src/translator_nl.h
@@ -18,7 +18,7 @@
#ifndef TRANSLATOR_NL_H
#define TRANSLATOR_NL_H
-class TranslatorDutch : public TranslatorAdapter_1_3_9
+class TranslatorDutch : public Translator
{
public:
QCString idLanguage()
@@ -1154,6 +1154,52 @@ class TranslatorDutch : public TranslatorAdapter_1_3_9
return filename + " Bron Bestand";
}
+//////////////////////////////////////////////////////////////////////////
+// new since 1.3.9
+//////////////////////////////////////////////////////////////////////////
+
+ /*! This is used as the name of the chapter containing the directory
+ * hierarchy.
+ */
+ virtual QCString trDirIndex()
+ { return "Directory Hi&euml;rarchie"; }
+
+ /*! This is used as the name of the chapter containing the documentation
+ * of the directories.
+ */
+ virtual QCString trDirDocumentation()
+ { return "Directory Documentatie"; }
+
+ /*! 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 "Directories"; }
+
+ /*! This returns a sentences that introduces the directory hierarchy.
+ * and the fact that it is sorted alphabetically per level
+ */
+ virtual QCString trDirDescription()
+ { return "Deze directory hi&euml;rarchie is min of meer alfabetisch "
+ "gesorteerd:";
+ }
+
+ /*! 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=dirName; result+=" Directory Referentie"; 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 ? "Director" : "director"));
+ if (singular) result+="y"; else result+="ies";
+ return result;
+ }
+
};