diff options
author | Petr Prikryl <prikryl@atlas.cz> | 2013-06-19 14:23:32 (GMT) |
---|---|---|
committer | Petr Prikryl <prikryl@atlas.cz> | 2013-06-19 14:23:32 (GMT) |
commit | bd289ad22236d730cc16655c90aee1686d245099 (patch) | |
tree | 71f4439404cc14ac62570eeb9618afdccde6146f /src | |
parent | 030bb1c06ebe7513b58f29ce992dad2a5dad9305 (diff) | |
download | Doxygen-bd289ad22236d730cc16655c90aee1686d245099.zip Doxygen-bd289ad22236d730cc16655c90aee1686d245099.tar.gz Doxygen-bd289ad22236d730cc16655c90aee1686d245099.tar.bz2 |
Chinese traditional converted to UTF-8 plus getting ready for the update.
Diffstat (limited to 'src')
-rw-r--r-- | src/translator_tw.h | 159 |
1 files changed, 159 insertions, 0 deletions
diff --git a/src/translator_tw.h b/src/translator_tw.h index 152a63b..6ea4e07 100644 --- a/src/translator_tw.h +++ b/src/translator_tw.h @@ -1863,6 +1863,165 @@ class TranslatorChinesetraditional : public TranslatorAdapter_1_8_0 virtual QCString trDirDepGraph(const char *name) { return QCString(name)+"的目錄關連圖"+":"; } +////////////////////////////////////////////////////////////////////////// +// new since 1.8.0 +////////////////////////////////////////////////////////////////////////// + + /*! Detail level selector shown for hierarchical indices */ + virtual QCString trDetailLevel() + { return "detail level"; } + + /*! Section header for list of template parameters */ + virtual QCString trTemplateParameters() + { return "Template Parameters"; } + + /*! Used in dot graph when UML_LOOK is enabled and there are many fields */ + virtual QCString trAndMore(const QCString &number) + { return "and "+number+" more..."; } + + /*! Used file list for a Java enum */ + virtual QCString trEnumGeneratedFromFiles(bool single) + { QCString result = "The documentation for this enum was generated from the following file"; + if (!single) result += "s"; + result+=":"; + return result; + } + + /*! Header of a Java enum page (Java enums are represented as classes). */ + virtual QCString trEnumReference(const char *name) + { return QCString(name)+" Enum Reference"; } + + /*! Used for a section containing inherited members */ + virtual QCString trInheritedFrom(const char *members,const char *what) + { return QCString(members)+" inherited from "+what; } + + /*! Header of the sections with inherited members specific for the + * base class(es) + */ + virtual QCString trAdditionalInheritedMembers() + { return "Additional Inherited Members"; } + +////////////////////////////////////////////////////////////////////////// +// new since 1.8.2 +////////////////////////////////////////////////////////////////////////// + + /*! Used as a tooltip for the toggle button that appears in the + * navigation tree in the HTML output when GENERATE_TREEVIEW is + * enabled. This tooltip explains the meaning of the button. + */ + virtual QCString trPanelSynchronisationTooltip(bool enable) + { + QCString opt = enable ? "enable" : "disable"; + return "click to "+opt+" panel synchronisation"; + } + + /*! Used in a method of an Objective-C class that is declared in a + * a category. Note that the @1 marker is required and is replaced + * by a link. + */ + virtual QCString trProvidedByCategory() + { + return "Provided by category @1."; + } + + /*! Used in a method of an Objective-C category that extends a class. + * Note that the @1 marker is required and is replaced by a link to + * the class method. + */ + virtual QCString trExtendsClass() + { + return "Extends class @1."; + } + + /*! Used as the header of a list of class methods in Objective-C. + * These are similar to static public member functions in C++. + */ + virtual QCString trClassMethods() + { + return "Class Methods"; + } + + /*! Used as the header of a list of instance methods in Objective-C. + * These are similar to public member functions in C++. + */ + virtual QCString trInstanceMethods() + { + return "Instance Methods"; + } + + /*! Used as the header of the member functions of an Objective-C class. + */ + virtual QCString trMethodDocumentation() + { + return "Method Documentation"; + } + + /*! Used as the title of the design overview picture created for the + * VHDL output. + */ + virtual QCString trDesignOverview() + { + return "Design Overview"; + } + +////////////////////////////////////////////////////////////////////////// +// new since 1.8.4 +////////////////////////////////////////////////////////////////////////// + + /** old style UNO IDL services: implemented interfaces */ + virtual QCString trInterfaces() + { return "Exported Interfaces"; } + + /** old style UNO IDL services: inherited services */ + virtual QCString trServices() + { return "Included Services"; } + + /** UNO IDL constant groups */ + virtual QCString trConstantGroups() + { return "Constant Groups"; } + + /** UNO IDL constant groups */ + virtual QCString trConstantGroupReference(const char *namespaceName) + { + QCString result=namespaceName; + result+=" Constant Group Reference"; + return result; + } + /** UNO IDL service page title */ + virtual QCString trServiceReference(const char *sName) + { + QCString result=(QCString)sName; + result+=" Service Reference"; + return result; + } + /** UNO IDL singleton page title */ + virtual QCString trSingletonReference(const char *sName) + { + QCString result=(QCString)sName; + result+=" Singleton Reference"; + return result; + } + /** UNO IDL service page */ + virtual QCString trServiceGeneratedFromFiles(bool single) + { + // single is true implies a single file + QCString result=(QCString)"The documentation for this service " + "was generated from the following file"; + if (single) result+=":"; else result+="s:"; + return result; + } + /** UNO IDL singleton page */ + virtual QCString trSingletonGeneratedFromFiles(bool single) + { + // single is true implies a single file + QCString result=(QCString)"The documentation for this singleton " + "was generated from the following file"; + if (single) result+=":"; else result+="s:"; + return result; + } + +////////////////////////////////////////////////////////////////////////// + }; #endif |