diff options
Diffstat (limited to 'src/translator_nl.h')
-rw-r--r-- | src/translator_nl.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/translator_nl.h b/src/translator_nl.h index 68a5142..11d5ddc 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_8 +class TranslatorDutch : public Translator { public: QCString idLanguage() @@ -1143,6 +1143,17 @@ class TranslatorDutch : public TranslatorAdapter_1_3_8 return "Gevonden:"; } +////////////////////////////////////////////////////////////////////////// +// new since 1.3.8 +////////////////////////////////////////////////////////////////////////// + + /*! This is used in HTML as the title of page with source code for file filename + */ + virtual QCString trSourceFile(QCString& filename) + { + return filename + " Bron Bestand"; + } + }; |