diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-04-21 13:56:37 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-04-21 13:56:37 (GMT) |
commit | ebd0447bcc5d3d75214c847954bfda1d2e8c97f5 (patch) | |
tree | 3db0b381fb31e078de0540249c869667f44ec68d /src/translator_nl.h | |
parent | 3cd2917eca7d09a30636b2b16efcd187bc3bf7c0 (diff) | |
download | Doxygen-ebd0447bcc5d3d75214c847954bfda1d2e8c97f5.zip Doxygen-ebd0447bcc5d3d75214c847954bfda1d2e8c97f5.tar.gz Doxygen-ebd0447bcc5d3d75214c847954bfda1d2e8c97f5.tar.bz2 |
Release-1.3-20030421
Diffstat (limited to 'src/translator_nl.h')
-rw-r--r-- | src/translator_nl.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/translator_nl.h b/src/translator_nl.h index 88c157b..5ca923d 100644 --- a/src/translator_nl.h +++ b/src/translator_nl.h @@ -1030,6 +1030,45 @@ class TranslatorDutch : public Translator return "Event Documentatie"; } +////////////////////////////////////////////////////////////////////////// +// new since 1.3 +////////////////////////////////////////////////////////////////////////// + + /*! Used as a heading for a list of Java class types with package scope. + */ + virtual QCString trPackageTypes() + { + return "Package Types"; + } + /*! Used as a heading for a list of Java class functions with package + * scope. + */ + virtual QCString trPackageMembers() + { + return "Package Functies"; + } + /*! Used as a heading for a list of static Java class functions with + * package scope. + */ + virtual QCString trStaticPackageMembers() + { + return "Statische Package Functies"; + } + /*! Used as a heading for a list of Java class variables with package + * scope. + */ + virtual QCString trPackageAttribs() + { + return "Package Attributen"; + } + /*! Used as a heading for a list of static Java class variables with + * package scope. + */ + virtual QCString trStaticPackageAttribs() + { + return "Statische Package Attributen"; + } + }; #endif |