diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-07-16 20:10:06 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2006-07-16 20:10:06 (GMT) |
commit | 3a7dcb4cbc953fcf5ab62243743707e5e0e3d379 (patch) | |
tree | f167dcd5d5f9dcea2ade9e968e78c2a085f0f1fd /src/translator_cn.h | |
parent | 07ee85ebcc91a12df8a92078f33e700e5f9f40e8 (diff) | |
download | Doxygen-3a7dcb4cbc953fcf5ab62243743707e5e0e3d379.zip Doxygen-3a7dcb4cbc953fcf5ab62243743707e5e0e3d379.tar.gz Doxygen-3a7dcb4cbc953fcf5ab62243743707e5e0e3d379.tar.bz2 |
Release-1.4.7-20060716
Diffstat (limited to 'src/translator_cn.h')
-rw-r--r-- | src/translator_cn.h | 40 |
1 files changed, 39 insertions, 1 deletions
diff --git a/src/translator_cn.h b/src/translator_cn.h index c4f7d8f..3233755 100644 --- a/src/translator_cn.h +++ b/src/translator_cn.h @@ -24,7 +24,7 @@ */ #define CN_SPC -class TranslatorChinese : public TranslatorAdapter_1_4_1 +class TranslatorChinese : public Translator { public: /*! Used for identification of the language. The identification @@ -33,6 +33,7 @@ class TranslatorChinese : public TranslatorAdapter_1_4_1 * (e.g. "czech", "japanese", "russian", etc.). It sould be equal to * the identification used in the language.cpp. */ + virtual QCString idLanguage() { return "chinese"; } @@ -1494,6 +1495,43 @@ class TranslatorChinese : public TranslatorAdapter_1_4_1 return "目录"; } +////////////////////////////////////////////////////////////////////////// +// new since 1.4.1 +////////////////////////////////////////////////////////////////////////// + + /*! This text is added to the documentation when the \\overload command + * is used for a overloaded function. + */ + virtual QCString trOverloadText() + { + /* return "This is an overloaded member function, " + "provided for convenience. It differs from the above " + "function only in what argument(s) it accepts."; */ + return "这是为便于使用而提供的一个重载成员函数。" + "与上面的函数相比,它接受不同类型的参数。"; + } + +////////////////////////////////////////////////////////////////////////// +// new since 1.4.6 +////////////////////////////////////////////////////////////////////////// + + /*! This is used to introduce a caller (or called-by) graph */ + virtual QCString trCallerGraph() + { + /* return "Here is the caller graph for this function:"; */ + return "这是这个函数的调用图。"; + } + + /*! This is used in the documentation of a file/namespace before the list + * of documentation blocks for enumeration values + */ + virtual QCString trEnumerationValueDocumentation() + { + /* return "Enumerator Documentation"; */ + return "枚举变量文档"; + } + + }; #endif |