diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-10-15 15:32:16 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-10-15 15:32:16 (GMT) |
commit | 868208ab61ca3aa6f506076f60de2745eaa8a6be (patch) | |
tree | 7824ba2a5c9f1fe6ddc8633a13cc7d1e7a6c79a3 /src/translator_nl.h | |
parent | 499475795ed160e3a1e9cb571adc1ad86dc6a8ba (diff) | |
download | Doxygen-868208ab61ca3aa6f506076f60de2745eaa8a6be.zip Doxygen-868208ab61ca3aa6f506076f60de2745eaa8a6be.tar.gz Doxygen-868208ab61ca3aa6f506076f60de2745eaa8a6be.tar.bz2 |
Release-1.2.2-20001015
Diffstat (limited to 'src/translator_nl.h')
-rw-r--r-- | src/translator_nl.h | 35 |
1 files changed, 26 insertions, 9 deletions
diff --git a/src/translator_nl.h b/src/translator_nl.h index 14db842..80a5030 100644 --- a/src/translator_nl.h +++ b/src/translator_nl.h @@ -37,19 +37,10 @@ class TranslatorDutch : public Translator { return "Documentatie van type definitie members"; } QCString trMemberEnumerationDocumentation() { return "Documentatie van enumeratie members"; } - QCString trEnumerationValueDocumentation() - { return "Documentatie van enumeratie waarden"; } QCString trMemberFunctionDocumentation() { return "Documentatie van functie members"; } QCString trMemberDataDocumentation() { return "Documentatie van data members"; } - QCString trGeneratedFrom(const char *s,bool single) - { - QCString result=(QCString)"De documentatie voor deze"+s+ - " is gegenereerd op grond van de volgende file"; - if (single) result+=":"; else result+="s:"; - return result; - } QCString trMore() { return "Meer..."; } QCString trListOfAllMembers() @@ -185,6 +176,8 @@ class TranslatorDutch : public Translator { return "Documentatie van typedefs"; } QCString trEnumerationTypeDocumentation() { return "Documentatie van enumeratie types"; } + QCString trEnumerationValueDocumentation() + { return "Documentatie van enumeratie waarden"; } QCString trFunctionDocumentation() { return "Documentatie van functies"; } QCString trVariableDocumentation() @@ -712,6 +705,30 @@ class TranslatorDutch : public Translator return "Test Lijst"; } +////////////////////////////////////////////////////////////////////////// +// new since 1.2.1 +////////////////////////////////////////////////////////////////////////// + + /*! Used as a section header for KDE-2 IDL methods */ + virtual QCString trDCOPMethods() + { + return "DCOP Methoden"; + } + +////////////////////////////////////////////////////////////////////////// +// new since 1.2.2 +////////////////////////////////////////////////////////////////////////// + + /*! Used as a section header for IDL properties */ + virtual QCString trProperties() + { + return "Properties"; + } + /*! Used as a section header for IDL property documentation */ + virtual QCString trPropertyDocumentation() + { + return "Property Documentatie"; + } }; #endif |