⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 translator_nl.h

📁 doxygen(一个自动从源代码生成文档的工具)的源代码
💻 H
📖 第 1 页 / 共 3 页
字号:
/****************************************************************************** * * $Id: translator_nl.h,v 1.22 2001/03/19 19:27:42 root Exp $ * * Copyright (C) 1997-2001 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_Hclass TranslatorDutch : public TranslatorAdapter_1_2_11{  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      *  <pre>"\\usepackage[german]{babel}\n"     *  </pre>     *  or     *  <pre>"\\usepackage{polski}\n"     *  "\\usepackage[latin2]{inputenc}\n"     *  "\\usepackage[T1]{fontenc}\n"     *  </pre>     *      * 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&euml;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&euml;rarchie"; }    QCString trCompoundList()    { return "Compound Lijst"; }    QCString trFileList()    { return "File Lijst"; }    QCString trHeaderFiles()    { return "Header Lijst"; }    QCString trCompoundMembers()    { return "Compound 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&euml;rarchische Index"; }    QCString trCompoundIndex()    { return "Compound 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 "Compounds"; }    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 rederene opnieuwd ge&iuml;mplemented; "             "de API wordt er niet door be&iuml;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::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 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -