diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-03-26 18:52:22 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-03-26 18:52:22 (GMT) |
commit | 463cf5c8bf92db792652bc1e4ba6b59cb7b17bc2 (patch) | |
tree | 888e1c2b9f5a4b736dacc9a4ec34b94ac3849757 /src/translator_nl.h | |
parent | 293f58696c0a5c25e312cd658ed8ddef4049a7b9 (diff) | |
download | Doxygen-463cf5c8bf92db792652bc1e4ba6b59cb7b17bc2.zip Doxygen-463cf5c8bf92db792652bc1e4ba6b59cb7b17bc2.tar.gz Doxygen-463cf5c8bf92db792652bc1e4ba6b59cb7b17bc2.tar.bz2 |
Release-1.1.1-20000326
Diffstat (limited to 'src/translator_nl.h')
-rw-r--r-- | src/translator_nl.h | 56 |
1 files changed, 53 insertions, 3 deletions
diff --git a/src/translator_nl.h b/src/translator_nl.h index 221cd7f..63fdade 100644 --- a/src/translator_nl.h +++ b/src/translator_nl.h @@ -1,6 +1,6 @@ /****************************************************************************** * - * $Id$ + * * * Copyright (C) 1997-2000 by Dimitri van Heesch. * @@ -454,7 +454,7 @@ class TranslatorDutch : public Translator } ////////////////////////////////////////////////////////////////////////// -// new since 1.0.0 +// new since 0.49-991205 ////////////////////////////////////////////////////////////////////////// QCString trDeprecated() @@ -463,7 +463,7 @@ class TranslatorDutch : public Translator } ////////////////////////////////////////////////////////////////////////// -// new since 1.1.0 +// new since 1.0.0 ////////////////////////////////////////////////////////////////////////// /*! this text is put before a collaboration diagram */ @@ -532,6 +532,56 @@ class TranslatorDutch : public Translator { return "Pagina Index"; } + +////////////////////////////////////////////////////////////////////////// +// new since 1.1.0 +////////////////////////////////////////////////////////////////////////// + + QCString trNote() + { + return "Noot"; + } + QCString trPublicTypes() + { + return "Public Typen"; + } + QCString trPublicAttribs() + { + return "Public Attributen"; + } + QCString trStaticPublicAttribs() + { + return "Static Public Attributen"; + } + QCString trProtectedTypes() + { + return "Protected Typen"; + } + QCString trProtectedAttribs() + { + return "Protected Attributen"; + } + QCString trStaticProtectedAttribs() + { + return "Static Protected Attributen"; + } + QCString trPrivateTypes() + { + return "Private Typen"; + } + QCString trPrivateAttribs() + { + return "Private Attributen"; + } + QCString trStaticPrivateAttribs() + { + return "Static Private Attributen"; + } + +////////////////////////////////////////////////////////////////////////// +// new since 1.1.1 +////////////////////////////////////////////////////////////////////////// + }; #endif |