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

📄 translator_en.h

📁 doxygen(一个自动从源代码生成文档的工具)的源代码
💻 H
📖 第 1 页 / 共 3 页
字号:
    virtual QCString trGotoGraphicalHierarchy()    {      return "Go to the graphical class hierarchy";    }    virtual QCString trGotoTextualHierarchy()    {      return "Go to the textual class hierarchy";    }    virtual QCString trPageIndex()    {      return "Page Index";    }//////////////////////////////////////////////////////////////////////////// new since 1.1.0//////////////////////////////////////////////////////////////////////////        virtual QCString trNote()    {      return "Note";    }    virtual QCString trPublicTypes()    {      return "Public Types";    }    virtual QCString trPublicAttribs()    {      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))      {        return "Data Fields";      }      else      {        return "Public Attributes";      }    }    virtual QCString trStaticPublicAttribs()    {      return "Static Public Attributes";    }    virtual QCString trProtectedTypes()    {      return "Protected Types";    }    virtual QCString trProtectedAttribs()    {      return "Protected Attributes";    }    virtual QCString trStaticProtectedAttribs()    {      return "Static Protected Attributes";    }    virtual QCString trPrivateTypes()    {      return "Private Types";    }    virtual QCString trPrivateAttribs()    {      return "Private Attributes";    }    virtual QCString trStaticPrivateAttribs()    {      return "Static Private Attributes";    }//////////////////////////////////////////////////////////////////////////// new since 1.1.3//////////////////////////////////////////////////////////////////////////    /*! Used as a marker that is put before a \\todo item */    virtual QCString trTodo()    {      return "Todo";    }    /*! Used as the header of the todo list */    virtual QCString trTodoList()    {      return "Todo List";    }//////////////////////////////////////////////////////////////////////////// new since 1.1.4//////////////////////////////////////////////////////////////////////////    virtual QCString trReferencedBy()    {      return "Referenced by";    }    virtual QCString trRemarks()    {      return "Remarks";    }    virtual QCString trAttention()    {      return "Attention";    }    virtual QCString trInclByDepGraph()    {      return "This graph shows which files directly or "             "indirectly include this file:";    }    virtual QCString trSince()    {      return "Since";    }    //////////////////////////////////////////////////////////////////////////// new since 1.1.5//////////////////////////////////////////////////////////////////////////    /*! title of the graph legend page */    virtual QCString trLegendTitle()    {      return "Graph Legend";    }    /*! page explaining how the dot graph's should be interpreted      *  The %A in the text below are to prevent link to classes called "A".     */    virtual QCString trLegendDocs()    {      return         "This page explains how to interpret the graphs that are generated "        "by doxygen.<p>\n"        "Consider the following example:\n"        "\\code\n"        "/*! Invisible class because of truncation */\n"        "class Invisible { };\n\n"        "/*! Truncated class, inheritance relation is hidden */\n"        "class Truncated : public Invisible { };\n\n"        "/* Class not documented with doxygen comments */\n"        "class Undocumented { };\n\n"        "/*! Class that is inherited using public inheritance */\n"        "class PublicBase : public Truncated { };\n\n"        "/*! A template class */\n"        "template<class T> class Templ { };\n\n"        "/*! Class that is inherited using protected inheritance */\n"        "class ProtectedBase { };\n\n"        "/*! Class that is inherited using private inheritance */\n"        "class PrivateBase { };\n\n"        "/*! Class that is used by the Inherited class */\n"        "class Used { };\n\n"        "/*! Super class that inherits a number of other classes */\n"        "class Inherited : public PublicBase,\n"        "                  protected ProtectedBase,\n"        "                  private PrivateBase,\n"        "                  public Undocumented\n"        "                  public Templ<int>\n"        "{\n"        "  private:\n"        "    Used *m_usedClass;\n"        "};\n"        "\\endcode\n"        "If the \\c MAX_DOT_GRAPH_HEIGHT tag in the configuration file "        "is set to 240 this will result in the following graph:"        "<p><center><img src=\"graph_legend.gif\"></center>\n"        "<p>\n"        "The boxes in the above graph have the following meaning:\n"        "<ul>\n"        "<li>%A filled black box represents the struct or class for which the "        "graph is generated.\n"        "<li>%A box with a black border denotes a documented struct or class.\n"        "<li>%A box with a grey border denotes an undocumented struct or class.\n"        "<li>%A box with a red border denotes a documented struct or class for"        "which not all inheritance/containment relations are shown. %A graph is "        "truncated if it does not fit within the specified boundaries.\n"        "</ul>\n"        "The arrows have the following meaning:\n"        "<ul>\n"        "<li>%A dark blue arrow is used to visualize a public inheritance "        "relation between two classes.\n"        "<li>%A dark green arrow is used for protected inheritance.\n"        "<li>%A dark red arrow is used for private inheritance.\n"        "<li>%A purple dashed arrow is used if a class is contained or used "        "by another class. The arrow is labeled with the variable(s) "        "through which the pointed class or struct is accessible.\n"        "<li>%A yellow dashed arrow denotes a relation between a template instance and "        "the template class it was instantiated from. The arrow is labeled with "        "the template parameters of the instance.\n"        "</ul>\n";    }    /*! text for the link to the legend page */    virtual QCString trLegend()    {      return "legend";    }    //////////////////////////////////////////////////////////////////////////// new since 1.2.0//////////////////////////////////////////////////////////////////////////        /*! Used as a marker that is put before a test item */    virtual QCString trTest()    {      return "Test";    }    /*! Used as the header of the test list */    virtual QCString trTestList()    {      return "Test List";    }//////////////////////////////////////////////////////////////////////////// new since 1.2.1//////////////////////////////////////////////////////////////////////////    /*! Used as a section header for KDE-2 IDL methods */    virtual QCString trDCOPMethods()    {      return "DCOP Methods";    }//////////////////////////////////////////////////////////////////////////// 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 Documentation";    }//////////////////////////////////////////////////////////////////////////// new since 1.2.4//////////////////////////////////////////////////////////////////////////    /*! Used for Java interfaces in the summary section of Java packages */    virtual QCString trInterfaces()    {      return "Interfaces";    }    /*! Used for Java classes in the summary section of Java packages */    virtual QCString trClasses()    {      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))      {        return "Data Structures";      }      else      {        return "Classes";      }    }    /*! Used as the title of a Java package */    virtual QCString trPackage(const char *name)    {      return (QCString)"Package "+name;    }    /*! Title of the package index page */    virtual QCString trPackageList()    {      return "Package List";    }    /*! The description of the package index page */    virtual QCString trPackageListDescription()    {      return "Here are the packages with brief descriptions (if available):";    }    /*! The link name in the Quick links header for each page */    virtual QCString trPackages()    {      return "Packages";    }    /*! Used as a chapter title for Latex & RTF output */    virtual QCString trPackageDocumentation()    {      return "Package Documentation";    }    /*! Text shown before a multi-line define */    virtual QCString trDefineValue()    {      return "Value:";    }    //////////////////////////////////////////////////////////////////////////// new since 1.2.5//////////////////////////////////////////////////////////////////////////        /*! Used as a marker that is put before a \\bug item */    virtual QCString trBug()    {      return "Bug";    }    /*! Used as the header of the bug list */    virtual QCString trBugList()    {      return "Bug List";    }//////////////////////////////////////////////////////////////////////////// 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 ? "Class" : "class"));      if (!singular)  result+="es";      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 ? "Group" : "group"));      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 trPage(bool first_capital, bool singular)    {       QCString result((first_capital ? "Page" : "page"));      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 ? "Field" : "field"));      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 trGlobal(bool first_capital, bool singular)    {       QCString result((first_capital ? "Global" : "global"));      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 ? "Author" : "author"));      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 "References";    }};#endif

⌨️ 快捷键说明

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