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

📄 translator_nl.h

📁 doxygen(一个自动从源代码生成文档的工具)的源代码
💻 H
📖 第 1 页 / 共 3 页
字号:
    /*! title of the graph legend page */    QCString trLegendTitle()    {      return "Graaf Legenda";    }    /*! page explaining how the dot graph's should be interpreted */    QCString trLegendDocs()    {      return         "Deze pagina legt uit hoe de grafen die gegenereerd worden door doxygen "        "ge&iuml;nterpreteerd dienen te worden.<p>\n"        "Beschouw het volgende voorbeeld:\n"        "\\code\n"        "/*! Onzichtbare klasse vanwege afkappen van de graaf */\n"        "class Invisible { };\n\n"        "/*! Afgekapte klasse, overervingsrelatie is verborgen */\n"        "class Truncated : public Invisible { };\n\n"        "/* Klasse is niet gedocumenteerd met doxygen commentaar */\n"        "class Undocumented { };\n\n"        "/*! Klasse met public inheritance */\n"        "class PublicBase : public Truncated { };\n\n"        "/*! Klasse met protected inheritance */\n"        "class ProtectedBase { };\n\n"        "/*! Klasse met private inheritance */\n"        "class PrivateBase { };\n\n"        "/*! Klasse die wordt gebruikt door de klasse Inherited */\n"        "class Used { };\n\n"        "/*! Super klasse die overerft van een aantal andere klassen */\n"        "class Inherited : public PublicBase,\n"        "                  protected ProtectedBase,\n"        "                  private PrivateBase,\n"        "                  public Undocumented\n"        "{\n"        "  private:\n"        "    Used *m_usedClass;\n"        "};\n"        "\\endcode\n"        "Als de \\c MAX_DOT_GRAPH_HEIGHT tag in the configuratie file "        "op 200 gezet is, zal het bestaande voorbeeld resulteren in de volgende graaf:"        "<p><center><img src=\"graph_legend.gif\"></center>\n"        "<p>\n"        "De rechthoeken in the bovenstaande graaf hebben de volgende betekenis:\n"        "<ul>\n"        "<li>Een gevulde zwarte rechthoek representeert de structure of klasse waarvoor "        "de graaf is gegeneerd.\n"        "<li>Een rechthoek met een zwarte rand representeert een gedocumenteerde structure of klasse.\n"        "<li>Een rechthoek met een grijze rand representeert een ongedocumenteerde structure of klasse.\n"        "<li>Een rechthoek met een rode rand representeert een gedocumenteerde structure or klasse waarvoor\n"        "niet alle overervings- of gebruiksrelaties konden worden getoond. Een graaf wordt "        "afgekapt als hij niet past binnen de gespecificeerde grenzen."        "</ul>\n"        "De pijlen hebben de volgende betekenis:\n"        "<ul>\n"        "<li>Een donkerblauwe pijl visualizeert een public inheritance "        "relatie tussen twee klassen.\n"        "<li>Een donkergroene pijl wordt gebruikt voor protected inheritance.\n"        "<li>Een donkerrode pijl wordt gebruikt voor private inheritance.\n"        "<li>Een paars gestreepte pijl wordt gebruikt indien een klasse bevat is of gebruikt wordt "        "door een andere klasse. De pijl is gelabeled met de variable(n) "        "die toegang geven tot de aangewezen klasse of structure. \n"        "</ul>\n";    }    /*! text for the link to the legend page */    QCString trLegend()    {      return "legenda";    }//////////////////////////////////////////////////////////////////////////// new since 1.2.0//////////////////////////////////////////////////////////////////////////        /*! Used as a marker that is put before a test item */    QCString trTest()    {      return "Test";    }    /*! Used as the header of the test list */    QCString trTestList()    {      return "Test Lijst";    }//////////////////////////////////////////////////////////////////////////// new since 1.2.1//////////////////////////////////////////////////////////////////////////    /*! Used as a section header for KDE-2 IDL methods */    QCString trDCOPMethods()    {      return "DCOP Methoden";    }//////////////////////////////////////////////////////////////////////////// new since 1.2.2//////////////////////////////////////////////////////////////////////////    /*! Used as a section header for IDL properties */    QCString trProperties()    {      return "Properties";    }    /*! Used as a section header for IDL property documentation */    QCString trPropertyDocumentation()    {      return "Property Documentatie";    }    //////////////////////////////////////////////////////////////////////////// new since 1.2.4//////////////////////////////////////////////////////////////////////////    /*! Used for Java interfaces in the summary section of Java packages */    QCString trInterfaces()    {      return "Interfaces";    }    /*! Used for Java classes in the summary section of Java packages */    QCString trClasses()    {      return "Klassen";    }    /*! Used as the title of a Java package */    QCString trPackage(const char *name)    {      return (QCString)"Package "+name;    }    /*! Title of the package index page */    QCString trPackageList()    {      return "Package Lijst";    }    /*! The description of the package index page */    QCString trPackageListDescription()    {      return "Hier volgen de packages, elk met een korte beschrijving (indien aanwezig):";    }    /*! The link name in the Quick links header for each page */    QCString trPackages()    {      return "Packages";    }    /*! Used as a chapter title for Latex & RTF output */    QCString trPackageDocumentation()    {      return "Package Documentatie";    }    /*! Text shown before a multi-line define */    QCString trDefineValue()    {      return "Waarde:";    }    //////////////////////////////////////////////////////////////////////////// new since 1.2.5//////////////////////////////////////////////////////////////////////////        /*! Used as a marker that is put before a \\bug item */    QCString trBug()    {      return "Bug";    }    /*! Used as the header of the bug list */    QCString trBugList()    {      return "Bug Lijst";    }//////////////////////////////////////////////////////////////////////////// new since 1.2.6//////////////////////////////////////////////////////////////////////////    /*! Used as ansicpg for RTF file      *      * The following table shows the correlation of Charset name, Charset Value and      * <pre>     * 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     * </pre>     *      */    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;     }};#endif

⌨️ 快捷键说明

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