summaryrefslogtreecommitdiffstats
path: root/src/translator_nl.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-08-03 18:35:58 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-08-03 18:35:58 (GMT)
commit804fcc176eeef328b4bc228374f4b71a6af40303 (patch)
tree7f5866b280e4662e698ca643ec7e15e3849d7540 /src/translator_nl.h
parent159896658f6da351afee52dc614fe20786742cab (diff)
downloadDoxygen-804fcc176eeef328b4bc228374f4b71a6af40303.zip
Doxygen-804fcc176eeef328b4bc228374f4b71a6af40303.tar.gz
Doxygen-804fcc176eeef328b4bc228374f4b71a6af40303.tar.bz2
Some fixes and cleanup
- fix issue with test 037 - moved trISOLang() to the language control section and removed the "no need for a TranslatorAdapter_1_8_19" banner. - removed unused adapter classes - add translation for Dutch
Diffstat (limited to 'src/translator_nl.h')
-rw-r--r--src/translator_nl.h19
1 files changed, 8 insertions, 11 deletions
diff --git a/src/translator_nl.h b/src/translator_nl.h
index a80bd34..07e90ae 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_8_19
+class TranslatorDutch : public Translator
{
public:
QCString idLanguage()
@@ -35,9 +35,9 @@ class TranslatorDutch : public TranslatorAdapter_1_8_19
* </pre>
*/
QCString latexLanguageSupportCommand()
- {
- return "\\usepackage[dutch]{babel}\n";
- }
+ { return "\\usepackage[dutch]{babel}\n"; }
+ QCString trISOLang()
+ { return "nl"; }
QCString trRelatedFunctions()
{ return "Gerelateerde functies"; }
QCString trRelatedSubscript()
@@ -1776,15 +1776,12 @@ class TranslatorDutch : public TranslatorAdapter_1_8_19
{ return "Data members"; }
virtual QCString trDataMemberDocumentation()
{ return "Documentatie van data members"; }
-//
+
//////////////////////////////////////////////////////////////////////////
-// new since 1.8.19, but completely filled so no need for a TranslatorAdapter_1_8_19
+// new since 1.8.19
//////////////////////////////////////////////////////////////////////////
-
- virtual QCString trISOLang()
- {
- return("nl");
- }
+ virtual QCString trDesignUnitDocumentation()
+ { return "Ontwerp Eenheid Documentatie"; }
};
#endif