/****************************************************************************** * * * * Copyright (C) 1997-2015 by Dimitri van Heesch. * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby * granted. No representations are made about the suitability of this software * for any purpose. It is provided "as is" without express or implied warranty. * See the GNU General Public License for more details. * * Documents produced by Doxygen are derivative works derived from the * input used in their production; they are not affected by this license. * */ #ifndef TRANSLATOR_NL_H #define TRANSLATOR_NL_H class TranslatorDutch : public Translator { public: QCString idLanguage() { return "dutch"; } /*! Used to get the LaTeX command(s) for the language support. * This method should return string with commands that switch * LaTeX to the desired language. For example *
"\\usepackage[german]{babel}\n"
     *  
* or *
"\\usepackage{polski}\n"
     *  "\\usepackage[latin2]{inputenc}\n"
     *  "\\usepackage[T1]{fontenc}\n"
     *  
*/ QCString latexLanguageSupportCommand() { return "\\usepackage[dutch]{babel}\n"; } QCString trRelatedFunctions() { return "Gerelateerde functies"; } QCString trRelatedSubscript() { return "(Merk op dat dit geen member functies zijn.)"; } QCString trDetailedDescription() { return "Gedetailleerde Beschrijving"; } QCString trMemberTypedefDocumentation() { return "Documentatie van type definitie members"; } QCString trMemberEnumerationDocumentation() { return "Documentatie van enumeratie members"; } QCString trMemberFunctionDocumentation() { return "Documentatie van functie members"; } QCString trMemberDataDocumentation() { return "Documentatie van data members"; } QCString trMore() { return "Meer..."; } QCString trListOfAllMembers() { return "Lijst van alle members"; } QCString trMemberList() { return "Member Lijst"; } QCString trThisIsTheListOfAllMembers() { return "Dit is de complete lijst van alle members voor"; } QCString trIncludingInheritedMembers() { return ", inclusief alle overgeërfde members."; } QCString trGeneratedAutomatically(const char *s) { QCString result="Automatisch gegenereerd door Doxygen"; if (s) result+=(QCString)" voor "+s; result+=" uit de programmatekst."; return result; } QCString trEnumName() { return "enum naam"; } QCString trEnumValue() { return "enum waarde"; } QCString trDefinedIn() { return "gedefinieerd in"; } QCString trModules() { return "Modules"; } QCString trClassHierarchy() { return "Klasse Hiërarchie"; } QCString trCompoundList() { return "Klasse Lijst"; } QCString trFileList() { return "Bestandslijst"; } QCString trCompoundMembers() { return "Klasse Members"; } QCString trFileMembers() { return "Bestand members"; } QCString trRelatedPages() { return "Gerelateerde pagina's"; } QCString trExamples() { return "Voorbeelden"; } QCString trSearch() { return "Zoeken"; } QCString trClassHierarchyDescription() { return "Deze inheritance lijst is min of meer alfabetisch " "gesorteerd:"; } QCString trFileListDescription(bool extractAll) { QCString result="Hieronder volgt de lijst met alle "; if (!extractAll) result+="gedocumenteerde "; result+="bestanden, elk met een korte beschrijving:"; return result; } QCString trCompoundListDescription() { return "Hieronder volgen de klassen, structs en " "unions met voor elk een korte beschrijving:"; } QCString trCompoundMembersDescription(bool extractAll) { QCString result="Hieronder volgt de lijst met alle "; if (!extractAll) result+="gedocumenteerde "; result+="klasse members met links naar "; if (!extractAll) result+="de klasse documentatie voor elke member:"; else result+="de klassen waartoe ze behoren:"; return result; } QCString trFileMembersDescription(bool extractAll) { QCString result="Hieronder volgt de lijst met alle "; if (!extractAll) result+="gedocumenteerde "; result+="bestand members met links naar "; if (extractAll) result+="de bestand's documentatie voor elke member:"; else result+="de bestanden waartoe ze behoren:"; return result; } QCString trExamplesDescription() { return "Hieronder volgt de lijst met alle voorbeelden:"; } QCString trRelatedPagesDescription() { return "Hieronder volgt de lijst met alle pagina's die gerelateerde documentatie bevatten:"; } QCString trModulesDescription() { return "Hieronder volgt de lijst met alle modules:"; } QCString trDocumentation() { return "Documentatie"; } QCString trModuleIndex() { return "Module Index"; } QCString trHierarchicalIndex() { return "Hiërarchische Index"; } QCString trCompoundIndex() { return "Klasse Index"; } QCString trFileIndex() { return "Bestand Index"; } QCString trModuleDocumentation() { return "Module Documentatie"; } QCString trClassDocumentation() { return "Klassen Documentatie"; } QCString trFileDocumentation() { return "Bestand Documentatie"; } QCString trExampleDocumentation() { return "Documentatie van voorbeelden"; } QCString trPageDocumentation() { return "Documentatie van gerelateerde pagina's"; } QCString trReferenceManual() { return "Naslagwerk"; } QCString trDefines() { return "Macros"; } QCString trTypedefs() { return "Typedefs"; } QCString trEnumerations() { return "Enumeraties"; } QCString trFunctions() { return "Functies"; } QCString trVariables() { return "Variabelen"; } QCString trEnumerationValues() { return "Enumeratie waarden"; } QCString trDefineDocumentation() { return "Documentatie van macro's"; } QCString trTypedefDocumentation() { 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() { return "Documentatie van variabelen"; } QCString trCompounds() { return "Klassen"; } QCString trGeneratedAt(const char *date,const char *projName) { QCString result=(QCString)"Gegenereerd op "+date; if (projName) result+=(QCString)" voor "+projName; result+=(QCString)" door"; return result; } QCString trClassDiagram(const char *clName) { return (QCString)"Klasse diagram voor "+clName; } QCString trForInternalUseOnly() { return "Alleen voor intern gebruik."; } QCString trWarning() { return "Waarschuwing"; } QCString trVersion() { return "Versie"; } QCString trDate() { return "Datum"; } QCString trReturns() { return "Retourneert"; } QCString trSeeAlso() { return "Zie ook"; } QCString trParameters() { return "Parameters"; } QCString trExceptions() { return "Excepties"; } QCString trGeneratedBy() { return "Gegenereerd door"; } ////////////////////////////////////////////////////////////////////////// // new since 0.49-990307 ////////////////////////////////////////////////////////////////////////// QCString trNamespaceList() { return "Namespace Lijst"; } QCString trNamespaceListDescription(bool extractAll) { QCString result="Hier is een lijst met alle "; if (!extractAll) result+="gedocumenteerde "; result+="namespaces met voor elk een korte beschrijving:"; return result; } QCString trFriends() { return "Friends"; } ////////////////////////////////////////////////////////////////////////// // new since 0.49-990405 ////////////////////////////////////////////////////////////////////////// QCString trRelatedFunctionDocumentation() { return "Documentatie van friends en gerelateerde functies"; } ////////////////////////////////////////////////////////////////////////// // new since 0.49-990425 ////////////////////////////////////////////////////////////////////////// QCString trCompoundReference(const char *clName, ClassDef::CompoundType compType, bool isTemplate) // used as the title of the HTML page of a class/struct/union { QCString result=(QCString)clName; if (isTemplate) result+=" Template"; switch(compType) { case ClassDef::Class: result+=" Class"; break; case ClassDef::Struct: result+=" Struct"; break; case ClassDef::Union: result+=" Union"; break; case ClassDef::Interface: result+=" Interface"; break; case ClassDef::Protocol: result+=" Protocol"; break; case ClassDef::Category: result+=" Category"; break; case ClassDef::Exception: result+=" Exception"; break; default: break; } result+=" Referentie"; return result; } QCString trFileReference(const char *fileName) // used as the title of the HTML page of a file { QCString result=fileName; result+=" Bestand Referentie"; return result; } QCString trNamespaceReference(const char *namespaceName) // used as the title of the HTML page of a namespace { QCString result=namespaceName; result+=" Namespace Referentie"; return result; } // these are for the member sections of a class, struct or union QCString trPublicMembers() { return "Public Members"; } QCString trPublicSlots() { return "Public Slots"; } QCString trSignals() { return "Signals"; } QCString trStaticPublicMembers() { return "Static Public Members"; } QCString trProtectedMembers() { return "Protected Members"; } QCString trProtectedSlots() { return "Protected Slots"; } QCString trStaticProtectedMembers() { return "Static Protected Members"; } QCString trPrivateMembers() { return "Private Members"; } QCString trPrivateSlots() { return "Private Slots"; } QCString trStaticPrivateMembers() { return "Static Private Members"; } // end of member sections QCString trWriteList(int numEntries) { // this function is used to produce a comma-separated list of items. // use generateMarker(i) to indicate where item i should be put. QCString result; int i; // the inherits list contain `numEntries' classes for (i=0;i