/****************************************************************************** * * * * Copyright (C) 1997-2004 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" ** * The Dutch LaTeX does not use such commands. Because of this * the empty string is returned in this implementation. */ QCString latexLanguageSupportCommand() { return "\\usepackage[dutch]{babel}\n"; } /*! return the language charset. This will be used for the HTML output */ QCString idLanguageCharset() { return "iso-8859-1"; } 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 programmacode."; 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 "File Lijst"; } QCString trHeaderFiles() { return "Header Lijst"; } QCString trCompoundMembers() { return "Klasse Members"; } QCString trFileMembers() { return "File 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+="files, 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+="file members met links naar "; if (extractAll) result+="de file documentatie voor elke member:"; else result+="de files waartoe ze behoren:"; return result; } QCString trHeaderFilesDescription() { return "Hieronder volgen de header files die de API vormen:"; } 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 trNoDescriptionAvailable() { return "Geen korte beschrijving beschikbaar"; } QCString trDocumentation() { return "Documentatie"; } QCString trModuleIndex() { return "Module Index"; } QCString trHierarchicalIndex() { return "Hiërarchische Index"; } QCString trCompoundIndex() { return "Klasse Index"; } QCString trFileIndex() { return "File Index"; } QCString trModuleDocumentation() { return "Module Documentatie"; } QCString trClassDocumentation() { return "Klassen Documentatie"; } QCString trFileDocumentation() { return "File Documentatie"; } QCString trExampleDocumentation() { return "Documentatie van voorbeelden"; } QCString trPageDocumentation() { return "Documentatie van gerelateerde pagina's"; } QCString trReferenceManual() { return "Naslagwerk"; } QCString trDefines() { return "Defines"; } QCString trFuncProtos() { return "Functie Prototypes"; } 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 defines"; } QCString trFunctionPrototypeDocumentation() { return "Documentatie van functie Prototypes"; } 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 trWrittenBy() { return "geschreven door"; } QCString trClassDiagram(const char *clName) { return (QCString)"Klasse diagram voor "+clName; } QCString trForInternalUseOnly() { return "Alleen voor intern gebruik."; } QCString trReimplementedForInternalReasons() { return "Om interne redenen opnieuwd geïmplemented; " "de API wordt er niet door beïnvloed."; } QCString trWarning() { return "Waarschuwing"; } QCString trBugsAndLimitations() { return "Fouten en beperkingen"; } 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; } result+=" Referentie"; return result; } QCString trFileReference(const char *fileName) // used as the title of the HTML page of a file { QCString result=fileName; result+=" File 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
\n" "De rechthoeken in the bovenstaande graaf hebben de volgende betekenis:\n" "
* Codepage number: * Charset Name Charset Value(hex) Codepage number * ------------------------------------------------------ * DEFAULT_CHARSET 1 (x01) * SYMBOL_CHARSET 2 (x02) * OEM_CHARSET 255 (xFF) * ANSI_CHARSET 0 (x00) 1252 * RUSSIAN_CHARSET 204 (xCC) 1251 * EE_CHARSET 238 (xEE) 1250 * GREEK_CHARSET 161 (xA1) 1253 * TURKISH_CHARSET 162 (xA2) 1254 * BALTIC_CHARSET 186 (xBA) 1257 * HEBREW_CHARSET 177 (xB1) 1255 * ARABIC _CHARSET 178 (xB2) 1256 * SHIFTJIS_CHARSET 128 (x80) 932 * HANGEUL_CHARSET 129 (x81) 949 * GB2313_CHARSET 134 (x86) 936 * CHINESEBIG5_CHARSET 136 (x88) 950 ** */ virtual QCString trRTFansicp() { return "1252"; } /*! Used as ansicpg for RTF fcharset * \see trRTFansicp() for a table of possible values. */ virtual QCString trRTFCharSet() { return "0"; } /*! Used as header RTF general index */ virtual QCString trRTFGeneralIndex() { return "Index"; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trClass(bool first_capital, bool singular) { QCString result((first_capital ? "Klasse" : "klass")); if (!singular) result+="n"; return result; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trFile(bool first_capital, bool singular) { QCString result((first_capital ? "File" : "file")); if (!singular) result+="s"; return result; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trNamespace(bool first_capital, bool singular) { QCString result((first_capital ? "Namespace" : "namespace")); if (!singular) result+="s"; return result; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trGroup(bool first_capital, bool singular) { QCString result((first_capital ? "Groep" : "groep")); if (!singular) result+="en"; return result; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trPage(bool first_capital, bool singular) { QCString result((first_capital ? "Pagina" : "pagina")); if (!singular) result+="s"; return result; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trMember(bool first_capital, bool singular) { QCString result((first_capital ? "Member" : "member")); if (!singular) result+="s"; return result; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trField(bool first_capital, bool singular) { QCString result((first_capital ? "Veld" : "veld")); if (!singular) result+="en"; return result; } /*! This is used for translation of the word that will possibly * be followed by a single name or by a list of names * of the category. */ virtual QCString trGlobal(bool first_capital, bool singular) { QCString result((first_capital ? "Globale member" : "globale member")); if (!singular) result+="s"; return result; } ////////////////////////////////////////////////////////////////////////// // new since 1.2.7 ////////////////////////////////////////////////////////////////////////// /*! This text is generated when the \\author command is used and * for the author section in man pages. */ virtual QCString trAuthor(bool first_capital, bool singular) { QCString result((first_capital ? "Auteur" : "auteur")); if (!singular) result+="s"; return result; } ////////////////////////////////////////////////////////////////////////// // new since 1.2.11 ////////////////////////////////////////////////////////////////////////// /*! This text is put before the list of members referenced by a member */ virtual QCString trReferences() { return "Gebruikt"; } ////////////////////////////////////////////////////////////////////////// // new since 1.2.13 ////////////////////////////////////////////////////////////////////////// /*! used in member documentation blocks to produce a list of * members that are implemented by this one. */ virtual QCString trImplementedFromList(int numEntries) { return "Implementeert "+trWriteList(numEntries)+"."; } /*! used in member documentation blocks to produce a list of * all members that implementation this member. */ virtual QCString trImplementedInList(int numEntries) { return "Wordt geïmplementeerd door "+trWriteList(numEntries)+"."; } ////////////////////////////////////////////////////////////////////////// // new since 1.2.16 ////////////////////////////////////////////////////////////////////////// virtual QCString trRTFTableOfContents() { return "Inhoudsopgave"; } ////////////////////////////////////////////////////////////////////////// // new since 1.2.17 ////////////////////////////////////////////////////////////////////////// /*! Used as the header of the list of item that have been * flagged deprecated */ virtual QCString trDeprecatedList() { return "Deprecated Lijst"; } ////////////////////////////////////////////////////////////////////////// // new since 1.2.18 ////////////////////////////////////////////////////////////////////////// /*! Used as a header for a section of events found in a C# program */ virtual QCString trEvents() { return "Events"; } /*! Header used for the documentation section of a class' events. */ virtual QCString trEventDocumentation() { 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"; } ////////////////////////////////////////////////////////////////////////// // new since 1.3.1 ////////////////////////////////////////////////////////////////////////// /*! Used in the quick index of a class/file/namespace member list page * to link to the unfiltered list of all members. */ virtual QCString trAll() { return "Alle"; } /*! Put in front of the call graph for a function. */ virtual QCString trCallGraph() { return "Hier is de call graaf voor deze functie:"; } ////////////////////////////////////////////////////////////////////////// // new since 1.3.3 ////////////////////////////////////////////////////////////////////////// /*! When the search engine is enabled this text is put in the index * of each page before the search field. */ virtual QCString trSearchForIndex() { return "Zoek naar"; } /*! This string is used as the title for the page listing the search * results. */ virtual QCString trSearchResultsTitle() { return "Zoek Resultaten"; } /*! This string is put just before listing the search results. The * text can be different depending on the number of documents found. * Inside the text you can put the special marker $num to insert * the number representing the actual number of search results. * The @a numDocuments parameter can be either 0, 1 or 2, where the * value 2 represents 2 or more matches. HTML markup is allowed inside * the returned string. */ virtual QCString trSearchResults(int numDocuments) { if (numDocuments==0) { return "Helaas, er zijn geen documenten gevonden die aan de zoekopdracht voldoen."; } else if (numDocuments==1) { return "Er is 1 document gevonden dat aan de zoekopdracht voldoet."; } else { return "Er zijn $num documenten gevonden die aan de zoekopdracht voldoen. " "De beste resultaten worden eerst getoond."; } } /*! This string is put before the list of matched words, for each search * result. What follows is the list of words that matched the query. */ virtual QCString trSearchMatches() { 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"; } }; #endif