Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
bd289ad2
Commit
bd289ad2
authored
Jun 19, 2013
by
Petr Prikryl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Chinese traditional converted to UTF-8 plus getting ready for the update.
parent
030bb1c0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
159 additions
and
2 deletions
+159
-2
translator_report.txt
doc/translator_report.txt
+0
-2
translator_tw.h
src/translator_tw.h
+159
-0
No files found.
doc/translator_report.txt
View file @
bd289ad2
...
...
@@ -47,8 +47,6 @@ must be implemented to become up-to-date:
TranslatorIndonesian 1.8.0 22 methods to implement (8 %)
TranslatorDanish 1.8.0 22 methods to implement (8 %)
TranslatorChinesetraditional 1.8.0 22 methods to implement (8 %)
Note: Reimplementation using UTF-8 suggested.
TranslatorCatalan 1.8.0 22 methods to implement (8 %)
TranslatorBrazilian 1.8.0 22 methods to implement (8 %)
TranslatorArmenian 1.8.0 22 methods to implement (8 %)
...
...
src/translator_tw.h
View file @
bd289ad2
...
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment