Doxygen
translator_tw.h
浏览该文件的文档.
1 /******************************************************************************
2  *
3  *
4  *
5  * Copyright (C) 1997-2015 by Dimitri van Heesch.
6  *
7  * Permission to use, copy, modify, and distribute this software and its
8  * documentation under the terms of the GNU General Public License is hereby
9  * granted. No representations are made about the suitability of this software
10  * for any purpose. It is provided "as is" without express or implied warranty.
11  * See the GNU General Public License for more details.
12  *
13  * Documents produced by Doxygen are derivative works derived from the
14  * input used in their production; they are not affected by this license.
15  *
16  * The translation into Chinesetraditional was provided by
17  * Daniel YC Lin (dlin.tw <at> gmail.com) since v1.2.16-v1.5.5
18  */
19 
20 #ifndef TRANSLATOR_TW_H
21 #define TRANSLATOR_TW_H
22 
23 // When defining a translator class for the new language, follow
24 // the description in the documentation. One of the steps says
25 // that you should copy the translator_en.h (this) file to your
26 // translator_xx.h new file. Your new language should use the
27 // Translator class as the base class. This means that you need to
28 // implement exactly the same (pure virtual) methods as the
29 // TranslatorEnglish does. Because of this, it is a good idea to
30 // start with the copy of TranslatorEnglish and replace the strings
31 // one by one.
32 //
33 // It is not necessary to include "translator.h" or
34 // "translator_adapter.h" here. The files are included in the
35 // language.cpp correctly. Not including any of the mentioned
36 // files frees the maintainer from thinking about whether the
37 // first, the second, or both files should be included or not, and
38 // why. This holds namely for localized translators because their
39 // base class is changed occasionaly to adapter classes when the
40 // Translator class changes the interface, or back to the
41 // Translator class (by the local maintainer) when the localized
42 // translator is made up-to-date again.
43 
45 {
46  public:
47 
48  // --- Language control methods -------------------
49 
50  /*! Used for identification of the language. The identification
51  * should not be translated. It should be replaced by the name
52  * of the language in English using lower-case characters only
53  * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
54  * the identification used in language.cpp.
55  */
56  virtual QCString idLanguage()
57  { return "chinese-traditional"; }
58 
59  /*! Used to get the LaTeX command(s) for the language support.
60  * This method should return string with commands that switch
61  * LaTeX to the desired language. For example
62  * <pre>"\\usepackage[german]{babel}\n"
63  * </pre>
64  * or
65  * <pre>"\\usepackage{polski}\n"
66  * "\\usepackage[latin2]{inputenc}\n"
67  * "\\usepackage[T1]{fontenc}\n"
68  * </pre>
69  *
70  * The English LaTeX does not use such commands. Because of this
71  * the empty string is returned in this implementation.
72  */
74  {
75  return "\\usepackage{CJKutf8}\n";
76  }
77  virtual QCString latexFontenc()
78  {
79  return "";
80  }
81  virtual QCString latexDocumentPre()
82  {
83  return "\\begin{CJK}{UTF8}{min}\n";
84  }
85  virtual QCString latexDocumentPost()
86  {
87  return "\\end{CJK}\n";
88  }
89  virtual QCString trISOLang()
90  {
91  return "zh-Hant";
92  }
93 
94  // --- Language translation methods -------------------
95 
96  /*! used in the compound documentation before a list of related functions. */
98  { return "相關函式"; }
99 
100  /*! subscript for the related functions. */
101  virtual QCString trRelatedSubscript()
102  { return "(註:這些不是成員函式)"; }
103 
104  /*! header that is put before the detailed description of files, classes and namespaces. */
106  { return "詳細描述"; }
107 
108  /*! header that is put before the list of typedefs. */
110  { return "型態定義成員說明文件"; }
111 
112  /*! header that is put before the list of enumerations. */
114  { return "列舉型態成員說明文件"; }
115 
116  /*! header that is put before the list of member functions. */
118  { return "函式成員說明文件"; }
119 
120  /*! header that is put before the list of member attributes. */
122  {
123  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
124  {
125  return "欄位說明文件";
126  }
127  else
128  {
129  return "資料成員說明文件";
130  }
131  }
132 
133  /*! this is the text of a link put after brief descriptions. */
134  virtual QCString trMore()
135  { return "更多..."; }
136 
137  /*! put in the class documentation */
139  { return "全部成員列表"; }
140 
141  /*! used as the title of the "list of all members" page of a class */
142  virtual QCString trMemberList()
143  { return "成員列表"; }
144 
145  /*! this is the first part of a sentence that is followed by a class name */
147  { return "完整成員列表,類別為"; }
148 
149  /*! this is the remainder of the sentence after the class name */
151  { return ", 包含所有繼承的成員"; }
152 
153  /*! this is put at the author sections at the bottom of man pages.
154  * parameter s is name of the project name.
155  */
156  virtual QCString trGeneratedAutomatically(const QCString &s)
157  { QCString result="本文件由Doxygen";
158  if (!s.isEmpty()) result+=(QCString)" 自 "+s;
159  result+=" 的原始碼中自動產生.";
160  return result;
161  }
162 
163  /*! put after an enum name in the list of all members */
164  virtual QCString trEnumName()
165  { return "列舉型態名稱"; }
166 
167  /*! put after an enum value in the list of all members */
168  virtual QCString trEnumValue()
169  { return "列舉值"; }
170 
171  /*! put after an undocumented member in the list of all members */
172  virtual QCString trDefinedIn()
173  { return "被定義於"; }
174 
175  // quick reference sections
176 
177  /*! This is put above each page as a link to the list of all groups of
178  * compounds or files (see the \\group command).
179  */
180  virtual QCString trModules()
181  { return "模組"; }
182 
183  /*! This is put above each page as a link to the class hierarchy */
184  virtual QCString trClassHierarchy()
185  { return "類別階層"; }
186 
187  /*! This is put above each page as a link to the list of annotated classes */
188  virtual QCString trCompoundList()
189  {
190  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
191  {
192  return "資料結構";
193  }
194  else
195  {
196  return "複合列表";
197  }
198  }
199 
200  /*! This is put above each page as a link to the list of documented files */
202  { return "檔案列表"; }
203 
204  /*! This is put above each page as a link to all members of compounds. */
206  {
207  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
208  {
209  return "資料欄位";
210  }
211  else
212  {
213  return "複合成員";
214  }
215  }
216 
217  /*! This is put above each page as a link to all members of files. */
219  {
220  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
221  {
222  return "全域資料";
223  }
224  else
225  {
226  return "檔案成員";
227  }
228  }
229 
230  /*! This is put above each page as a link to all related pages. */
231  virtual QCString trRelatedPages()
232  { return "相關頁面"; }
233 
234  /*! This is put above each page as a link to all examples. */
236  { return "範例"; }
237 
238  /*! This is put above each page as a link to the search engine. */
239  virtual QCString trSearch()
240  { return "搜尋"; }
241 
242  /*! This is an introduction to the class hierarchy. */
244  { return "這個繼承列表經過簡略的字母排序: ";
245  }
246 
247  /*! This is an introduction to the list with all files. */
248  virtual QCString trFileListDescription(bool extractAll)
249  {
250  QCString result="這是附帶簡略說明";
251  if (!extractAll) result+="且經過文件化";
252  result+="的檔案列表:";
253  return result;
254  }
255 
256  /*! This is an introduction to the annotated compound list. */
258  {
259 
260  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
261  {
262  return "這是附帶簡略說明的資料結構:";
263  }
264  else
265  {
266  return "這是附帶簡略說明的類別,結構,"
267  "聯合型態(unions)及介面(interfaces):";
268  }
269  }
270 
271  /*! This is an introduction to the page with all class members. */
272  virtual QCString trCompoundMembersDescription(bool extractAll)
273  {
274  QCString result="這是全部";
275  if (!extractAll)
276  {
277  result+="文件化過";
278  }
279  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
280  {
281  result+="結構及聯合型態欄位";
282  }
283  else
284  {
285  result+="類別成員";
286  }
287  result+=", 並且帶有連結至";
288  if (!extractAll)
289  {
290  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
291  {
292  result+="每個欄位的結構/聯合型態說明文件:";
293  }
294  else
295  {
296  result+="每個成員的類別說明文件:";
297  }
298  }
299  else
300  {
301  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
302  {
303  result+="這些結構/聯合型態所屬:";
304  }
305  else
306  {
307  result+="這些類別所屬:";
308  }
309  }
310  return result;
311  }
312 
313  /*! This is an introduction to the page with all file members. */
314  virtual QCString trFileMembersDescription(bool extractAll)
315  {
316  QCString result="這是全部";
317  if (!extractAll) result+="文件化的";
318 
319  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
320  {
321  result+="函式,變數,定義,列舉,及型態定義";
322  }
323  else
324  {
325  result+="檔案成員";
326  }
327  result+=",並且帶有連結至";
328  if (extractAll)
329  result+="這些檔案所屬:";
330  else
331  result+="說明文件:";
332  return result;
333  }
334 
335  /*! This is an introduction to the page with the list of all examples */
337  { return "所有範例列表:"; }
338 
339  /*! This is an introduction to the page with the list of related pages */
341  { return "所有相關文件頁面列表:"; }
342 
343  /*! This is an introduction to the page with the list of class/file groups */
345  { return "所有模組列表:"; }
346 
347  // index titles (the project name is prepended for these)
348 
349 
350  /*! This is used in HTML as the title of index.html. */
351  virtual QCString trDocumentation()
352  { return "說明文件"; }
353 
354  /*! This is used in LaTeX as the title of the chapter with the
355  * index of all groups.
356  */
358  { return "模組索引"; }
359 
360  /*! This is used in LaTeX as the title of the chapter with the
361  * class hierarchy.
362  */
363  virtual QCString trHierarchicalIndex()
364  { return "階層索引"; }
365 
366  /*! This is used in LaTeX as the title of the chapter with the
367  * annotated compound index.
368  */
369  virtual QCString trCompoundIndex()
370  {
371  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
372  {
373  return "資料結構索引";
374  }
375  else
376  {
377  return "複合索引";
378  }
379  }
380 
381  /*! This is used in LaTeX as the title of the chapter with the
382  * list of all files.
383  */
384  virtual QCString trFileIndex()
385  { return "檔案索引"; }
386 
387  /*! This is used in LaTeX as the title of the chapter containing
388  * the documentation of all groups.
389  */
391  { return "模組說明文件"; }
392 
393  /*! This is used in LaTeX as the title of the chapter containing
394  * the documentation of all classes, structs and unions.
395  */
397  {
398  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
399  {
400  return "資料結構說明文件";
401  }
402  else
403  {
404  return "類別說明文件";
405  }
406  }
407 
408  /*! This is used in LaTeX as the title of the chapter containing
409  * the documentation of all files.
410  */
411  virtual QCString trFileDocumentation()
412  { return "檔案說明文件"; }
413 
414  /*! This is used in LaTeX as the title of the chapter containing
415  * the documentation of all examples.
416  */
418  { return "範例說明文件"; }
419 
420  /*! This is used in LaTeX as the title of the chapter containing
421  * the documentation of all related pages.
422  */
423  virtual QCString trPageDocumentation()
424  { return "頁面說明文件"; }
425 
426  /*! This is used in LaTeX as the title of the document */
427  virtual QCString trReferenceManual()
428  { return "參考手冊"; }
429 
430  /*! This is used in the documentation of a file as a header before the
431  * list of defines
432  */
433  virtual QCString trDefines()
434  { return "定義"; }
435 
436  /*! This is used in the documentation of a file as a header before the
437  * list of typedefs
438  */
439  virtual QCString trTypedefs()
440  { return "型態定義"; }
441 
442  /*! This is used in the documentation of a file as a header before the
443  * list of enumerations
444  */
445  virtual QCString trEnumerations()
446  { return "列舉型態"; }
447 
448  /*! This is used in the documentation of a file as a header before the
449  * list of (global) functions
450  */
451  virtual QCString trFunctions()
452  { return "函式"; }
453 
454  /*! This is used in the documentation of a file as a header before the
455  * list of (global) variables
456  */
457  virtual QCString trVariables()
458  { return "變數"; }
459 
460  /*! This is used in the documentation of a file as a header before the
461  * list of (global) variables
462  */
463  virtual QCString trEnumerationValues()
464  { return "列舉值"; }
465 
466  /*! This is used in the documentation of a file before the list of
467  * documentation blocks for defines
468  */
470  { return "定義巨集說明文件"; }
471 
472  /*! This is used in the documentation of a file/namespace before the list
473  * of documentation blocks for typedefs
474  */
476  { return "型態定義說明文件"; }
477 
478  /*! This is used in the documentation of a file/namespace before the list
479  * of documentation blocks for enumeration types
480  */
482  { return "列舉型態說明文件"; }
483 
484  /*! This is used in the documentation of a file/namespace before the list
485  * of documentation blocks for enumeration values
486  */
488  { return "列舉值說明文件"; }
489 
490  /*! This is used in the documentation of a file/namespace before the list
491  * of documentation blocks for functions
492  */
494  { return "函式說明文件"; }
495 
496  /*! This is used in the documentation of a file/namespace before the list
497  * of documentation blocks for variables
498  */
500  { return "變數說明文件"; }
501 
502  /*! This is used in the documentation of a file/namespace/group before
503  * the list of links to documented compounds
504  */
505  virtual QCString trCompounds()
506  {
507  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
508  {
509  return "資料結構";
510  }
511  else
512  {
513  return "複合項目";
514  }
515  }
516 
517  /*! This is used in the standard footer of each page and indicates when
518  * the page was generated
519  */
520  virtual QCString trGeneratedAt(const QCString &date,const QCString &projName)
521  {
522  QCString result=(QCString)"產生日期:"+date;
523  if (!projName.isEmpty()) result+=(QCString)", 專案:"+projName;
524  result+=(QCString)", 產生器:";
525  return result;
526  }
527 
528  /*! this text is put before a class diagram */
529  virtual QCString trClassDiagram(const QCString &clName)
530  {
531  return (QCString)"類別"+clName+"的繼承圖:";
532  }
533 
534  /*! this text is generated when the \\internal command is used. */
536  { return "僅供內部使用."; }
537 
538  /*! this text is generated when the \\warning command is used. */
539  virtual QCString trWarning()
540  { return "警告"; }
541 
542  /*! this text is generated when the \\version command is used. */
543  virtual QCString trVersion()
544  { return "版本"; }
545 
546  /*! this text is generated when the \\date command is used. */
547  virtual QCString trDate()
548  { return "日期"; }
549 
550  /*! this text is generated when the \\return command is used. */
551  virtual QCString trReturns()
552  { return "傳回值"; }
553 
554  /*! this text is generated when the \\sa command is used. */
555  virtual QCString trSeeAlso()
556  { return "參閱"; }
557 
558  /*! this text is generated when the \\param command is used. */
559  virtual QCString trParameters()
560  { return "參數"; }
561 
562  /*! this text is generated when the \\exception command is used. */
563  virtual QCString trExceptions()
564  { return "例外"; }
565 
566  /*! this text is used in the title page of a LaTeX document. */
567  virtual QCString trGeneratedBy()
568  { return "產生者:"; }
569 
570 //////////////////////////////////////////////////////////////////////////
571 // new since 0.49-990307
572 //////////////////////////////////////////////////////////////////////////
573 
574  /*! used as the title of page containing all the index of all namespaces. */
575  virtual QCString trNamespaceList()
576  { return "命名空間(name space)列表"; }
577 
578  /*! used as an introduction to the namespace list */
579  virtual QCString trNamespaceListDescription(bool extractAll)
580  {
581  QCString result="這是所有附帶簡略說明的";
582  if (!extractAll) result+="文件化的";
583  result+="命名空間(namespaces):";
584  return result;
585  }
586 
587  /*! used in the class documentation as a header before the list of all
588  * friends of a class
589  */
590  virtual QCString trFriends()
591  { return "類別朋友(Friends)"; }
592 
593 //////////////////////////////////////////////////////////////////////////
594 // new since 0.49-990405
595 //////////////////////////////////////////////////////////////////////////
596 
597  /*! used in the class documentation as a header before the list of all
598  * related classes
599  */
601  { return "類別朋友及相關函式說明文件"; }
602 
603 //////////////////////////////////////////////////////////////////////////
604 // new since 0.49-990425
605 //////////////////////////////////////////////////////////////////////////
606 
607  /*! used as the title of the HTML page of a class/struct/union */
608  virtual QCString trCompoundReference(const QCString &clName,
609  ClassDef::CompoundType compType,
610  bool isTemplate)
611  {
612  QCString result=(QCString)clName+" ";
613  switch(compType)
614  {
615  case ClassDef::Class: result+=" 類別"; break;
616  case ClassDef::Struct: result+=" 結構"; break;
617  case ClassDef::Union: result+=" 聯合"; break;
618  case ClassDef::Interface: result+=" 介面"; break;
619  case ClassDef::Protocol: result+=" 協定"; break;
620  case ClassDef::Category: result+=" 分類"; break;
621  case ClassDef::Exception: result+=" 例外"; break;
622  default: break;
623  }
624  if (isTemplate) result+=" 樣版";
625  result+=" 參考文件";
626  return result;
627  }
628 
629  /*! used as the title of the HTML page of a file */
630  virtual QCString trFileReference(const QCString &fileName)
631  {
632  QCString result=fileName;
633  result+=" 檔案參考文件";
634  return result;
635  }
636 
637  /*! used as the title of the HTML page of a namespace */
638  virtual QCString trNamespaceReference(const QCString &namespaceName)
639  {
640  QCString result=namespaceName;
641  result+=" 命名空間(Namespace)參考文件";
642  return result;
643  }
644 
645  virtual QCString trPublicMembers()
646  { return "公開方法(Public Methods)"; }
648  { return "公開插槽(Public Slots)"; }
649  virtual QCString trSignals()
650  { return "訊號(Signals)"; }
652  { return "靜態公開方法(Static Public Methods)"; }
653  virtual QCString trProtectedMembers()
654  { return "保護方法(Protected Methods)"; }
656  { return "保護插槽(Protected Slots)"; }
658  { return "靜態保護方法(Static Protected Methods)"; }
659  virtual QCString trPrivateMembers()
660  { return "私有方法(Private Methods)"; }
661  virtual QCString trPrivateSlots()
662  { return "私有插槽(Private Slots)"; }
664  { return "靜態私有方法(Static Private Methods)"; }
665 
666  /*! this function is used to produce a comma-separated list of items.
667  * use generateMarker(i) to indicate where item i should be put.
668  */
669  virtual QCString trWriteList(int numEntries)
670  {
671  QCString result;
672  int i;
673  // the inherits list contain `numEntries' classes
674  for (i=0;i<numEntries;i++)
675  {
676  // use generateMarker to generate placeholders for the class links!
677  result+=generateMarker(i); // generate marker for entry i in the list
678  // (order is left to right)
679 
680  if (i!=numEntries-1) // not the last entry, so we need a separator
681  {
682  if (i<numEntries-2) // not the fore last entry
683  result+=", ";
684  else // the fore last entry
685  result+=", 及 ";
686  }
687  }
688  return result;
689  }
690 
691  /*! used in class documentation to produce a list of base classes,
692  * if class diagrams are disabled.
693  */
694  virtual QCString trInheritsList(int numEntries)
695  {
696  return "繼承自 "+trWriteList(numEntries)+".";
697  }
698 
699  /*! used in class documentation to produce a list of super classes,
700  * if class diagrams are disabled.
701  */
702  virtual QCString trInheritedByList(int numEntries)
703  {
704  return "被 "+trWriteList(numEntries)+"繼承.";
705  }
706 
707  /*! used in member documentation blocks to produce a list of
708  * members that are hidden by this one.
709  */
710  virtual QCString trReimplementedFromList(int numEntries)
711  {
712  return "依據"+trWriteList(numEntries)+"重新實作.";
713  }
714 
715  /*! used in member documentation blocks to produce a list of
716  * all member that overwrite the implementation of this member.
717  */
718  virtual QCString trReimplementedInList(int numEntries)
719  {
720  return "在"+trWriteList(numEntries)+"重新實作.";
721  }
722 
723  /*! This is put above each page as a link to all members of namespaces. */
724  virtual QCString trNamespaceMembers()
725  { return "命名空間(Namespace)成員"; }
726 
727  /*! This is an introduction to the page with all namespace members */
728  virtual QCString trNamespaceMemberDescription(bool extractAll)
729  {
730  QCString result="此處列表為所有 ";
731  if (!extractAll) result+="文件化的 ";
732  result+="命名空間(namespace)成員,並且附帶連結至 ";
733  if (extractAll)
734  result+="每個成員的說明文件:";
735  else
736  result+="該命名空間所屬之處:";
737  return result;
738  }
739  /*! This is used in LaTeX as the title of the chapter with the
740  * index of all namespaces.
741  */
742  virtual QCString trNamespaceIndex()
743  { return "命名空間(Namespace)索引"; }
744 
745  /*! This is used in LaTeX as the title of the chapter containing
746  * the documentation of all namespaces.
747  */
749  { return "命名空間(Namespace)說明文件"; }
750 
751 //////////////////////////////////////////////////////////////////////////
752 // new since 0.49-990522
753 //////////////////////////////////////////////////////////////////////////
754 
755  /*! This is used in the documentation before the list of all
756  * namespaces in a file.
757  */
758  virtual QCString trNamespaces()
759  { return "命名空間(Namespaces)"; }
760 
761 //////////////////////////////////////////////////////////////////////////
762 // new since 0.49-990728
763 //////////////////////////////////////////////////////////////////////////
764 
765  /*! This is put at the bottom of a class documentation page and is
766  * followed by a list of files that were used to generate the page.
767  */
769  { // here s is one of " Class", " Struct" or " Union"
770  // single is true implies a single file
771  QCString result=(QCString)"此";
772  switch(compType)
773  {
774  case ClassDef::Class: result+="類別(class)"; break;
775  case ClassDef::Struct: result+="結構(structure)"; break;
776  case ClassDef::Union: result+="聯合(union)"; break;
777  case ClassDef::Interface: result+="介面(interface)"; break;
778  case ClassDef::Protocol: result+="協定(protocol)"; break;
779  case ClassDef::Category: result+="分類(category)"; break;
780  case ClassDef::Exception: result+="例外(exception)"; break;
781  default: break;
782  }
783  result+=" 文件是由下列檔案中產生";
784  result+=":";
785  return result;
786  }
787 
788 //////////////////////////////////////////////////////////////////////////
789 // new since 0.49-990901
790 //////////////////////////////////////////////////////////////////////////
791 
792  /*! This is used as the heading text for the retval command. */
793  virtual QCString trReturnValues()
794  { return "傳回值"; }
795 
796  /*! This is in the (quick) index as a link to the main page (index.html)
797  */
798  virtual QCString trMainPage()
799  { return "主頁面"; }
800 
801  /*! This is used in references to page that are put in the LaTeX
802  * documentation. It should be an abbreviation of the word page.
803  */
804  virtual QCString trPageAbbreviation()
805  { return "p."; }
806 
807 //////////////////////////////////////////////////////////////////////////
808 // new since 0.49-991003
809 //////////////////////////////////////////////////////////////////////////
810 
812  {
813  return "定義在 @1 檔案之第 @0 行.";
814  }
816  {
817  return "定義在 @0 檔.";
818  }
819 
820 //////////////////////////////////////////////////////////////////////////
821 // new since 0.49-991205
822 //////////////////////////////////////////////////////////////////////////
823 
824  virtual QCString trDeprecated()
825  {
826  return "過時";
827  }
828 
829 //////////////////////////////////////////////////////////////////////////
830 // new since 1.0.0
831 //////////////////////////////////////////////////////////////////////////
832 
833  /*! this text is put before a collaboration diagram */
834  virtual QCString trCollaborationDiagram(const QCString &clName)
835  {
836  return (QCString)""+clName+"的合作圖:";
837  }
838  /*! this text is put before an include dependency graph */
839  virtual QCString trInclDepGraph(const QCString &fName)
840  {
841  return (QCString)""+fName+"的包含相依圖:";
842  }
843  /*! header that is put before the list of constructor/destructors. */
845  {
846  return "建構子與解構子說明文件";
847  }
848  /*! Used in the file documentation to point to the corresponding sources. */
849  virtual QCString trGotoSourceCode()
850  {
851  return "查看本檔案的原始碼.";
852  }
853  /*! Used in the file sources to point to the corresponding documentation. */
854  virtual QCString trGotoDocumentation()
855  {
856  return "查看本檔案說明文件.";
857  }
858  /*! Text for the \\pre command */
859  virtual QCString trPrecondition()
860  {
861  return "前置條件";
862  }
863  /*! Text for the \\post command */
864  virtual QCString trPostcondition()
865  {
866  return "後置條件";
867  }
868  /*! Text for the \\invariant command */
869  virtual QCString trInvariant()
870  {
871  return "常數";
872  }
873  /*! Text shown before a multi-line variable/enum initialization */
874  virtual QCString trInitialValue()
875  {
876  return "初值:";
877  }
878  /*! Text used the source code in the file index */
879  virtual QCString trCode()
880  {
881  return "程式碼";
882  }
884  {
885  return "圖形化之類別階層";
886  }
888  {
889  return "查看圖形化之類別階層";
890  }
892  {
893  return "查看文字化之類別階層";
894  }
895  virtual QCString trPageIndex()
896  {
897  return "頁面索引";
898  }
899 
900 //////////////////////////////////////////////////////////////////////////
901 // new since 1.1.0
902 //////////////////////////////////////////////////////////////////////////
903 
904  virtual QCString trNote()
905  {
906  return "註";
907  }
909  {
910  return "公開型態";
911  }
913  {
914  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
915  {
916  return "資料欄位";
917  }
918  else
919  {
920  return "公開屬性";
921  }
922  }
924  {
925  return "靜態公開屬性";
926  }
927  virtual QCString trProtectedTypes()
928  {
929  return "保護型態";
930  }
931  virtual QCString trProtectedAttribs()
932  {
933  return "保護屬性";
934  }
936  {
937  return "靜態保護屬性";
938  }
939  virtual QCString trPrivateTypes()
940  {
941  return "私有型態";
942  }
943  virtual QCString trPrivateAttribs()
944  {
945  return "私有屬性";
946  }
948  {
949  return "靜態私有屬性";
950  }
951 
952 //////////////////////////////////////////////////////////////////////////
953 // new since 1.1.3
954 //////////////////////////////////////////////////////////////////////////
955 
956  /*! Used as a marker that is put before a \\todo item */
957  virtual QCString trTodo()
958  {
959  return "待辦事項";
960  }
961  /*! Used as the header of the todo list */
962  virtual QCString trTodoList()
963  {
964  return "待辦事項列表";
965  }
966 
967 //////////////////////////////////////////////////////////////////////////
968 // new since 1.1.4
969 //////////////////////////////////////////////////////////////////////////
970 
971  virtual QCString trReferencedBy()
972  {
973  return "被參考於";
974  }
975  virtual QCString trRemarks()
976  {
977  return "備註";
978  }
980  {
981  return "注意";
982  }
983  virtual QCString trInclByDepGraph()
984  {
985  return "本圖顯示出哪些檔案直接或間接include本檔 "
986  ":";
987  }
988  virtual QCString trSince()
989  {
990  return "自";
991  }
992 
993 //////////////////////////////////////////////////////////////////////////
994 // new since 1.1.5
995 //////////////////////////////////////////////////////////////////////////
996 
997  /*! title of the graph legend page */
998  virtual QCString trLegendTitle()
999  {
1000  return "圖示";
1001  }
1002  /*! page explaining how the dot graph's should be interpreted
1003  * The %A in the text below are to prevent link to classes called "A".
1004  */
1006  {
1007  return
1008  "本頁解釋如何解譯這些由doxygen所產生的圖示 "
1009  ".<p>\n"
1010  "請看下面範例:\n"
1011  "\\code\n"
1012  "/*! 因為截斷而造成的不可見類別 */\n"
1013  "class Invisible { };\n\n"
1014  "/*! 截斷的類別, 繼承關係被隱藏 */\n"
1015  "class Truncated : public Invisible { };\n\n"
1016  "/* 未經過doxygen註解處理過的類別 */\n"
1017  "class Undocumented { };\n\n"
1018  "/*! 經過公開(Public)繼承的類別 */\n"
1019  "class PublicBase : public Truncated { };\n\n"
1020  "/*! 一個樣版類別 */\n"
1021  "template<class T> class Templ { };\n\n"
1022  "/*! 使用保護(Protected)繼承的類別 */\n"
1023  "class ProtectedBase { };\n\n"
1024  "/*! 使用私有(Private)繼承的類別 */\n"
1025  "class PrivateBase { };\n\n"
1026  "/*! 由被繼承類別所使用的類別 */\n"
1027  "class Used { };\n\n"
1028  "/*! 由數個其他類別所繼承來的超類別(Super Class) */\n"
1029  "class Inherited : public PublicBase,\n"
1030  " protected ProtectedBase,\n"
1031  " private PrivateBase,\n"
1032  " public Undocumented,\n"
1033  " public Templ<int>\n"
1034  "{\n"
1035  " private:\n"
1036  " Used *m_usedClass;\n"
1037  "};\n"
1038  "\\endcode\n"
1039  "這個例子會產生下列的圖示:"
1040  "<p><center><img alt=\"\" src=\"graph_legend."+getDotImageExtension()+"\"></center></p>\n"
1041  "<p>\n"
1042  "上圖中的各區塊意義如下:\n"
1043  "</p>\n"
1044  "<ul>\n"
1045  "<li>%A 填滿黑色的區塊代表產生這個圖示的類別或結構 "
1046  ".\n"
1047  "<li>%A 黑邊的區塊代表文件化過的結構或類別.</li>\n"
1048  "<li>%A 灰邊的區塊代表未經文件化的結構或是類別.</li>\n"
1049  "<li>%A 紅邊的區塊代表文件化的結構或是類別,"
1050  "這些結構或類別的繼承或包含關係不會全部顯示. %A 圖示 "
1051  "若無法塞入指定的邊界中將會被截斷.</li>\n"
1052  "</ul>\n"
1053  "<p>\n"
1054  "箭頭具有下面的意義:\n"
1055  "</p>\n"
1056  "<ul>\n"
1057  "<li>%A 深藍色箭頭用來代表兩個類別間的公開繼承 "
1058  "關係.\n"
1059  "<li>%A 深綠色箭頭代表保護繼承。</li>\n"
1060  "<li>%A 深紅色箭頭代表私有繼承。</li>\n"
1061  "<li>%A 紫色箭頭用來表示類別被另一個包含或是使用."
1062  "箭頭上標示著可存取該類別或是結構的對應變數。</li>\n"
1063  "<li>%A 黃色箭頭代表樣版實體與樣版類別之間的關係。"
1064  "箭頭上標記著樣版實體上的參數。</li>\n"
1065  "</ul>\n";
1066  }
1067  /*! text for the link to the legend page */
1068  virtual QCString trLegend()
1069  {
1070  return "圖示";
1071  }
1072 
1073 //////////////////////////////////////////////////////////////////////////
1074 // new since 1.2.0
1075 //////////////////////////////////////////////////////////////////////////
1076 
1077  /*! Used as a marker that is put before a test item */
1078  virtual QCString trTest()
1079  {
1080  return "測試項目";
1081  }
1082  /*! Used as the header of the test list */
1083  virtual QCString trTestList()
1084  {
1085  return "測試項目列表";
1086  }
1087 
1088 //////////////////////////////////////////////////////////////////////////
1089 // new since 1.2.2
1090 //////////////////////////////////////////////////////////////////////////
1091 
1092  /*! Used as a section header for IDL properties */
1093  virtual QCString trProperties()
1094  {
1095  return "屬性(properties)";
1096  }
1097  /*! Used as a section header for IDL property documentation */
1099  {
1100  return "屬性(property)說明文件";
1101  }
1102 
1103 //////////////////////////////////////////////////////////////////////////
1104 // new since 1.2.4
1105 //////////////////////////////////////////////////////////////////////////
1106 
1107  /*! Used for Java classes in the summary section of Java packages */
1108  virtual QCString trClasses()
1109  {
1110  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1111  {
1112  return "資料結構";
1113  }
1114  else
1115  {
1116  return "類別";
1117  }
1118  }
1119  /*! Used as the title of a Java package */
1120  virtual QCString trPackage(const QCString &name)
1121  {
1122  return (QCString)"Package "+name;
1123  }
1124  /*! Title of the package index page */
1126  {
1127  return "Package列表";
1128  }
1129  /*! The description of the package index page */
1131  {
1132  return "此處為Package的概略說明(如果有的話):";
1133  }
1134  /*! The link name in the Quick links header for each page */
1135  virtual QCString trPackages()
1136  {
1137  return "Packages";
1138  }
1139 
1140  /*! Text shown before a multi-line define */
1141  virtual QCString trDefineValue()
1142  {
1143  return "巨集內容:";
1144  }
1145 
1146 //////////////////////////////////////////////////////////////////////////
1147 // new since 1.2.5
1148 //////////////////////////////////////////////////////////////////////////
1149 
1150  /*! Used as a marker that is put before a \\bug item */
1151  virtual QCString trBug()
1152  {
1153  return "臭蟲";
1154  }
1155  /*! Used as the header of the bug list */
1156  virtual QCString trBugList()
1157  {
1158  return "臭蟲列表";
1159  }
1160 
1161 //////////////////////////////////////////////////////////////////////////
1162 // new since 1.2.6
1163 //////////////////////////////////////////////////////////////////////////
1164 
1165  /*! Used as ansicpg for RTF file
1166  *
1167  * The following table shows the correlation of Charset name, Charset Value and
1168  * <pre>
1169  * Codepage number:
1170  * Charset Name Charset Value(hex) Codepage number
1171  * ------------------------------------------------------
1172  * DEFAULT_CHARSET 1 (x01)
1173  * SYMBOL_CHARSET 2 (x02)
1174  * OEM_CHARSET 255 (xFF)
1175  * ANSI_CHARSET 0 (x00) 1252
1176  * RUSSIAN_CHARSET 204 (xCC) 1251
1177  * EE_CHARSET 238 (xEE) 1250
1178  * GREEK_CHARSET 161 (xA1) 1253
1179  * TURKISH_CHARSET 162 (xA2) 1254
1180  * BALTIC_CHARSET 186 (xBA) 1257
1181  * HEBREW_CHARSET 177 (xB1) 1255
1182  * ARABIC _CHARSET 178 (xB2) 1256
1183  * SHIFTJIS_CHARSET 128 (x80) 932
1184  * HANGEUL_CHARSET 129 (x81) 949
1185  * GB2313_CHARSET 134 (x86) 936
1186  * CHINESEBIG5_CHARSET 136 (x88) 950
1187  * </pre>
1188  *
1189  */
1190  virtual QCString trRTFansicp()
1191  {
1192  return "950";
1193  }
1194 
1195 
1196  /*! Used as ansicpg for RTF fcharset
1197  * \see trRTFansicp() for a table of possible values.
1198  */
1199  virtual QCString trRTFCharSet()
1200  {
1201  return "136";
1202  }
1203 
1204  /*! Used as header RTF general index */
1205  virtual QCString trRTFGeneralIndex()
1206  {
1207  return "索引";
1208  }
1209 
1210  /*! This is used for translation of the word that will possibly
1211  * be followed by a single name or by a list of names
1212  * of the category.
1213  */
1214  virtual QCString trClass(bool /*first_capital*/, bool /*singular*/)
1215  {
1216  return QCString("類別");
1217  }
1218 
1219  /*! This is used for translation of the word that will possibly
1220  * be followed by a single name or by a list of names
1221  * of the category.
1222  */
1223  virtual QCString trFile(bool /*first_capital*/, bool /*singular*/)
1224  {
1225  return QCString("檔案");
1226  }
1227 
1228  /*! This is used for translation of the word that will possibly
1229  * be followed by a single name or by a list of names
1230  * of the category.
1231  */
1232  virtual QCString trNamespace(bool /*first_capital*/, bool /*singular*/)
1233  {
1234  return QCString("命名空間");
1235  }
1236 
1237  /*! This is used for translation of the word that will possibly
1238  * be followed by a single name or by a list of names
1239  * of the category.
1240  */
1241  virtual QCString trGroup(bool /*first_capital*/, bool /*singular*/)
1242  {
1243  return QCString("群組");
1244  }
1245 
1246  /*! This is used for translation of the word that will possibly
1247  * be followed by a single name or by a list of names
1248  * of the category.
1249  */
1250  virtual QCString trPage(bool /*first_capital*/, bool /*singular*/)
1251  {
1252  return QCString("頁面");
1253  }
1254 
1255  /*! This is used for translation of the word that will possibly
1256  * be followed by a single name or by a list of names
1257  * of the category.
1258  */
1259  virtual QCString trMember(bool /*first_capital*/, bool /*singular*/)
1260  {
1261  return QCString("成員");
1262  }
1263 
1264  /*! This is used for translation of the word that will possibly
1265  * be followed by a single name or by a list of names
1266  * of the category.
1267  */
1268  virtual QCString trGlobal(bool /*first_capital*/, bool /*singular*/)
1269  {
1270  return QCString("全域");
1271  }
1272 
1273 //////////////////////////////////////////////////////////////////////////
1274 // new since 1.2.7
1275 //////////////////////////////////////////////////////////////////////////
1277  /*! This text is generated when the \\author command is used and
1278  * for the author section in man pages. */
1279  virtual QCString trAuthor(bool /*first_capital*/, bool /*singular*/)
1280  {
1281  return QCString("作者");
1282  }
1283 
1284 //////////////////////////////////////////////////////////////////////////
1285 // new since 1.2.11
1286 //////////////////////////////////////////////////////////////////////////
1287 
1288  /*! This text is put before the list of members referenced by a member
1289  */
1290  virtual QCString trReferences()
1291  {
1292  return "參考";
1293  }
1294 
1295 //////////////////////////////////////////////////////////////////////////
1296 // new since 1.2.13
1297 //////////////////////////////////////////////////////////////////////////
1298 
1299  /*! used in member documentation blocks to produce a list of
1300  * members that are implemented by this one.
1301  */
1302  virtual QCString trImplementedFromList(int numEntries)
1303  {
1304  return "實作 "+trWriteList(numEntries)+".";
1305  }
1306 
1307  /*! used in member documentation blocks to produce a list of
1308  * all members that implement this abstract member.
1309  */
1310  virtual QCString trImplementedInList(int numEntries)
1311  {
1312  return "實作於 "+trWriteList(numEntries)+".";
1313  }
1314 
1315  //////////////////////////////////////////////////////////////////////////
1316 // new since 1.2.16
1317 //////////////////////////////////////////////////////////////////////////
1318 
1319  /*! used in RTF documentation as a heading for the Table
1320  * of Contents.
1321  */
1322  virtual QCString trRTFTableOfContents()
1323  {
1324  return "目錄";
1325  }
1326 
1327 //////////////////////////////////////////////////////////////////////////
1328 // new since 1.2.17
1329 //////////////////////////////////////////////////////////////////////////
1330 
1331  /*! Used as the header of the list of item that have been
1332  * flagged deprecated
1333  */
1334  virtual QCString trDeprecatedList()
1335  {
1336  return "過時項目(Deprecated) 列表";
1337  }
1338 
1339 //////////////////////////////////////////////////////////////////////////
1340 // new since 1.2.18
1341 //////////////////////////////////////////////////////////////////////////
1342 
1343  /*! Used as a header for declaration section of the events found in
1344  * a C# program
1345  */
1346  virtual QCString trEvents()
1347  {
1348  return "Events";
1349  }
1350  /*! Header used for the documentation section of a class' events. */
1352  {
1353  return "Event 文件";
1354  }
1355 
1356 //////////////////////////////////////////////////////////////////////////
1357 // new since 1.3
1358 //////////////////////////////////////////////////////////////////////////
1359 
1360  /*! Used as a heading for a list of Java class types with package scope.
1361  */
1362  virtual QCString trPackageTypes()
1363  {
1364  return "Package 型別";
1365  }
1366  /*! Used as a heading for a list of Java class functions with package
1367  * scope.
1368  */
1369  virtual QCString trPackageMembers()
1370  {
1371  return "Package 函數列表";
1372  }
1373  /*! Used as a heading for a list of static Java class functions with
1374  * package scope.
1375  */
1377  {
1378  return "靜態 Package 函數列表";
1379  }
1380  /*! Used as a heading for a list of Java class variables with package
1381  * scope.
1382  */
1383  virtual QCString trPackageAttribs()
1384  {
1385  return "Package 屬性";
1386  }
1387  /*! Used as a heading for a list of static Java class variables with
1388  * package scope.
1389  */
1391  {
1392  return "靜態 Package 屬性";
1393  }
1394 
1395 //////////////////////////////////////////////////////////////////////////
1396 // new since 1.3.1
1397 //////////////////////////////////////////////////////////////////////////
1398 
1399  /*! Used in the quick index of a class/file/namespace member list page
1400  * to link to the unfiltered list of all members.
1401  */
1402  virtual QCString trAll()
1403  {
1404  return "全部";
1405  }
1406  /*! Put in front of the call graph for a function. */
1408  {
1409  return "這是此函數的引用函數圖:";
1410  }
1411 
1412 //////////////////////////////////////////////////////////////////////////
1413 // new since 1.3.3
1414 //////////////////////////////////////////////////////////////////////////
1415 
1416  /*! This string is used as the title for the page listing the search
1417  * results.
1418  */
1420  {
1421  return "搜尋結果";
1422  }
1423  /*! This string is put just before listing the search results. The
1424  * text can be different depending on the number of documents found.
1425  * Inside the text you can put the special marker $num to insert
1426  * the number representing the actual number of search results.
1427  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1428  * value 2 represents 2 or more matches. HTML markup is allowed inside
1429  * the returned string.
1430  */
1431  virtual QCString trSearchResults(int numDocuments)
1432  {
1433  if (numDocuments==0)
1434  {
1435  return "找不到符合的資料.";
1436  }
1437  else if (numDocuments==1)
1438  {
1439  return "找到 <b>1</b> 筆符合的資料.";
1440  }
1441  else
1442  {
1443  return "找到 <b>$num</b> 筆符合的資料. "
1444  "越符合的結果顯示在越前面.";
1445  }
1446  }
1447  /*! This string is put before the list of matched words, for each search
1448  * result. What follows is the list of words that matched the query.
1449  */
1450  virtual QCString trSearchMatches()
1451  {
1452  return "符合:";
1453  }
1454 
1455 //////////////////////////////////////////////////////////////////////////
1456 // new since 1.3.8
1457 //////////////////////////////////////////////////////////////////////////
1458 
1459  /*! This is used in HTML as the title of page with source code for file filename
1460  */
1461  virtual QCString trSourceFile(QCString& filename)
1462  {
1463  return filename + " 原始程式檔";
1464  }
1465 
1466 //////////////////////////////////////////////////////////////////////////
1467 // new since 1.3.9
1468 //////////////////////////////////////////////////////////////////////////
1469 
1470  /*! This is used as the name of the chapter containing the directory
1471  * hierarchy.
1472  */
1473  virtual QCString trDirIndex()
1474  { return "目錄階層"; }
1475 
1476  /*! This is used as the name of the chapter containing the documentation
1477  * of the directories.
1478  */
1479  virtual QCString trDirDocumentation()
1480  { return "目錄說明文件"; }
1481 
1482  /*! This is used as the title of the directory index and also in the
1483  * Quick links of a HTML page, to link to the directory hierarchy.
1484  */
1485  virtual QCString trDirectories()
1486  { return "目錄"; }
1487 
1488  /*! This returns a sentences that introduces the directory hierarchy.
1489  * and the fact that it is sorted alphabetically per level
1490  */
1491  virtual QCString trDirDescription()
1492  { return "這個目錄階層經過簡略的字母排序: ";
1493  }
1494 
1495  /*! This returns the title of a directory page. The name of the
1496  * directory is passed via \a dirName.
1497  */
1498  virtual QCString trDirReference(const QCString &dirName)
1499  { QCString result=dirName; result+=" 目錄參考文件"; return result; }
1500 
1501  /*! This returns the word directory with or without starting capital
1502  * (\a first_capital) and in sigular or plural form (\a singular).
1503  */
1504  virtual QCString trDir(bool /*first_capital*/, bool /*singular*/)
1505  {
1506  return QCString("目錄");
1507  }
1509 //////////////////////////////////////////////////////////////////////////
1510 // new since 1.4.1
1511 //////////////////////////////////////////////////////////////////////////
1512 
1513  /*! This text is added to the documentation when the \\overload command
1514  * is used for a overloaded function.
1515  */
1516  virtual QCString trOverloadText()
1517  {
1518  return "這是一個為了便利性所提供 overload 成員函數,"
1519  "只有在接受的參數上,與前一個函數不同.";
1520  }
1521 //////////////////////////////////////////////////////////////////////////
1522 // new since 1.4.6
1523 //////////////////////////////////////////////////////////////////////////
1524 
1525  /*! This is used to introduce a caller (or called-by) graph */
1526  virtual QCString trCallerGraph()
1527  {
1528  return "呼叫此函數的函數列表:";
1529  }
1530 
1531 
1532 //////////////////////////////////////////////////////////////////////////
1533 // new since 1.5.4 (mainly for Fortran)
1534 //////////////////////////////////////////////////////////////////////////
1535 
1536  /*! header that is put before the list of member subprograms (Fortran). */
1538  { return "成員函數/子程序 文件"; }
1539 
1540  /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1542  { return "資料型態列表"; }
1544  /*! This is put above each page as a link to all members of compounds (Fortran). */
1546  { return "資料欄位"; }
1547 
1548  /*! This is an introduction to the annotated compound list (Fortran). */
1550  { return "資料型態簡短說明列表:"; }
1551 
1552  /*! This is an introduction to the page with all data types (Fortran). */
1553  virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
1554  {
1555  QCString result="此處列出所有";
1556  if (!extractAll)
1557  {
1558  result+="有文件的";
1559  }
1560  result+="資料型別成員函數";
1561  result+=" 附帶連結到 ";
1562  if (!extractAll)
1563  {
1564  result+="每個成員函數的資料結構文件";
1565  }
1566  else
1567  {
1568  result+="他們屬於的資料型別";
1569  }
1570  return result;
1571  }
1572 
1573  /*! This is used in LaTeX as the title of the chapter with the
1574  * annotated compound index (Fortran).
1575  */
1577  { return "資料型別索引"; }
1578 
1579  /*! This is used in LaTeX as the title of the chapter containing
1580  * the documentation of all data types (Fortran).
1581  */
1582  virtual QCString trTypeDocumentation()
1583  { return "資料型別文件"; }
1584 
1585  /*! This is used in the documentation of a file as a header before the
1586  * list of (global) subprograms (Fortran).
1587  */
1588  virtual QCString trSubprograms()
1589  { return "函數/子程序"; }
1590 
1591  /*! This is used in the documentation of a file/namespace before the list
1592  * of documentation blocks for subprograms (Fortran)
1593  */
1595  { return "函數/子程序 文件"; }
1596 
1597  /*! This is used in the documentation of a file/namespace/group before
1598  * the list of links to documented compounds (Fortran)
1599  */
1600  virtual QCString trDataTypes()
1601  { return "資料型別"; }
1602 
1603  /*! used as the title of page containing all the index of all modules (Fortran). */
1604  virtual QCString trModulesList()
1605  { return "模組列表"; }
1606 
1607  /*! used as an introduction to the modules list (Fortran) */
1608  virtual QCString trModulesListDescription(bool extractAll)
1609  {
1610  QCString result="此處列出所有";
1611  if (!extractAll) result+="有文件的";
1612  result+="模組附帶簡短說明:";
1613  return result;
1614  }
1615 
1616  /*! used as the title of the HTML page of a module/type (Fortran) */
1618  ClassDef::CompoundType compType,
1619  bool isTemplate)
1620  {
1621  QCString result=(QCString)clName;
1622  switch(compType)
1623  {
1624  case ClassDef::Class: result+="模組"; break;
1625  case ClassDef::Struct: result+="型態"; break;
1626  case ClassDef::Union: result+="聯合"; break;
1627  case ClassDef::Interface: result+="介面"; break;
1628  case ClassDef::Protocol: result+="協議"; break;
1629  case ClassDef::Category: result+="分類"; break;
1630  case ClassDef::Exception: result+="例外"; break;
1631  default: break;
1632  }
1633  if (isTemplate) result+=" Template";
1634  result+="參考文件";
1635  return result;
1636  }
1637  /*! used as the title of the HTML page of a module (Fortran) */
1638  virtual QCString trModuleReference(const QCString &namespaceName)
1639  {
1640  QCString result=namespaceName;
1641  result+="模組參考文件";
1642  return result;
1643  }
1644 
1645  /*! This is put above each page as a link to all members of modules. (Fortran) */
1646  virtual QCString trModulesMembers()
1647  { return "模組成員"; }
1648 
1649  /*! This is an introduction to the page with all modules members (Fortran) */
1650  virtual QCString trModulesMemberDescription(bool extractAll)
1651  {
1652  QCString result="此處列出所有";
1653  if (!extractAll) result+="有文件的";
1654  result+="模組成員附帶連結到";
1655  if (extractAll)
1656  {
1657  result+="每個函數的模組文件:";
1658  }
1659  else
1660  {
1661  result+="他們所屬的模組:";
1662  }
1663  return result;
1664  }
1665 
1666  /*! This is used in LaTeX as the title of the chapter with the
1667  * index of all modules (Fortran).
1668  */
1669  virtual QCString trModulesIndex()
1670  { return "模組索引"; }
1671 
1672  /*! This is used for translation of the word that will possibly
1673  * be followed by a single name or by a list of names
1674  * of the category.
1675  */
1676  virtual QCString trModule(bool /* first_capital */, bool /* singular */)
1677  {
1678  QCString result("模組");
1679  return result;
1680  }
1681  /*! This is put at the bottom of a module documentation page and is
1682  * followed by a list of files that were used to generate the page.
1683  */
1685  bool /* single */)
1686  { // here s is one of " Module", " Struct" or " Union"
1687  // single is true implies a single file
1688  QCString result=(QCString)"這個";
1689  switch(compType)
1690  {
1691  case ClassDef::Class: result+="模組"; break;
1692  case ClassDef::Struct: result+="型態"; break;
1693  case ClassDef::Union: result+="聯合"; break;
1694  case ClassDef::Interface: result+="介面"; break;
1695  case ClassDef::Protocol: result+="協議"; break;
1696  case ClassDef::Category: result+="分類"; break;
1697  case ClassDef::Exception: result+="例外"; break;
1698  default: break;
1699  }
1700  result+="文件由下列檔案產生";
1701  return result;
1702  }
1703  /*! This is used for translation of the word that will possibly
1704  * be followed by a single name or by a list of names
1705  * of the category.
1706  */
1707  virtual QCString trType(bool /* first_capital */, bool /* singular */)
1708  {
1709  QCString result("型別");
1710  return result;
1711  }
1712  /*! This is used for translation of the word that will possibly
1713  * be followed by a single name or by a list of names
1714  * of the category.
1715  */
1716  virtual QCString trSubprogram(bool /* first_capital */, bool /* singular */)
1717  {
1718  QCString result("子程式");
1719  return result;
1720  }
1721 
1722  /*! C# Type Constraint list */
1723  virtual QCString trTypeConstraints()
1724  {
1725  return "型別限制條件";
1726  }
1727 
1728 //////////////////////////////////////////////////////////////////////////
1729 // new since 1.6.0 (mainly for the new search engine)
1730 //////////////////////////////////////////////////////////////////////////
1731 
1732  /*! directory relation for \a name */
1733  virtual QCString trDirRelation(const QCString &name)
1734  {
1735  return QCString(name)+" 關連";
1736  }
1737 
1738  /*! Loading message shown when loading search results */
1739  virtual QCString trLoading()
1740  {
1741  return "載入中...";
1742  }
1743 
1744  /*! Label used for search results in the global namespace */
1745  virtual QCString trGlobalNamespace()
1746  {
1747  return "全域命名空間";
1748  }
1749 
1750  /*! Message shown while searching */
1751  virtual QCString trSearching()
1752  {
1753  return "搜尋中...";
1754  }
1755 
1756  /*! Text shown when no search results are found */
1757  virtual QCString trNoMatches()
1758  {
1759  return "無符合項目";
1760  }
1761 
1762 //////////////////////////////////////////////////////////////////////////
1763 // new since 1.6.3 (missing items for the directory pages)
1764 //////////////////////////////////////////////////////////////////////////
1765 
1766  /*! when clicking a directory dependency label, a page with a
1767  * table is shown. The heading for the first column mentions the
1768  * source file that has a relation to another file.
1769  */
1770  virtual QCString trFileIn(const QCString &name)
1771  {
1772  return (QCString)"檔案在"+name;
1773  }
1775  /*! when clicking a directory dependency label, a page with a
1776  * table is shown. The heading for the second column mentions the
1777  * destination file that is included.
1778  */
1779  virtual QCString trIncludesFileIn(const QCString &name)
1780  {
1781  return (QCString)"含入檔案在"+name;
1782  }
1783 
1784  /** Compiles a date string.
1785  * @param year Year in 4 digits
1786  * @param month Month of the year: 1=January
1787  * @param day Day of the Month: 1..31
1788  * @param dayOfWeek Day of the week: 1=Monday..7=Sunday
1789  * @param hour Hour of the day: 0..23
1790  * @param minutes Minutes in the hour: 0..59
1791  * @param seconds Seconds within the minute: 0..59
1792  * @param includeTime Include time in the result string?
1793  */
1794  virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
1795  int hour,int minutes,int seconds,
1796  bool includeTime)
1797  {
1798  static const char *days[] = { "星期一","星期二","星期三","星期四","星期五","星期六","星期日" };
1799  static const char *months[] = { "1","2","3","4","5","6","7","8","9","10","11","12" };
1800  QCString sdate;
1801  sdate.sprintf("%d年%s月%d日 %s",year,months[month-1],day,days[dayOfWeek-1]);
1802  if (includeTime)
1803  {
1804  QCString stime;
1805  stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds);
1806  sdate+=stime;
1807  }
1808  return sdate;
1809  }
1810 
1811 //////////////////////////////////////////////////////////////////////////
1812 // new since 1.7.5
1813 //////////////////////////////////////////////////////////////////////////
1814 
1815  /*! Header for the page with bibliographic citations */
1816  virtual QCString trCiteReferences()
1817  { return "參考文獻資料"; }
1818 
1819  /*! Text for copyright paragraph */
1820  virtual QCString trCopyright()
1821  { return "版權聲明"; }
1822 
1823  /*! Header for the graph showing the directory dependencies */
1824  virtual QCString trDirDepGraph(const QCString &name)
1825  { return QCString(name)+"的目錄關連圖"+":"; }
1826 
1827 //////////////////////////////////////////////////////////////////////////
1828 // new since 1.8.0
1829 //////////////////////////////////////////////////////////////////////////
1830 
1831  /*! Detail level selector shown for hierarchical indices */
1832  virtual QCString trDetailLevel()
1833  { return "詳細程度"; }
1834 
1835  /*! Section header for list of template parameters */
1836  virtual QCString trTemplateParameters()
1837  { return "樣版參數"; }
1838 
1839  /*! Used in dot graph when UML_LOOK is enabled and there are many fields */
1840  virtual QCString trAndMore(const QCString &number)
1841  { return "及 "+number+" 個更多..."; }
1842 
1843  /*! Used file list for a Java enum */
1844  virtual QCString trEnumGeneratedFromFiles(bool single)
1845  { QCString result = "此列舉型態的文件是由下列檔案所產生";
1846  if (!single) result += "";
1847  result+=":";
1848  return result;
1849  }
1850 
1851  /*! Header of a Java enum page (Java enums are represented as classes). */
1852  virtual QCString trEnumReference(const QCString &name)
1853  { return QCString(name)+" 列舉型態參考"; }
1854 
1855  /*! Used for a section containing inherited members */
1856  virtual QCString trInheritedFrom(const QCString &members,const QCString &what)
1857  { return QCString(members)+" 繼承自 "+what; }
1858 
1859  /*! Header of the sections with inherited members specific for the
1860  * base class(es)
1861  */
1863  { return "額外的繼承成員"; }
1864 
1865 //////////////////////////////////////////////////////////////////////////
1866 // new since 1.8.2
1867 //////////////////////////////////////////////////////////////////////////
1868 
1869  /*! Used as a tooltip for the toggle button that appears in the
1870  * navigation tree in the HTML output when GENERATE_TREEVIEW is
1871  * enabled. This tooltip explains the meaning of the button.
1872  */
1874  {
1875  QCString opt = enable ? "啟用" : "停用";
1876  return "點擊 "+opt+" 面板進行同步";
1877  }
1878 
1879  /*! Used in a method of an Objective-C class that is declared in a
1880  * a category. Note that the @1 marker is required and is replaced
1881  * by a link.
1882  */
1883  virtual QCString trProvidedByCategory()
1884  {
1885  return "由 @0 分類所提供.";
1886  }
1887 
1888  /*! Used in a method of an Objective-C category that extends a class.
1889  * Note that the @1 marker is required and is replaced by a link to
1890  * the class method.
1891  */
1892  virtual QCString trExtendsClass()
1893  {
1894  return "延伸 @0 類別 .";
1895  }
1896 
1897  /*! Used as the header of a list of class methods in Objective-C.
1898  * These are similar to static public member functions in C++.
1899  */
1901  {
1902  return "類別方法";
1903  }
1904 
1905  /*! Used as the header of a list of instance methods in Objective-C.
1906  * These are similar to public member functions in C++.
1907  */
1908  virtual QCString trInstanceMethods()
1909  {
1910  return "實體方法";
1911  }
1912 
1913  /*! Used as the header of the member functions of an Objective-C class.
1914  */
1916  {
1917  return "方法文件";
1918  }
1919 
1920 //////////////////////////////////////////////////////////////////////////
1921 // new since 1.8.4
1922 //////////////////////////////////////////////////////////////////////////
1923 
1924  /** old style UNO IDL services: implemented interfaces */
1926  { return "導出介面"; }
1927 
1928  /** old style UNO IDL services: inherited services */
1929  virtual QCString trServices()
1930  { return "引入的服務"; }
1931 
1932  /** UNO IDL constant groups */
1933  virtual QCString trConstantGroups()
1934  { return "常數群組"; }
1935 
1936  /** UNO IDL constant groups */
1937  virtual QCString trConstantGroupReference(const QCString &namespaceName)
1938  {
1939  QCString result=namespaceName;
1940  result+="常數群組參考";
1941  return result;
1942  }
1943  /** UNO IDL service page title */
1944  virtual QCString trServiceReference(const QCString &sName)
1945  {
1946  QCString result=(QCString)sName;
1947  result+="服務參考";
1948  return result;
1949  }
1950  /** UNO IDL singleton page title */
1951  virtual QCString trSingletonReference(const QCString &sName)
1952  {
1953  QCString result=(QCString)sName;
1954  result+="Singleton參考";
1955  return result;
1956  }
1957  /** UNO IDL service page */
1959  {
1960  // single is true implies a single file
1961  QCString result=(QCString)"本服務的文件由以下的檔案"
1962  "所產生";
1963  result+=":";
1964  return result;
1965  }
1966  /** UNO IDL singleton page */
1968  {
1969  // single is true implies a single file
1970  QCString result=(QCString)"本singleton的文件由下面的檔案"
1971  "所產生";
1972  result+=":";
1973  return result;
1974  }
1976 };
1977 
1978 #endif
TranslatorChinesetraditional::trPropertyDocumentation
virtual QCString trPropertyDocumentation()
Definition: translator_tw.h:1115
getDotImageExtension
QCString getDotImageExtension()
Definition: util.cpp:7032
TranslatorChinesetraditional::trSince
virtual QCString trSince()
Definition: translator_tw.h:1005
TranslatorChinesetraditional::trCode
virtual QCString trCode()
Definition: translator_tw.h:896
TranslatorChinesetraditional::trPrivateSlots
virtual QCString trPrivateSlots()
Definition: translator_tw.h:678
TranslatorChinesetraditional::trFileListDescription
virtual QCString trFileListDescription(bool extractAll)
Definition: translator_tw.h:265
TranslatorChinesetraditional::trServiceGeneratedFromFiles
virtual QCString trServiceGeneratedFromFiles(bool)
UNO IDL service page
Definition: translator_tw.h:1975
TranslatorChinesetraditional::trInheritedFrom
virtual QCString trInheritedFrom(const QCString &members, const QCString &what)
Definition: translator_tw.h:1873
TranslatorChinesetraditional::trDocumentation
virtual QCString trDocumentation()
Definition: translator_tw.h:368
TranslatorChinesetraditional::trExamples
virtual QCString trExamples()
Definition: translator_tw.h:252
TranslatorChinesetraditional::trClassHierarchyDescription
virtual QCString trClassHierarchyDescription()
Definition: translator_tw.h:260
TranslatorChinesetraditional::trExceptions
virtual QCString trExceptions()
Definition: translator_tw.h:580
TranslatorChinesetraditional::trDefineValue
virtual QCString trDefineValue()
Definition: translator_tw.h:1158
TranslatorChinesetraditional::trCompoundListDescriptionFortran
virtual QCString trCompoundListDescriptionFortran()
Definition: translator_tw.h:1566
TranslatorChinesetraditional::trMemberFunctionDocumentationFortran
virtual QCString trMemberFunctionDocumentationFortran()
Definition: translator_tw.h:1554
TranslatorChinesetraditional::trInheritsList
virtual QCString trInheritsList(int numEntries)
Definition: translator_tw.h:711
TranslatorChinesetraditional::trVariableDocumentation
virtual QCString trVariableDocumentation()
Definition: translator_tw.h:516
TranslatorChinesetraditional::trNamespaceListDescription
virtual QCString trNamespaceListDescription(bool extractAll)
Definition: translator_tw.h:596
ClassDef::Union
@ Union
Definition: classdef.h:109
TranslatorChinesetraditional::trRelatedPages
virtual QCString trRelatedPages()
Definition: translator_tw.h:248
TranslatorChinesetraditional::trConstantGroupReference
virtual QCString trConstantGroupReference(const QCString &namespaceName)
UNO IDL constant groups
Definition: translator_tw.h:1954
TranslatorChinesetraditional::trPackageMembers
virtual QCString trPackageMembers()
Definition: translator_tw.h:1386
TranslatorChinesetraditional::trSubprogramDocumentation
virtual QCString trSubprogramDocumentation()
Definition: translator_tw.h:1611
TranslatorChinesetraditional::trGeneratedFromFiles
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool)
Definition: translator_tw.h:785
TranslatorChinesetraditional::trClasses
virtual QCString trClasses()
Definition: translator_tw.h:1125
TranslatorChinesetraditional::trTest
virtual QCString trTest()
Definition: translator_tw.h:1095
TranslatorChinesetraditional::trFileDocumentation
virtual QCString trFileDocumentation()
Definition: translator_tw.h:428
TranslatorChinesetraditional::latexFontenc
virtual QCString latexFontenc()
Definition: translator_tw.h:94
TranslatorChinesetraditional::trCompoundMembersFortran
virtual QCString trCompoundMembersFortran()
Definition: translator_tw.h:1562
TranslatorChinesetraditional::trStaticPackageMembers
virtual QCString trStaticPackageMembers()
Definition: translator_tw.h:1393
TranslatorChinesetraditional::trDefines
virtual QCString trDefines()
Definition: translator_tw.h:450
TranslatorChinesetraditional::trIncludingInheritedMembers
virtual QCString trIncludingInheritedMembers()
Definition: translator_tw.h:167
TranslatorChinesetraditional::trTypedefDocumentation
virtual QCString trTypedefDocumentation()
Definition: translator_tw.h:492
TranslatorAdapter_1_8_15
Definition: translator_adapter.h:82
TranslatorChinesetraditional::trClass
virtual QCString trClass(bool, bool)
Definition: translator_tw.h:1231
TranslatorChinesetraditional::trDate
virtual QCString trDate()
Definition: translator_tw.h:564
TranslatorChinesetraditional::trModulesList
virtual QCString trModulesList()
Definition: translator_tw.h:1621
TranslatorChinesetraditional::trPostcondition
virtual QCString trPostcondition()
Definition: translator_tw.h:881
TranslatorChinesetraditional::trProperties
virtual QCString trProperties()
Definition: translator_tw.h:1110
generateMarker
QCString generateMarker(int id)
Definition: util.cpp:284
TranslatorChinesetraditional::trPackageAttribs
virtual QCString trPackageAttribs()
Definition: translator_tw.h:1400
QCString::isEmpty
bool isEmpty() const
Returns TRUE iff the string is empty
Definition: qcstring.h:144
TranslatorChinesetraditional::trDirDescription
virtual QCString trDirDescription()
Definition: translator_tw.h:1508
TranslatorChinesetraditional::trDirRelation
virtual QCString trDirRelation(const QCString &name)
Definition: translator_tw.h:1750
ClassDef::CompoundType
CompoundType
The various compound types
Definition: classdef.h:107
TranslatorChinesetraditional::trDefineDocumentation
virtual QCString trDefineDocumentation()
Definition: translator_tw.h:486
TranslatorChinesetraditional::trSearch
virtual QCString trSearch()
Definition: translator_tw.h:256
TranslatorChinesetraditional::trExamplesDescription
virtual QCString trExamplesDescription()
Definition: translator_tw.h:353
TranslatorChinesetraditional::trDirectories
virtual QCString trDirectories()
Definition: translator_tw.h:1502
TranslatorChinesetraditional::trGotoSourceCode
virtual QCString trGotoSourceCode()
Definition: translator_tw.h:866
TranslatorChinesetraditional::trMemberTypedefDocumentation
virtual QCString trMemberTypedefDocumentation()
Definition: translator_tw.h:126
TranslatorChinesetraditional::trPageAbbreviation
virtual QCString trPageAbbreviation()
Definition: translator_tw.h:821
TranslatorChinesetraditional::trGeneratedFromFilesFortran
virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool)
Definition: translator_tw.h:1701
ClassDef::Interface
@ Interface
Definition: classdef.h:110
TranslatorChinesetraditional::trGraphicalHierarchy
virtual QCString trGraphicalHierarchy()
Definition: translator_tw.h:900
TranslatorChinesetraditional::trDeprecated
virtual QCString trDeprecated()
Definition: translator_tw.h:841
TranslatorChinesetraditional::trPanelSynchronisationTooltip
virtual QCString trPanelSynchronisationTooltip(bool enable)
Definition: translator_tw.h:1890
TranslatorChinesetraditional::trGeneratedBy
virtual QCString trGeneratedBy()
Definition: translator_tw.h:584
TranslatorChinesetraditional::trRTFTableOfContents
virtual QCString trRTFTableOfContents()
Definition: translator_tw.h:1339
TranslatorChinesetraditional::trCollaborationDiagram
virtual QCString trCollaborationDiagram(const QCString &clName)
Definition: translator_tw.h:851
TranslatorChinesetraditional::trThisIsTheListOfAllMembers
virtual QCString trThisIsTheListOfAllMembers()
Definition: translator_tw.h:163
TranslatorChinesetraditional::trPage
virtual QCString trPage(bool, bool)
Definition: translator_tw.h:1267
TranslatorChinesetraditional::trModulesListDescription
virtual QCString trModulesListDescription(bool extractAll)
Definition: translator_tw.h:1625
TranslatorChinesetraditional::trConstantGroups
virtual QCString trConstantGroups()
UNO IDL constant groups
Definition: translator_tw.h:1950
TranslatorChinesetraditional::trStaticPublicAttribs
virtual QCString trStaticPublicAttribs()
Definition: translator_tw.h:940
TranslatorChinesetraditional::trInclDepGraph
virtual QCString trInclDepGraph(const QCString &fName)
Definition: translator_tw.h:856
TranslatorChinesetraditional::trNamespace
virtual QCString trNamespace(bool, bool)
Definition: translator_tw.h:1249
TranslatorChinesetraditional::trGotoTextualHierarchy
virtual QCString trGotoTextualHierarchy()
Definition: translator_tw.h:908
TranslatorChinesetraditional::trPackageTypes
virtual QCString trPackageTypes()
Definition: translator_tw.h:1379
TranslatorChinesetraditional::trDirIndex
virtual QCString trDirIndex()
Definition: translator_tw.h:1490
TranslatorChinesetraditional::trLegend
virtual QCString trLegend()
Definition: translator_tw.h:1085
TranslatorChinesetraditional::trEnumerationTypeDocumentation
virtual QCString trEnumerationTypeDocumentation()
Definition: translator_tw.h:498
TranslatorChinesetraditional::trSourceFile
virtual QCString trSourceFile(QCString &filename)
Definition: translator_tw.h:1478
TranslatorChinesetraditional::trMemberEnumerationDocumentation
virtual QCString trMemberEnumerationDocumentation()
Definition: translator_tw.h:130
TranslatorChinesetraditional::trRelatedFunctionDocumentation
virtual QCString trRelatedFunctionDocumentation()
Definition: translator_tw.h:617
TranslatorChinesetraditional::trModule
virtual QCString trModule(bool, bool)
Definition: translator_tw.h:1693
TranslatorChinesetraditional::trFile
virtual QCString trFile(bool, bool)
Definition: translator_tw.h:1240
TranslatorChinesetraditional::trPublicAttribs
virtual QCString trPublicAttribs()
Definition: translator_tw.h:929
TranslatorChinesetraditional::trNoMatches
virtual QCString trNoMatches()
Definition: translator_tw.h:1774
TranslatorChinesetraditional::trParameters
virtual QCString trParameters()
Definition: translator_tw.h:576
TranslatorChinesetraditional::latexDocumentPre
virtual QCString latexDocumentPre()
Definition: translator_tw.h:98
TranslatorChinesetraditional::trNamespaceIndex
virtual QCString trNamespaceIndex()
Definition: translator_tw.h:759
TranslatorChinesetraditional::trStaticProtectedAttribs
virtual QCString trStaticProtectedAttribs()
Definition: translator_tw.h:952
TranslatorChinesetraditional::trDetailLevel
virtual QCString trDetailLevel()
Definition: translator_tw.h:1849
TranslatorChinesetraditional::trPackageList
virtual QCString trPackageList()
Definition: translator_tw.h:1142
TranslatorChinesetraditional::trCompounds
virtual QCString trCompounds()
Definition: translator_tw.h:522
TranslatorChinesetraditional::trAuthor
virtual QCString trAuthor(bool, bool)
Definition: translator_tw.h:1296
TranslatorChinesetraditional::trEnumName
virtual QCString trEnumName()
Definition: translator_tw.h:181
TranslatorChinesetraditional::trTypeDocumentation
virtual QCString trTypeDocumentation()
Definition: translator_tw.h:1599
TranslatorChinesetraditional::trNamespaceReference
virtual QCString trNamespaceReference(const QCString &namespaceName)
Definition: translator_tw.h:655
TranslatorChinesetraditional::trCompoundIndexFortran
virtual QCString trCompoundIndexFortran()
Definition: translator_tw.h:1593
ClassDef::Class
@ Class
Definition: classdef.h:107
TranslatorChinesetraditional::trLegendTitle
virtual QCString trLegendTitle()
Definition: translator_tw.h:1015
TranslatorChinesetraditional::trDir
virtual QCString trDir(bool, bool)
Definition: translator_tw.h:1521
TranslatorChinesetraditional::trPrivateAttribs
virtual QCString trPrivateAttribs()
Definition: translator_tw.h:960
TranslatorChinesetraditional::trProtectedAttribs
virtual QCString trProtectedAttribs()
Definition: translator_tw.h:948
TranslatorChinesetraditional::trFileReference
virtual QCString trFileReference(const QCString &fileName)
Definition: translator_tw.h:647
TranslatorChinesetraditional::trTemplateParameters
virtual QCString trTemplateParameters()
Definition: translator_tw.h:1853
TranslatorChinesetraditional::trModules
virtual QCString trModules()
Definition: translator_tw.h:197
TranslatorChinesetraditional::trOverloadText
virtual QCString trOverloadText()
Definition: translator_tw.h:1533
TranslatorChinesetraditional::trGeneratedAt
virtual QCString trGeneratedAt(const QCString &date, const QCString &projName)
Definition: translator_tw.h:537
TranslatorChinesetraditional::trProtectedMembers
virtual QCString trProtectedMembers()
Definition: translator_tw.h:670
TranslatorChinesetraditional::trMainPage
virtual QCString trMainPage()
Definition: translator_tw.h:815
TranslatorChinesetraditional::trSubprograms
virtual QCString trSubprograms()
Definition: translator_tw.h:1605
TranslatorChinesetraditional::trRelatedFunctions
virtual QCString trRelatedFunctions()
Definition: translator_tw.h:114
TranslatorChinesetraditional::trNamespaceList
virtual QCString trNamespaceList()
Definition: translator_tw.h:592
TranslatorChinesetraditional::trReferences
virtual QCString trReferences()
Definition: translator_tw.h:1307
TranslatorChinesetraditional::trVariables
virtual QCString trVariables()
Definition: translator_tw.h:474
TranslatorChinesetraditional::trRelatedPagesDescription
virtual QCString trRelatedPagesDescription()
Definition: translator_tw.h:357
TranslatorChinesetraditional::trForInternalUseOnly
virtual QCString trForInternalUseOnly()
Definition: translator_tw.h:552
TranslatorChinesetraditional::trModuleReference
virtual QCString trModuleReference(const QCString &namespaceName)
Definition: translator_tw.h:1655
TranslatorChinesetraditional::trEnumerationValueDocumentation
virtual QCString trEnumerationValueDocumentation()
Definition: translator_tw.h:504
TranslatorChinesetraditional::trDateTime
virtual QCString trDateTime(int year, int month, int day, int dayOfWeek, int hour, int minutes, int seconds, bool includeTime)
Compiles a date string.
Definition: translator_tw.h:1811
TranslatorChinesetraditional::trAll
virtual QCString trAll()
Definition: translator_tw.h:1419
TranslatorChinesetraditional::trEnumValue
virtual QCString trEnumValue()
Definition: translator_tw.h:185
TranslatorChinesetraditional::trAttention
virtual QCString trAttention()
Definition: translator_tw.h:996
TranslatorChinesetraditional::trEnumerations
virtual QCString trEnumerations()
Definition: translator_tw.h:462
TranslatorChinesetraditional::trCompoundIndex
virtual QCString trCompoundIndex()
Definition: translator_tw.h:386
TranslatorChinesetraditional::trReimplementedInList
virtual QCString trReimplementedInList(int numEntries)
Definition: translator_tw.h:735
TranslatorChinesetraditional::trInheritedByList
virtual QCString trInheritedByList(int numEntries)
Definition: translator_tw.h:719
TranslatorChinesetraditional::trPackages
virtual QCString trPackages()
Definition: translator_tw.h:1152
TranslatorChinesetraditional::trModuleIndex
virtual QCString trModuleIndex()
Definition: translator_tw.h:374
TranslatorChinesetraditional::trServiceReference
virtual QCString trServiceReference(const QCString &sName)
UNO IDL service page title
Definition: translator_tw.h:1961
TranslatorChinesetraditional::trPrecondition
virtual QCString trPrecondition()
Definition: translator_tw.h:876
TranslatorChinesetraditional::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_tw.h:1207
TranslatorChinesetraditional::trLegendDocs
virtual QCString trLegendDocs()
Definition: translator_tw.h:1022
TranslatorChinesetraditional::trSeeAlso
virtual QCString trSeeAlso()
Definition: translator_tw.h:572
TranslatorChinesetraditional::trMemberFunctionDocumentation
virtual QCString trMemberFunctionDocumentation()
Definition: translator_tw.h:134
TranslatorChinesetraditional::trEventDocumentation
virtual QCString trEventDocumentation()
Definition: translator_tw.h:1368
TranslatorChinesetraditional::trInitialValue
virtual QCString trInitialValue()
Definition: translator_tw.h:891
TranslatorChinesetraditional::trGlobal
virtual QCString trGlobal(bool, bool)
Definition: translator_tw.h:1285
TranslatorChinesetraditional::trNamespaces
virtual QCString trNamespaces()
Definition: translator_tw.h:775
TranslatorChinesetraditional::trGotoGraphicalHierarchy
virtual QCString trGotoGraphicalHierarchy()
Definition: translator_tw.h:904
TranslatorChinesetraditional::trStaticPackageAttribs
virtual QCString trStaticPackageAttribs()
Definition: translator_tw.h:1407
TranslatorChinesetraditional::trFileList
virtual QCString trFileList()
Definition: translator_tw.h:218
TranslatorChinesetraditional::trType
virtual QCString trType(bool, bool)
Definition: translator_tw.h:1724
TranslatorChinesetraditional::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_tw.h:1216
TranslatorChinesetraditional::trImplementedFromList
virtual QCString trImplementedFromList(int numEntries)
Definition: translator_tw.h:1319
TranslatorChinesetraditional::trVersion
virtual QCString trVersion()
Definition: translator_tw.h:560
TranslatorChinesetraditional::trSearching
virtual QCString trSearching()
Definition: translator_tw.h:1768
TranslatorChinesetraditional::trDirDepGraph
virtual QCString trDirDepGraph(const QCString &name)
Definition: translator_tw.h:1841
TranslatorChinesetraditional::trWriteList
virtual QCString trWriteList(int numEntries)
Definition: translator_tw.h:686
TranslatorChinesetraditional::trGlobalNamespace
virtual QCString trGlobalNamespace()
Definition: translator_tw.h:1762
TranslatorChinesetraditional::trMethodDocumentation
virtual QCString trMethodDocumentation()
Definition: translator_tw.h:1932
TranslatorChinesetraditional::trMember
virtual QCString trMember(bool, bool)
Definition: translator_tw.h:1276
TranslatorChinesetraditional::trPublicTypes
virtual QCString trPublicTypes()
Definition: translator_tw.h:925
TranslatorChinesetraditional::trDirDocumentation
virtual QCString trDirDocumentation()
Definition: translator_tw.h:1496
TranslatorChinesetraditional::trCopyright
virtual QCString trCopyright()
Definition: translator_tw.h:1837
TranslatorChinesetraditional::trCompoundReferenceFortran
virtual QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_tw.h:1634
TranslatorChinesetraditional::trDefinedIn
virtual QCString trDefinedIn()
Definition: translator_tw.h:189
TranslatorChinesetraditional::trPublicMembers
virtual QCString trPublicMembers()
Definition: translator_tw.h:662
TranslatorChinesetraditional::trMemberList
virtual QCString trMemberList()
Definition: translator_tw.h:159
TranslatorChinesetraditional::trTodoList
virtual QCString trTodoList()
Definition: translator_tw.h:979
TranslatorChinesetraditional::trEnumGeneratedFromFiles
virtual QCString trEnumGeneratedFromFiles(bool single)
Definition: translator_tw.h:1861
ClassDef::Category
@ Category
Definition: classdef.h:112
TranslatorChinesetraditional::trIncludesFileIn
virtual QCString trIncludesFileIn(const QCString &name)
Definition: translator_tw.h:1796
TranslatorChinesetraditional::trClassMethods
virtual QCString trClassMethods()
Definition: translator_tw.h:1917
ClassDef::Struct
@ Struct
Definition: classdef.h:108
TranslatorChinesetraditional::trPublicSlots
virtual QCString trPublicSlots()
Definition: translator_tw.h:664
TranslatorChinesetraditional::trCallGraph
virtual QCString trCallGraph()
Definition: translator_tw.h:1424
TranslatorChinesetraditional::trStaticPrivateAttribs
virtual QCString trStaticPrivateAttribs()
Definition: translator_tw.h:964
TranslatorChinesetraditional::trInstanceMethods
virtual QCString trInstanceMethods()
Definition: translator_tw.h:1925
TranslatorChinesetraditional::trReimplementedFromList
virtual QCString trReimplementedFromList(int numEntries)
Definition: translator_tw.h:727
TranslatorChinesetraditional::trModulesDescription
virtual QCString trModulesDescription()
Definition: translator_tw.h:361
TranslatorChinesetraditional::trSearchMatches
virtual QCString trSearchMatches()
Definition: translator_tw.h:1467
TranslatorChinesetraditional::trSearchResultsTitle
virtual QCString trSearchResultsTitle()
Definition: translator_tw.h:1436
TranslatorChinesetraditional::trRelatedSubscript
virtual QCString trRelatedSubscript()
Definition: translator_tw.h:118
TranslatorChinesetraditional::trCompoundReference
virtual QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_tw.h:625
TranslatorChinesetraditional::trTypedefs
virtual QCString trTypedefs()
Definition: translator_tw.h:456
TranslatorChinesetraditional::trDeprecatedList
virtual QCString trDeprecatedList()
Definition: translator_tw.h:1351
TranslatorChinesetraditional::trFunctions
virtual QCString trFunctions()
Definition: translator_tw.h:468
TranslatorChinesetraditional::trBugList
virtual QCString trBugList()
Definition: translator_tw.h:1173
TranslatorChinesetraditional::trGotoDocumentation
virtual QCString trGotoDocumentation()
Definition: translator_tw.h:871
TranslatorChinesetraditional::trTypeConstraints
virtual QCString trTypeConstraints()
Definition: translator_tw.h:1740
TranslatorChinesetraditional::trDirReference
virtual QCString trDirReference(const QCString &dirName)
Definition: translator_tw.h:1515
TranslatorChinesetraditional::trClassHierarchy
virtual QCString trClassHierarchy()
Definition: translator_tw.h:201
TranslatorChinesetraditional::trNote
virtual QCString trNote()
Definition: translator_tw.h:921
TranslatorChinesetraditional::trLoading
virtual QCString trLoading()
Definition: translator_tw.h:1756
TranslatorChinesetraditional::latexLanguageSupportCommand
virtual QCString latexLanguageSupportCommand()
Definition: translator_tw.h:90
TranslatorChinesetraditional::trPackage
virtual QCString trPackage(const QCString &name)
Definition: translator_tw.h:1137
TranslatorChinesetraditional::trGroup
virtual QCString trGroup(bool, bool)
Definition: translator_tw.h:1258
TranslatorChinesetraditional::trReturns
virtual QCString trReturns()
Definition: translator_tw.h:568
TranslatorChinesetraditional::trCompoundListDescription
virtual QCString trCompoundListDescription()
Definition: translator_tw.h:274
TranslatorChinesetraditional::trMore
virtual QCString trMore()
Definition: translator_tw.h:151
TranslatorChinesetraditional::trDefinedAtLineInSourceFile
virtual QCString trDefinedAtLineInSourceFile()
Definition: translator_tw.h:828
TranslatorChinesetraditional::trPackageListDescription
virtual QCString trPackageListDescription()
Definition: translator_tw.h:1147
TranslatorChinesetraditional::trStaticPrivateMembers
virtual QCString trStaticPrivateMembers()
Definition: translator_tw.h:680
TranslatorChinesetraditional::trNamespaceDocumentation
virtual QCString trNamespaceDocumentation()
Definition: translator_tw.h:765
TranslatorChinesetraditional::trDetailedDescription
virtual QCString trDetailedDescription()
Definition: translator_tw.h:122
Config_getBool
#define Config_getBool(name)
Definition: config.h:33
ClassDef::Protocol
@ Protocol
Definition: classdef.h:111
TranslatorChinesetraditional::trFileMembersDescription
virtual QCString trFileMembersDescription(bool extractAll)
Definition: translator_tw.h:331
TranslatorChinesetraditional::trSubprogram
virtual QCString trSubprogram(bool, bool)
Definition: translator_tw.h:1733
TranslatorChinesetraditional::trTestList
virtual QCString trTestList()
Definition: translator_tw.h:1100
TranslatorChinesetraditional::trAdditionalInheritedMembers
virtual QCString trAdditionalInheritedMembers()
Definition: translator_tw.h:1879
TranslatorChinesetraditional::trPrivateMembers
virtual QCString trPrivateMembers()
Definition: translator_tw.h:676
TranslatorChinesetraditional::trSearchResults
virtual QCString trSearchResults(int numDocuments)
Definition: translator_tw.h:1448
TranslatorChinesetraditional::trFileIn
virtual QCString trFileIn(const QCString &name)
Definition: translator_tw.h:1787
TranslatorChinesetraditional::trConstructorDocumentation
virtual QCString trConstructorDocumentation()
Definition: translator_tw.h:861
TranslatorChinesetraditional::trReturnValues
virtual QCString trReturnValues()
Definition: translator_tw.h:810
TranslatorChinesetraditional::trClassDocumentation
virtual QCString trClassDocumentation()
Definition: translator_tw.h:413
TranslatorChinesetraditional::trCompoundMembers
virtual QCString trCompoundMembers()
Definition: translator_tw.h:222
TranslatorChinesetraditional::trNamespaceMemberDescription
virtual QCString trNamespaceMemberDescription(bool extractAll)
Definition: translator_tw.h:745
TranslatorChinesetraditional::trEvents
virtual QCString trEvents()
Definition: translator_tw.h:1363
TranslatorChinesetraditional::trStaticPublicMembers
virtual QCString trStaticPublicMembers()
Definition: translator_tw.h:668
TranslatorChinesetraditional::trPageDocumentation
virtual QCString trPageDocumentation()
Definition: translator_tw.h:440
TranslatorChinesetraditional::trCompoundListFortran
virtual QCString trCompoundListFortran()
Definition: translator_tw.h:1558
TranslatorChinesetraditional::trHierarchicalIndex
virtual QCString trHierarchicalIndex()
Definition: translator_tw.h:380
TranslatorChinesetraditional::trInvariant
virtual QCString trInvariant()
Definition: translator_tw.h:886
TranslatorChinesetraditional::trMemberDataDocumentation
virtual QCString trMemberDataDocumentation()
Definition: translator_tw.h:138
TranslatorChinesetraditional::trCompoundMembersDescription
virtual QCString trCompoundMembersDescription(bool extractAll)
Definition: translator_tw.h:289
TranslatorChinesetraditional::trProtectedSlots
virtual QCString trProtectedSlots()
Definition: translator_tw.h:672
TranslatorChinesetraditional::trWarning
virtual QCString trWarning()
Definition: translator_tw.h:556
TranslatorChinesetraditional::trReferenceManual
virtual QCString trReferenceManual()
Definition: translator_tw.h:444
TranslatorChinesetraditional::trRemarks
virtual QCString trRemarks()
Definition: translator_tw.h:992
TranslatorChinesetraditional::trInclByDepGraph
virtual QCString trInclByDepGraph()
Definition: translator_tw.h:1000
TranslatorChinesetraditional
Definition: translator_tw.h:44
TranslatorChinesetraditional::trExampleDocumentation
virtual QCString trExampleDocumentation()
Definition: translator_tw.h:434
TranslatorChinesetraditional::trListOfAllMembers
virtual QCString trListOfAllMembers()
Definition: translator_tw.h:155
TranslatorChinesetraditional::trSingletonReference
virtual QCString trSingletonReference(const QCString &sName)
UNO IDL singleton page title
Definition: translator_tw.h:1968
TranslatorChinesetraditional::idLanguage
virtual QCString idLanguage()
Definition: translator_tw.h:73
TranslatorChinesetraditional::trEnumerationValues
virtual QCString trEnumerationValues()
Definition: translator_tw.h:480
TranslatorChinesetraditional::trModuleDocumentation
virtual QCString trModuleDocumentation()
Definition: translator_tw.h:407
TranslatorChinesetraditional::trISOLang
virtual QCString trISOLang()
Definition: translator_tw.h:106
TranslatorChinesetraditional::trDataTypes
virtual QCString trDataTypes()
Definition: translator_tw.h:1617
TranslatorChinesetraditional::trRTFGeneralIndex
virtual QCString trRTFGeneralIndex()
Definition: translator_tw.h:1222
TranslatorChinesetraditional::trFunctionDocumentation
virtual QCString trFunctionDocumentation()
Definition: translator_tw.h:510
TranslatorChinesetraditional::trCompoundMembersDescriptionFortran
virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
Definition: translator_tw.h:1570
TranslatorChinesetraditional::trPageIndex
virtual QCString trPageIndex()
Definition: translator_tw.h:912
TranslatorChinesetraditional::latexDocumentPost
virtual QCString latexDocumentPost()
Definition: translator_tw.h:102
TranslatorChinesetraditional::trReferencedBy
virtual QCString trReferencedBy()
Definition: translator_tw.h:988
TranslatorChinesetraditional::trModulesMembers
virtual QCString trModulesMembers()
Definition: translator_tw.h:1663
TranslatorChinesetraditional::trFileMembers
virtual QCString trFileMembers()
Definition: translator_tw.h:235
TranslatorChinesetraditional::trImplementedInList
virtual QCString trImplementedInList(int numEntries)
Definition: translator_tw.h:1327
TranslatorChinesetraditional::trStaticProtectedMembers
virtual QCString trStaticProtectedMembers()
Definition: translator_tw.h:674
TranslatorChinesetraditional::trCompoundList
virtual QCString trCompoundList()
Definition: translator_tw.h:205
TranslatorChinesetraditional::trNamespaceMembers
virtual QCString trNamespaceMembers()
Definition: translator_tw.h:741
TranslatorChinesetraditional::trGeneratedAutomatically
virtual QCString trGeneratedAutomatically(const QCString &s)
Definition: translator_tw.h:173
TranslatorChinesetraditional::trExtendsClass
virtual QCString trExtendsClass()
Definition: translator_tw.h:1909
ClassDef::Exception
@ Exception
Definition: classdef.h:113
TranslatorChinesetraditional::trEnumReference
virtual QCString trEnumReference(const QCString &name)
Definition: translator_tw.h:1869
TranslatorChinesetraditional::trPrivateTypes
virtual QCString trPrivateTypes()
Definition: translator_tw.h:956
TranslatorChinesetraditional::trDefinedInSourceFile
virtual QCString trDefinedInSourceFile()
Definition: translator_tw.h:832
TranslatorChinesetraditional::trAndMore
virtual QCString trAndMore(const QCString &number)
Definition: translator_tw.h:1857
TranslatorChinesetraditional::trProvidedByCategory
virtual QCString trProvidedByCategory()
Definition: translator_tw.h:1900
TranslatorChinesetraditional::trBug
virtual QCString trBug()
Definition: translator_tw.h:1168
TranslatorChinesetraditional::trServices
virtual QCString trServices()
old style UNO IDL services: inherited services
Definition: translator_tw.h:1946
TranslatorChinesetraditional::trModulesIndex
virtual QCString trModulesIndex()
Definition: translator_tw.h:1686
TranslatorChinesetraditional::trProtectedTypes
virtual QCString trProtectedTypes()
Definition: translator_tw.h:944
TranslatorChinesetraditional::trModulesMemberDescription
virtual QCString trModulesMemberDescription(bool extractAll)
Definition: translator_tw.h:1667
TranslatorChinesetraditional::trSignals
virtual QCString trSignals()
Definition: translator_tw.h:666
QCString::sprintf
QCString & sprintf(const char *format,...)
Definition: qcstring.cpp:24
TranslatorChinesetraditional::trSingletonGeneratedFromFiles
virtual QCString trSingletonGeneratedFromFiles(bool)
UNO IDL singleton page
Definition: translator_tw.h:1984
TranslatorChinesetraditional::trCiteReferences
virtual QCString trCiteReferences()
Definition: translator_tw.h:1833
TranslatorChinesetraditional::trCallerGraph
virtual QCString trCallerGraph()
Definition: translator_tw.h:1543
TranslatorChinesetraditional::trFriends
virtual QCString trFriends()
Definition: translator_tw.h:607
TranslatorChinesetraditional::trFileIndex
virtual QCString trFileIndex()
Definition: translator_tw.h:401
TranslatorChinesetraditional::trTodo
virtual QCString trTodo()
Definition: translator_tw.h:974
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108
TranslatorChinesetraditional::trInterfaces
virtual QCString trInterfaces()
old style UNO IDL services: implemented interfaces
Definition: translator_tw.h:1942
TranslatorChinesetraditional::trClassDiagram
virtual QCString trClassDiagram(const QCString &clName)
Definition: translator_tw.h:546