Doxygen
translator_vi.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  */
17 
18 #ifndef TRANSLATOR_VI_H
19 #define TRANSLATOR_VI_H
20 
21 /*
22  * 17 Oct 2008 : Translation to Vietnamese by
23  * Đặng Minh Tuấn <tuanvietkey@gmail.com>
24  *
25  */
26 
27 
28 /*!
29  When defining a translator class for the new language, follow
30  the description in the documentation. One of the steps says
31  that you should copy the translator_en.h (this) file to your
32  translator_xx.h new file. Your new language should use the
33  Translator class as the base class. This means that you need to
34  implement exactly the same (pure virtual) methods as the
35  TranslatorEnglish does. Because of this, it is a good idea to
36  start with the copy of TranslatorEnglish and replace the strings
37  one by one.
38 
39  It is not necessary to include "translator.h" or
40  "translator_adapter.h" here. The files are included in the
41  language.cpp correctly. Not including any of the mentioned
42  files frees the maintainer from thinking about whether the
43  first, the second, or both files should be included or not, and
44  why. This holds namely for localized translators because their
45  base class is changed occasionaly to adapter classes when the
46  Translator class changes the interface, or back to the
47  Translator class (by the local maintainer) when the localized
48  translator is made up-to-date again.
49 */
51 {
52  public:
53 
54  // --- Language control methods -------------------
55 
56  /*! Used for identification of the language. The identification
57  * should not be translated. It should be replaced by the name
58  * of the language in English using lower-case characters only
59  * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
60  * the identification used in language.cpp.
61  */
62  virtual QCString idLanguage()
63  { return "vietnamese"; }
64 
65  /*! Used to get the LaTeX command(s) for the language support.
66  * This method should return string with commands that switch
67  * LaTeX to the desired language. For example
68  * <pre>"\\usepackage[german]{babel}\n"
69  * </pre>
70  * or
71  * <pre>"\\usepackage{polski}\n"
72  * "\\usepackage[latin2]{inputenc}\n"
73  * "\\usepackage[T1]{fontenc}\n"
74  * </pre>
75  *
76  * The English LaTeX does not use such commands. Because of this
77  * the empty string is returned in this implementation.
78  */
80  {
81  return
82  "\\usepackage[vietnamese]{babel}\n";
83  }
84  virtual QCString latexFontenc()
85  {
86  return "";
87  }
88  virtual QCString latexCommandName()
89  {
90  QCString latex_command = Config_getString(LATEX_CMD_NAME);
91  if (latex_command.isEmpty()) latex_command = "latex";
92  if (Config_getBool(USE_PDFLATEX))
93  {
94  if (latex_command == "latex") latex_command = "xelatex";
95  }
96  return latex_command;
97  }
98  virtual QCString trISOLang()
99  {
100  return "vi";
101  }
102  // --- Language translation methods -------------------
103 
104  /*! used in the compound documentation before a list of related functions. */
105  virtual QCString trRelatedFunctions()
106  { return "Những hàm liên quan"; }
107 
108  /*! subscript for the related functions. */
109  virtual QCString trRelatedSubscript()
110  { return "(Chú ý những hàm này không phải là hàm thành viên.)"; }
111 
112  /*! header that is put before the detailed description of files, classes and namespaces. */
114  { return "Mô tả chi tiết"; }
115 
116  /*! header that is put before the list of typedefs. */
118  { return "Thông tin về Member Typedef"; }
119 
120  /*! header that is put before the list of enumerations. */
122  { return "Thông tin về Member Enumeration"; }
123 
124  /*! header that is put before the list of member functions. */
126  { return "Thông tin về hàm thành viên"; }
127 
128  /*! header that is put before the list of member attributes. */
130  {
131  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
132  {
133  return "Thông tin về trường";
134  }
135  else
136  {
137  return "Thông tin về Member Data";
138  }
139  }
140 
141  /*! this is the text of a link put after brief descriptions. */
142  virtual QCString trMore()
143  { return "Tiếp..."; }
144 
145  /*! put in the class documentation */
146  virtual QCString trListOfAllMembers()
147  { return "Liệt kê tất cả các thành viên"; }
148 
149  /*! used as the title of the "list of all members" page of a class */
150  virtual QCString trMemberList()
151  { return "Danh sách thành viên"; }
152 
153  /*! this is the first part of a sentence that is followed by a class name */
155  { return "Danh sách các thành viên đầy đủ cho "; }
156 
157  /*! this is the remainder of the sentence after the class name */
159  { return ", cùng với tất cả các thành viên kế thừa."; }
160 
161  /*! this is put at the author sections at the bottom of man pages.
162  * parameter s is name of the project name.
163  */
164  virtual QCString trGeneratedAutomatically(const QCString &s)
165  { QCString result="Được tạo ra bởi Doxygen";
166  if (!s.isEmpty()) result+=(QCString)" cho "+s;
167  result+=" từ mã nguồn.";
168  return result;
169  }
170 
171  /*! put after an enum name in the list of all members */
172  virtual QCString trEnumName()
173  { return "tên enum"; }
174 
175  /*! put after an enum value in the list of all members */
176  virtual QCString trEnumValue()
177  { return "giá trị enum"; }
178 
179  /*! put after an undocumented member in the list of all members */
180  virtual QCString trDefinedIn()
181  { return "được định nghĩa trong"; }
182 
183  // quick reference sections
184 
185  /*! This is put above each page as a link to the list of all groups of
186  * compounds or files (see the \\group command).
187  */
188  virtual QCString trModules()
189  { return "Các Modules"; }
190 
191  /*! This is put above each page as a link to the class hierarchy */
192  virtual QCString trClassHierarchy()
193  { return "Kiến trúc Class"; }
194 
195  /*! This is put above each page as a link to the list of annotated classes */
196  virtual QCString trCompoundList()
197  {
198  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
199  {
200  return "Cấu trúc cơ sở dữ liệu (Data Structures)";
201  }
202  else
203  {
204  return "Danh mục các Class";
205  }
206  }
207 
208  /*! This is put above each page as a link to the list of documented files */
209  virtual QCString trFileList()
210  { return "Danh mục File"; }
211 
212  /*! This is put above each page as a link to all members of compounds. */
213  virtual QCString trCompoundMembers()
214  {
215  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
216  {
217  return "Các trường dữ liệu";
218  }
219  else
220  {
221  return "Các thành viên của Class";
222  }
223  }
224 
225  /*! This is put above each page as a link to all members of files. */
226  virtual QCString trFileMembers()
227  {
228  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
229  {
230  return "Toàn cục";
231  }
232  else
233  {
234  return "File thành viên";
235  }
236  }
237 
238  /*! This is put above each page as a link to all related pages. */
239  virtual QCString trRelatedPages()
240  { return "Các trang liên quan"; }
241 
242  /*! This is put above each page as a link to all examples. */
243  virtual QCString trExamples()
244  { return "Các ví dụ"; }
245 
246  /*! This is put above each page as a link to the search engine. */
247  virtual QCString trSearch()
248  { return "Tìm kiếm"; }
249 
250  /*! This is an introduction to the class hierarchy. */
252  { return "Danh sách kế thừa đã được sắp xếp theo ABC, "
253  "nhưng chưa đầy đủ:";
254  }
255 
256  /*! This is an introduction to the list with all files. */
257  virtual QCString trFileListDescription(bool extractAll)
258  {
259  QCString result="Danh mục đầy đủ tất cả các ";
260  if (!extractAll) result+="(đã được biên soạn) ";
261  result+="files cùng với các mô tả tóm tắt:";
262  return result;
263  }
264 
265  /*! This is an introduction to the annotated compound list. */
267  {
268 
269  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
270  {
271  return "Đây là cấu trúc cơ sở dữ liệu với mô tả tóm tắt:";
272  }
273  else if (Config_getBool(OPTIMIZE_OUTPUT_SLICE))
274  {
275  return "Đây là các classes với các mô tả tóm tắt:";
276  }
277  else
278  {
279  return "Đây là các classes, structs, "
280  "unions và interfaces với các mô tả tóm tắt:";
281  }
282  }
283 
284  /*! This is an introduction to the page with all class members. */
285  virtual QCString trCompoundMembersDescription(bool extractAll)
286  {
287  QCString result="Danh mục tất cả các ";
288  if (!extractAll)
289  {
290  result+="(đã được mô tả) ";
291  }
292  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
293  {
294  result+="struct và union fields";
295  }
296  else
297  {
298  result+="class members";
299  }
300  result+=" cùng với các các liên kết đến ";
301  if (!extractAll)
302  {
303  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
304  {
305  result+="Thông tin về struct/union cho từng trường:";
306  }
307  else
308  {
309  result+="Thông tin về class cho từng thành viên:";
310  }
311  }
312  else
313  {
314  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
315  {
316  result+="các structures/unions thuộc:";
317  }
318  else
319  {
320  result+="các lớp thuộc:";
321  }
322  }
323  return result;
324  }
325 
326  /*! This is an introduction to the page with all file members. */
327  virtual QCString trFileMembersDescription(bool extractAll)
328  {
329  QCString result="Danh sách tất cả các ";
330  if (!extractAll) result+="(đã được mô tat) ";
331 
332  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
333  {
334  result+="functions, variables, defines, enums, và typedefs";
335  }
336  else
337  {
338  result+="các file thành viên";
339  }
340  result+=" cùng với links tới ";
341  if (extractAll)
342  result+="các files thuộc:";
343  else
344  result+="tài liệu:";
345  return result;
346  }
347 
348  /*! This is an introduction to the page with the list of all examples */
350  { return "Danh sách tất cả các ví dụ:"; }
351 
352  /*! This is an introduction to the page with the list of related pages */
354  { return "Danh sách tất cả các trang Thông tin có liên quan:"; }
355 
356  /*! This is an introduction to the page with the list of class/file groups */
358  { return "Danh sách tất cả các thành viên:"; }
359 
360  // index titles (the project name is prepended for these)
361 
362  /*! This is used in HTML as the title of index.html. */
363  virtual QCString trDocumentation()
364  { return "Thông tin"; }
365 
366  /*! This is used in LaTeX as the title of the chapter with the
367  * index of all groups.
368  */
369  virtual QCString trModuleIndex()
370  { return "Chỉ mục (Index) Module"; }
371 
372  /*! This is used in LaTeX as the title of the chapter with the
373  * class hierarchy.
374  */
375  virtual QCString trHierarchicalIndex()
376  { return "Hierarchical Index"; }
377 
378  /*! This is used in LaTeX as the title of the chapter with the
379  * annotated compound index.
380  */
381  virtual QCString trCompoundIndex()
382  {
383  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
384  {
385  return "Index cấu trúc cơ sở dữ liệu";
386  }
387  else
388  {
389  return "Class Index";
390  }
391  }
392 
393  /*! This is used in LaTeX as the title of the chapter with the
394  * list of all files.
395  */
397  { return "File Index"; }
398 
399  /*! This is used in LaTeX as the title of the chapter containing
400  * the documentation of all groups.
401  */
403  { return "Thông tin về các Module"; }
404 
405  /*! This is used in LaTeX as the title of the chapter containing
406  * the documentation of all classes, structs and unions.
407  */
409  {
410  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
411  {
412  return "Thông tin về cấu trúc cơ sở dữ liệu";
413  }
414  else
415  {
416  return "Thông tin về Class";
417  }
418  }
419 
420  /*! This is used in LaTeX as the title of the chapter containing
421  * the documentation of all files.
422  */
424  { return "Thông tin về File"; }
425 
426  /*! This is used in LaTeX as the title of the chapter containing
427  * the documentation of all examples.
428  */
430  { return "Thông tin về các ví dụ"; }
431 
432  /*! This is used in LaTeX as the title of the chapter containing
433  * the documentation of all related pages.
434  */
435  virtual QCString trPageDocumentation()
436  { return "Trang Thông tin"; }
437 
438  /*! This is used in LaTeX as the title of the document */
439  virtual QCString trReferenceManual()
440  { return "Thông tin tham chiếu"; }
441 
442  /*! This is used in the documentation of a file as a header before the
443  * list of defines
444  */
445  virtual QCString trDefines()
446  { return "Định nghĩa"; }
447 
448  /*! This is used in the documentation of a file as a header before the
449  * list of typedefs
450  */
451  virtual QCString trTypedefs()
452  { return "Typedefs"; }
453 
454  /*! This is used in the documentation of a file as a header before the
455  * list of enumerations
456  */
457  virtual QCString trEnumerations()
458  { return "Enumerations"; }
459 
460  /*! This is used in the documentation of a file as a header before the
461  * list of (global) functions
462  */
463  virtual QCString trFunctions()
464  { return "Các hàm"; }
465 
466  /*! This is used in the documentation of a file as a header before the
467  * list of (global) variables
468  */
469  virtual QCString trVariables()
470  { return "Các biến"; }
471 
472  /*! This is used in the documentation of a file as a header before the
473  * list of (global) variables
474  */
475  virtual QCString trEnumerationValues()
476  { return "Enumerator"; }
477 
478  /*! This is used in the documentation of a file before the list of
479  * documentation blocks for defines
480  */
482  { return "Thông tin về định nghĩa"; }
483 
484  /*! This is used in the documentation of a file/namespace before the list
485  * of documentation blocks for typedefs
486  */
488  { return "Thông tin về Typedef"; }
489 
490  /*! This is used in the documentation of a file/namespace before the list
491  * of documentation blocks for enumeration types
492  */
494  { return "Thông tin về Enumeration Type"; }
495 
496  /*! This is used in the documentation of a file/namespace before the list
497  * of documentation blocks for functions
498  */
500  { return "Thông tin về hàm"; }
501 
502  /*! This is used in the documentation of a file/namespace before the list
503  * of documentation blocks for variables
504  */
506  { return "Thông tin về các biến"; }
507 
508  /*! This is used in the documentation of a file/namespace/group before
509  * the list of links to documented compounds
510  */
511  virtual QCString trCompounds()
512  {
513  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
514  {
515  return "Cấu trúc cơ sở dữ liệu";
516  }
517  else
518  {
519  return "Classes";
520  }
521  }
522 
523  /*! This is used in the standard footer of each page and indicates when
524  * the page was generated
525  */
526  virtual QCString trGeneratedAt(const QCString &date,const QCString &projName)
527  {
528  QCString result=(QCString)"Được biên soạn vào "+date;
529  if (!projName.isEmpty()) result+=(QCString)" cho mã nguồn dự án "+projName;
530  result+=(QCString)" bởi";
531  return result;
532  }
533 
534  /*! this text is put before a class diagram */
535  virtual QCString trClassDiagram(const QCString &clName)
536  {
537  return (QCString)"Sơ đồ kế thừa cho "+clName+":";
538  }
539 
540  /*! this text is generated when the \\internal command is used. */
542  { return "Chỉ cho sử dụng nội bộ."; }
543 
544  /*! this text is generated when the \\warning command is used. */
545  virtual QCString trWarning()
546  { return "Lưu ý"; }
547 
548  /*! this text is generated when the \\version command is used. */
549  virtual QCString trVersion()
550  { return "Phiên bản"; }
551 
552  /*! this text is generated when the \\date command is used. */
553  virtual QCString trDate()
554  { return "Ngày"; }
555 
556  /*! this text is generated when the \\return command is used. */
557  virtual QCString trReturns()
558  { return "Giá trị trả về"; }
559 
560  /*! this text is generated when the \\sa command is used. */
561  virtual QCString trSeeAlso()
562  { return "Xem thêm"; }
563 
564  /*! this text is generated when the \\param command is used. */
565  virtual QCString trParameters()
566  { return "Các tham số"; }
567 
568  /*! this text is generated when the \\exception command is used. */
569  virtual QCString trExceptions()
570  { return "Exceptions"; }
571 
572  /*! this text is used in the title page of a LaTeX document. */
573  virtual QCString trGeneratedBy()
574  { return "Được biên soạn bởi"; }
575 
576 //////////////////////////////////////////////////////////////////////////
577 // new since 0.49-990307
578 //////////////////////////////////////////////////////////////////////////
579 
580  /*! used as the title of page containing all the index of all namespaces. */
581  virtual QCString trNamespaceList()
582  { return "Danh sách Namespace"; }
583 
584  /*! used as an introduction to the namespace list */
585  virtual QCString trNamespaceListDescription(bool extractAll)
586  {
587  QCString result="Danh sách tất cả các ";
588  if (!extractAll) result+="(đã được biên tập) ";
589  result+="namespaces với mô tả tóm tắt:";
590  return result;
591  }
592 
593  /*! used in the class documentation as a header before the list of all
594  * friends of a class
595  */
596  virtual QCString trFriends()
597  { return "Friends"; }
598 
599 //////////////////////////////////////////////////////////////////////////
600 // new since 0.49-990405
601 //////////////////////////////////////////////////////////////////////////
602 
603  /*! used in the class documentation as a header before the list of all
604  * related classes
605  */
607  { return "Thông tin về Friends và các hàm liên quan"; }
608 
609 //////////////////////////////////////////////////////////////////////////
610 // new since 0.49-990425
611 //////////////////////////////////////////////////////////////////////////
612 
613  /*! used as the title of the HTML page of a class/struct/union */
614  virtual QCString trCompoundReference(const QCString &clName,
615  ClassDef::CompoundType compType,
616  bool isTemplate)
617  {
618  QCString result=(QCString)clName;
619  switch(compType)
620  {
621  case ClassDef::Class: result+=" Class"; break;
622  case ClassDef::Struct: result+=" Struct"; break;
623  case ClassDef::Union: result+=" Union"; break;
624  case ClassDef::Interface: result+=" Interface"; break;
625  case ClassDef::Protocol: result+=" Protocol"; break;
626  case ClassDef::Category: result+=" Category"; break;
627  case ClassDef::Exception: result+=" Exception"; break;
628  default: break;
629  }
630  if (isTemplate) result+=" Template";
631  result+=" Tham chiếu";
632  return result;
633  }
634 
635  /*! used as the title of the HTML page of a file */
636  virtual QCString trFileReference(const QCString &fileName)
637  {
638  QCString result=fileName;
639  result+=" File Tham chiếu";
640  return result;
641  }
642 
643  /*! used as the title of the HTML page of a namespace */
644  virtual QCString trNamespaceReference(const QCString &namespaceName)
645  {
646  QCString result=namespaceName;
647  result+=" Namespace Tham chiếu";
648  return result;
649  }
650 
652  { return "Các hàm thành viên Public"; }
653  virtual QCString trPublicSlots()
654  { return "Public Slots"; }
655  virtual QCString trSignals()
656  { return "Signals"; }
658  { return "Các hàm Static Public"; }
660  { return "Các hàm thành viên Protected"; }
661  virtual QCString trProtectedSlots()
662  { return "Protected Slots"; }
664  { return "Các hàm thành viên Static Protected"; }
665  virtual QCString trPrivateMembers()
666  { return "Các hàm thành viên Private"; }
667  virtual QCString trPrivateSlots()
668  { return "Private Slots"; }
670  { return "Các hàm thành viên Static Private"; }
671 
672  /*! this function is used to produce a comma-separated list of items.
673  * use generateMarker(i) to indicate where item i should be put.
674  */
675  virtual QCString trWriteList(int numEntries)
676  {
677  QCString result;
678  int i;
679  // the inherits list contain `numEntries' classes
680  for (i=0;i<numEntries;i++)
681  {
682  // use generateMarker to generate placeholders for the class links!
683  result+=generateMarker(i); // generate marker for entry i in the list
684  // (order is left to right)
685 
686  if (i!=numEntries-1) // not the last entry, so we need a separator
687  {
688  if (i<numEntries-2) // not the fore last entry
689  result+=", ";
690  else // the fore last entry
691  result+=", và ";
692  }
693  }
694  return result;
695  }
696 
697  /*! used in class documentation to produce a list of base classes,
698  * if class diagrams are disabled.
699  */
700  virtual QCString trInheritsList(int numEntries)
701  {
702  return "Kế thừa "+trWriteList(numEntries)+".";
703  }
704 
705  /*! used in class documentation to produce a list of super classes,
706  * if class diagrams are disabled.
707  */
708  virtual QCString trInheritedByList(int numEntries)
709  {
710  return "Được kế thừa bởi "+trWriteList(numEntries)+".";
711  }
712 
713  /*! used in member documentation blocks to produce a list of
714  * members that are hidden by this one.
715  */
716  virtual QCString trReimplementedFromList(int numEntries)
717  {
718  return "Được thực thi lại từ "+trWriteList(numEntries)+".";
719  }
720 
721  /*! used in member documentation blocks to produce a list of
722  * all member that overwrite the implementation of this member.
723  */
724  virtual QCString trReimplementedInList(int numEntries)
725  {
726  return "Được thực thi lại trong "+trWriteList(numEntries)+".";
727  }
728 
729  /*! This is put above each page as a link to all members of namespaces. */
730  virtual QCString trNamespaceMembers()
731  { return "Thành viên Namespace"; }
732 
733  /*! This is an introduction to the page with all namespace members */
734  virtual QCString trNamespaceMemberDescription(bool extractAll)
735  {
736  QCString result="Danh sách tất cả các ";
737  if (!extractAll) result+="(đã được biên soạn) ";
738  result+="các thành viên namespace cùng với link tới ";
739  if (extractAll)
740  result+="Thông tin namespace cho từng thành viên:";
741  else
742  result+=" namespaces mà phụ thuộc bởi:";
743  return result;
744  }
745  /*! This is used in LaTeX as the title of the chapter with the
746  * index of all namespaces.
747  */
748  virtual QCString trNamespaceIndex()
749  { return "Namespace Index"; }
750 
751  /*! This is used in LaTeX as the title of the chapter containing
752  * the documentation of all namespaces.
753  */
755  { return "Thông tin về Namespace"; }
756 
757 //////////////////////////////////////////////////////////////////////////
758 // new since 0.49-990522
759 //////////////////////////////////////////////////////////////////////////
760 
761  /*! This is used in the documentation before the list of all
762  * namespaces in a file.
763  */
764  virtual QCString trNamespaces()
765  { return "Namespaces"; }
766 
767 //////////////////////////////////////////////////////////////////////////
768 // new since 0.49-990728
769 //////////////////////////////////////////////////////////////////////////
770 
771  /*! This is put at the bottom of a class documentation page and is
772  * followed by a list of files that were used to generate the page.
773  */
775  { // here s is one of " Class", " Struct" or " Union"
776  // single is true implies a single file
777  QCString result=(QCString)"Thông tin cho ";
778  switch(compType)
779  {
780  case ClassDef::Class: result+="class"; break;
781  case ClassDef::Struct: result+="struct"; break;
782  case ClassDef::Union: result+="union"; break;
783  case ClassDef::Interface: result+="interface"; break;
784  case ClassDef::Protocol: result+="protocol"; break;
785  case ClassDef::Category: result+="category"; break;
786  case ClassDef::Exception: result+="exception"; break;
787  default: break;
788  }
789  result+=" được biên soạn từ các file sau đây";
790  result+=":";
791  return result;
792  }
793 
794 //////////////////////////////////////////////////////////////////////////
795 // new since 0.49-990901
796 //////////////////////////////////////////////////////////////////////////
797 
798  /*! This is used as the heading text for the retval command. */
799  virtual QCString trReturnValues()
800  { return "Các giá trị trả về"; }
801 
802  /*! This is in the (quick) index as a link to the main page (index.html)
803  */
804  virtual QCString trMainPage()
805  { return "Tranh chính"; }
806 
807  /*! This is used in references to page that are put in the LaTeX
808  * documentation. It should be an abbreviation of the word page.
809  */
810  virtual QCString trPageAbbreviation()
811  { return "tr."; }
812 
813 //////////////////////////////////////////////////////////////////////////
814 // new since 0.49-991003
815 //////////////////////////////////////////////////////////////////////////
816 
818  {
819  return "Định nghĩa tại dòng @0 trong file @1.";
820  }
822  {
823  return "Định nghĩa trong file @0.";
824  }
825 
826 //////////////////////////////////////////////////////////////////////////
827 // new since 0.49-991205
828 //////////////////////////////////////////////////////////////////////////
829 
830  virtual QCString trDeprecated()
831  {
832  return "Không tán thành";
833  }
834 
835 //////////////////////////////////////////////////////////////////////////
836 // new since 1.0.0
837 //////////////////////////////////////////////////////////////////////////
838 
839  /*! this text is put before a collaboration diagram */
840  virtual QCString trCollaborationDiagram(const QCString &clName)
841  {
842  return (QCString)"Sơ đồ liên kết cho "+clName+":";
843  }
844  /*! this text is put before an include dependency graph */
845  virtual QCString trInclDepGraph(const QCString &fName)
846  {
847  return (QCString)"Kèm theo graph phụ thuộc cho "+fName+":";
848  }
849  /*! header that is put before the list of constructor/destructors. */
851  {
852  return "Thông tin về Constructor và Destructor";
853  }
854  /*! Used in the file documentation to point to the corresponding sources. */
856  {
857  return "Tới mã nguồn của file này.";
858  }
859  /*! Used in the file sources to point to the corresponding documentation. */
861  {
862  return "Tới Thông tin của file này.";
863  }
864  /*! Text for the \\pre command */
866  {
867  return "Điều kiện trước";
868  }
869  /*! Text for the \\post command */
871  {
872  return "Điều kiện sau";
873  }
874  /*! Text for the \\invariant command */
876  {
877  return "Bất biến";
878  }
879  /*! Text shown before a multi-line variable/enum initialization */
881  {
882  return "Giá trị khởi tạo:";
883  }
884  /*! Text used the source code in the file index */
885  virtual QCString trCode()
886  {
887  return "mã nguồn";
888  }
890  {
891  return "Kiến trúc đồ họa của Class";
892  }
894  {
895  return "Tới kiến trúc đồ họa của Class";
896  }
898  {
899  return "Tới kiến trúc text của Class";
900  }
901  virtual QCString trPageIndex()
902  {
903  return "Chỉ mục trang";
904  }
905 
906 //////////////////////////////////////////////////////////////////////////
907 // new since 1.1.0
908 //////////////////////////////////////////////////////////////////////////
909 
910  virtual QCString trNote()
911  {
912  return "Ghi chú";
913  }
914  virtual QCString trPublicTypes()
915  {
916  return "Public Types";
917  }
918  virtual QCString trPublicAttribs()
919  {
920  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
921  {
922  return "các trường đữ liệu";
923  }
924  else
925  {
926  return "Các thuộc tính Public";
927  }
928  }
930  {
931  return "Các thuộc tính Static Public";
932  }
934  {
935  return "Các kiểu Protected";
936  }
937  virtual QCString trProtectedAttribs()
938  {
939  return "các thuộc tính Protected";
940  }
942  {
943  return "Các thuộc tính Static Protected";
944  }
945  virtual QCString trPrivateTypes()
946  {
947  return "Các kiểu Private";
948  }
949  virtual QCString trPrivateAttribs()
950  {
951  return "Các thuộc tính Private";
952  }
954  {
955  return "Các thuộc tính Static Private";
956  }
957 
958 //////////////////////////////////////////////////////////////////////////
959 // new since 1.1.3
960 //////////////////////////////////////////////////////////////////////////
961 
962  /*! Used as a marker that is put before a \\todo item */
963  virtual QCString trTodo()
964  {
965  return "Mục tiêu";
966  }
967  /*! Used as the header of the todo list */
969  {
970  return "Danh sách hàng mục cần thực hiện";
971  }
972 
973 //////////////////////////////////////////////////////////////////////////
974 // new since 1.1.4
975 //////////////////////////////////////////////////////////////////////////
976 
977  virtual QCString trReferencedBy()
978  {
979  return "Tham chiếu bởi";
980  }
981  virtual QCString trRemarks()
982  {
983  return "Ghi chú";
984  }
985  virtual QCString trAttention()
986  {
987  return "Chú ý";
988  }
989  virtual QCString trInclByDepGraph()
990  {
991  return "Đồ thị này biểu thị những file nào trực tiếp hoặc"
992  "không trực tiếp bao gồm file này:";
993  }
994  virtual QCString trSince()
995  {
996  return "Từ";
997  }
998 
999 //////////////////////////////////////////////////////////////////////////
1000 // new since 1.1.5
1001 //////////////////////////////////////////////////////////////////////////
1002 
1003  /*! title of the graph legend page */
1005  {
1006  return "Chú giải Graph";
1007  }
1008  /*! page explaining how the dot graph's should be interpreted
1009  * The %A in the text below are to prevent link to classes called "A".
1010  */
1011  virtual QCString trLegendDocs()
1012  {
1013  return
1014  "Trang này giải nghĩa các biểu đồ được biên soạn bởi "
1015  " doxygen.<p>\n"
1016  "Hãy xem xét các ví dụ sau:\n"
1017  "\\code\n"
1018  "/*! Các lướp không thấy được bởi sự cắt ngắn */\n"
1019  "Lớp không nhìn thấy class { };\n\n"
1020  "/*! class bị cắt, quan hệ kế thừa bị ẩn */\n"
1021  "class bị cắt : bị ẩn toàn cục { };\n\n"
1022  "/* Class không được mô tả với các chú giải doxygen */\n"
1023  "class không được mô tả { };\n\n"
1024  "/*! Class được kế thừa sử dụng các kế thừa public */\n"
1025  "class PublicBase : public Truncated { };\n\n"
1026  "/*! template class */\n"
1027  "template<class T> class Templ { };\n\n"
1028  "/*! Class được kế thừa sử dụng kế thừa protected */\n"
1029  "class ProtectedBase { };\n\n"
1030  "/*! Class được kế thừa sử dụng kế thừa protected private */\n"
1031  "class PrivateBase { };\n\n"
1032  "/*! Class được sử dụng bởi các class kế thừa */\n"
1033  "class được sử dụng { };\n\n"
1034  "/*! Super class kế thừa một số các class khác */\n"
1035  "class được kế thừa : public PublicBase,\n"
1036  " protected ProtectedBase,\n"
1037  " private PrivateBase,\n"
1038  " public Undocumented,\n"
1039  " public Templ<int>\n"
1040  "{\n"
1041  " private:\n"
1042  " Used *m_usedClass;\n"
1043  "};\n"
1044  "\\endcode\n"
1045  "Kết quả trong biểu đồ sau đây:"
1046  "<p><center><img alt=\"\" src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1047  "<p>\n"
1048  "Các hộp trong biểu đồ trên có ý nghĩa như sau:\n"
1049  "<ul>\n"
1050  "<li>%Hộp màu xám biểu thị cấu trúc clas cho "
1051  "biểu đồ được thể hiện.\n"
1052  "<li>%Hộp có khung mầu đen biểu thị struct hoặc class được mô tả.\n"
1053  "<li>%Hộp có khung mầu xám biểu thị struct hoặc class chưa được mô tả.\n"
1054  "<li>%Hộp có khung mầu đỏ biểu thị struct hoặc class được mổ tả "
1055  "khi mà không phải tất cả các quan hệ kế thừa/containment được biển diễn.. %Biểu đồ bị "
1056  "cắt nếu nó không nằm trọn trong các biên được cho trước..\n"
1057  "</ul>\n"
1058  "Các mũi tên có ý nghĩa như sau::\n"
1059  "<ul>\n"
1060  "<li>%Mũi tên mầu xanh đậm biểu thị các quan hệ kế thừa công khai "
1061  "giữa 2 class.\n"
1062  "<li>%Mũi tên màu xanh lá cây đậm biểu thị kế thừa được bảo về (protected).\n"
1063  "<li>%Mũi tên đỏ đậm biểu thị kế thừa dạng private.\n"
1064  "<li>%Mũi tên màu hồng đứt quảng biểu thị class được sử dụng "
1065  "bởi class khác. Mũi tên được gán nhãn với các giá trị "
1066  "mà các calsss hoặc struct được truy cập tới.\n"
1067  "<li>%Mũi tên vàng đắt quãng được thị quan hệ giữa template instance và "
1068  "template class được dẫn xuất từ đó. Mũi tên được gán nhãn với "
1069  "tham số của template.\n"
1070  "</ul>\n";
1071  }
1072  /*! text for the link to the legend page */
1073  virtual QCString trLegend()
1074  {
1075  return "Chú giải";
1076  }
1077 
1078 //////////////////////////////////////////////////////////////////////////
1079 // new since 1.2.0
1080 //////////////////////////////////////////////////////////////////////////
1081 
1082  /*! Used as a marker that is put before a test item */
1083  virtual QCString trTest()
1084  {
1085  return "Test";
1086  }
1087  /*! Used as the header of the test list */
1089  {
1090  return "Danh sách Test";
1091  }
1092 
1093 //////////////////////////////////////////////////////////////////////////
1094 // new since 1.2.2
1095 //////////////////////////////////////////////////////////////////////////
1096 
1097  /*! Used as a section header for IDL properties */
1099  {
1100  return "Thuộc tính";
1101  }
1102  /*! Used as a section header for IDL property documentation */
1104  {
1105  return "Thông tin thuộc tính (Property)";
1106  }
1107 
1108 //////////////////////////////////////////////////////////////////////////
1109 // new since 1.2.4
1110 //////////////////////////////////////////////////////////////////////////
1111 
1112  /*! Used for Java classes in the summary section of Java packages */
1114  {
1115  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1116  {
1117  return "Cấu trúc dữ liệu";
1118  }
1119  else
1120  {
1121  return "Classes";
1122  }
1123  }
1124  /*! Used as the title of a Java package */
1125  virtual QCString trPackage(const QCString &name)
1126  {
1127  return (QCString)"Gói "+name;
1128  }
1129  /*! Title of the package index page */
1130  virtual QCString trPackageList()
1131  {
1132  return "Danh sách gói";
1133  }
1134  /*! The description of the package index page */
1136  {
1137  return "Danh sách các gói cùng với mô tả tóm tắt (khi có thể có):";
1138  }
1139  /*! The link name in the Quick links header for each page */
1141  {
1142  return "Các gói";
1143  }
1144  /*! Text shown before a multi-line define */
1146  {
1147  return "Giá trị:";
1148  }
1149 
1150 //////////////////////////////////////////////////////////////////////////
1151 // new since 1.2.5
1152 //////////////////////////////////////////////////////////////////////////
1153 
1154  /*! Used as a marker that is put before a \\bug item */
1155  virtual QCString trBug()
1156  {
1157  return "Lỗi";
1158  }
1159  /*! Used as the header of the bug list */
1161  {
1162  return "Danh sách lỗi";
1163  }
1164 
1165 //////////////////////////////////////////////////////////////////////////
1166 // new since 1.2.6
1167 //////////////////////////////////////////////////////////////////////////
1168 
1169  /*! Used as ansicpg for RTF file
1170  *
1171  * The following table shows the correlation of Charset name, Charset Value and
1172  * <pre>
1173  * Codepage number:
1174  * Charset Name Charset Value(hex) Codepage number
1175  * ------------------------------------------------------
1176  * DEFAULT_CHARSET 1 (x01)
1177  * SYMBOL_CHARSET 2 (x02)
1178  * OEM_CHARSET 255 (xFF)
1179  * ANSI_CHARSET 0 (x00) 1252
1180  * RUSSIAN_CHARSET 204 (xCC) 1251
1181  * EE_CHARSET 238 (xEE) 1250
1182  * GREEK_CHARSET 161 (xA1) 1253
1183  * TURKISH_CHARSET 162 (xA2) 1254
1184  * BALTIC_CHARSET 186 (xBA) 1257
1185  * HEBREW_CHARSET 177 (xB1) 1255
1186  * ARABIC _CHARSET 178 (xB2) 1256
1187  * SHIFTJIS_CHARSET 128 (x80) 932
1188  * HANGEUL_CHARSET 129 (x81) 949
1189  * GB2313_CHARSET 134 (x86) 936
1190  * CHINESEBIG5_CHARSET 136 (x88) 950
1191  * </pre>
1192  *
1193  */
1194  virtual QCString trRTFansicp()
1195  {
1196  return "1258";
1197  }
1198 
1199 
1200  /*! Used as ansicpg for RTF fcharset
1201  * \see trRTFansicp() for a table of possible values.
1202  */
1203  virtual QCString trRTFCharSet()
1204  {
1205  return "163";
1206  }
1207 
1208  /*! Used as header RTF general index */
1210  {
1211  return "Chỉ số";
1212  }
1213 
1214  /*! This is used for translation of the word that will possibly
1215  * be followed by a single name or by a list of names
1216  * of the category.
1217  */
1218  virtual QCString trClass(bool first_capital, bool singular)
1219  {
1220  QCString result((first_capital ? "Class" : "class"));
1221  if (!singular) result+="es";
1222  return result;
1223  }
1225  /*! This is used for translation of the word that will possibly
1226  * be followed by a single name or by a list of names
1227  * of the category.
1228  */
1229  virtual QCString trFile(bool first_capital, bool singular)
1230  {
1231  QCString result((first_capital ? "File" : "file"));
1232  if (!singular) result+="s";
1233  return result;
1234  }
1235 
1236  /*! This is used for translation of the word that will possibly
1237  * be followed by a single name or by a list of names
1238  * of the category.
1239  */
1240  virtual QCString trNamespace(bool first_capital, bool singular)
1241  {
1242  QCString result((first_capital ? "Namespace" : "namespace"));
1243  if (!singular) result+="s";
1244  return result;
1245  }
1246 
1247  /*! This is used for translation of the word that will possibly
1248  * be followed by a single name or by a list of names
1249  * of the category.
1250  */
1251  virtual QCString trGroup(bool first_capital, bool singular)
1252  {
1253  QCString result((first_capital ? "Group" : "group"));
1254  if (!singular) result+="s";
1255  return result;
1256  }
1257 
1258  /*! This is used for translation of the word that will possibly
1259  * be followed by a single name or by a list of names
1260  * of the category.
1261  */
1262  virtual QCString trPage(bool first_capital, bool singular)
1263  {
1264  QCString result((first_capital ? "Trang" : "trang"));
1265  if (!singular) result+="";
1266  return result;
1267  }
1268 
1269  /*! This is used for translation of the word that will possibly
1270  * be followed by a single name or by a list of names
1271  * of the category.
1272  */
1273  virtual QCString trMember(bool first_capital, bool singular)
1274  {
1275  QCString result((first_capital ? "Member" : "member"));
1276  if (!singular) result+="s";
1277  return result;
1278  }
1279 
1280  /*! This is used for translation of the word that will possibly
1281  * be followed by a single name or by a list of names
1282  * of the category.
1283  */
1284  virtual QCString trGlobal(bool first_capital, bool singular)
1285  {
1286  QCString result((first_capital ? "Global" : "global"));
1287  if (!singular) result+="s";
1288  return result;
1289  }
1290 
1291 //////////////////////////////////////////////////////////////////////////
1292 // new since 1.2.7
1293 //////////////////////////////////////////////////////////////////////////
1294 
1295  /*! This text is generated when the \\author command is used and
1296  * for the author section in man pages. */
1297  virtual QCString trAuthor(bool first_capital, bool singular)
1298  {
1299  QCString result((first_capital ? "Tác giả" : "tác giả"));
1300  if (!singular) result+="";
1301  return result;
1302  }
1303 
1304 //////////////////////////////////////////////////////////////////////////
1305 // new since 1.2.11
1306 //////////////////////////////////////////////////////////////////////////
1307 
1308  /*! This text is put before the list of members referenced by a member
1309  */
1310  virtual QCString trReferences()
1311  {
1312  return "Tham chiếu";
1313  }
1314 
1315 //////////////////////////////////////////////////////////////////////////
1316 // new since 1.2.13
1317 //////////////////////////////////////////////////////////////////////////
1318 
1319  /*! used in member documentation blocks to produce a list of
1320  * members that are implemented by this one.
1321  */
1322  virtual QCString trImplementedFromList(int numEntries)
1323  {
1324  return "Thực hiện "+trWriteList(numEntries)+".";
1325  }
1326 
1327  /*! used in member documentation blocks to produce a list of
1328  * all members that implement this abstract member.
1329  */
1330  virtual QCString trImplementedInList(int numEntries)
1331  {
1332  return "Được thực hiện trong "+trWriteList(numEntries)+".";
1333  }
1334 
1335 //////////////////////////////////////////////////////////////////////////
1336 // new since 1.2.16
1337 //////////////////////////////////////////////////////////////////////////
1338 
1339  /*! used in RTF documentation as a heading for the Table
1340  * of Contents.
1341  */
1342  virtual QCString trRTFTableOfContents()
1343  {
1344  return "Mục lục";
1345  }
1346 
1347 //////////////////////////////////////////////////////////////////////////
1348 // new since 1.2.17
1349 //////////////////////////////////////////////////////////////////////////
1350 
1351  /*! Used as the header of the list of item that have been
1352  * flagged deprecated
1353  */
1354  virtual QCString trDeprecatedList()
1355  {
1356  return "Danh sách Deprecated";
1357  }
1358 
1359 //////////////////////////////////////////////////////////////////////////
1360 // new since 1.2.18
1361 //////////////////////////////////////////////////////////////////////////
1362 
1363  /*! Used as a header for declaration section of the events found in
1364  * a C# program
1365  */
1366  virtual QCString trEvents()
1367  {
1368  return "Sự kiện";
1369  }
1370  /*! Header used for the documentation section of a class' events. */
1371  virtual QCString trEventDocumentation()
1372  {
1373  return "Thông tin về sự kiện";
1374  }
1375 
1376 //////////////////////////////////////////////////////////////////////////
1377 // new since 1.3
1378 //////////////////////////////////////////////////////////////////////////
1379 
1380  /*! Used as a heading for a list of Java class types with package scope.
1381  */
1382  virtual QCString trPackageTypes()
1383  {
1384  return "Kiểu gói";
1385  }
1386  /*! Used as a heading for a list of Java class functions with package
1387  * scope.
1388  */
1389  virtual QCString trPackageMembers()
1390  {
1391  return "Các hàm Package";
1392  }
1393  /*! Used as a heading for a list of static Java class functions with
1394  * package scope.
1395  */
1397  {
1398  return "Các hàm Static Package";
1399  }
1400  /*! Used as a heading for a list of Java class variables with package
1401  * scope.
1402  */
1403  virtual QCString trPackageAttribs()
1404  {
1405  return "Các thuộc tính Package";
1406  }
1407  /*! Used as a heading for a list of static Java class variables with
1408  * package scope.
1409  */
1411  {
1412  return "Các thuộc tính Static Package";
1413  }
1414 
1415 //////////////////////////////////////////////////////////////////////////
1416 // new since 1.3.1
1417 //////////////////////////////////////////////////////////////////////////
1419  /*! Used in the quick index of a class/file/namespace member list page
1420  * to link to the unfiltered list of all members.
1421  */
1422  virtual QCString trAll()
1423  {
1424  return "Tất cả";
1425  }
1426  /*! Put in front of the call graph for a function. */
1427  virtual QCString trCallGraph()
1428  {
1429  return "Biểu đồ các lời gọi cho hàm này:";
1430  }
1431 
1432 //////////////////////////////////////////////////////////////////////////
1433 // new since 1.3.3
1434 //////////////////////////////////////////////////////////////////////////
1435 
1436  /*! This string is used as the title for the page listing the search
1437  * results.
1438  */
1439  virtual QCString trSearchResultsTitle()
1440  {
1441  return "Kết quả tìm kiếm";
1442  }
1443  /*! This string is put just before listing the search results. The
1444  * text can be different depending on the number of documents found.
1445  * Inside the text you can put the special marker $num to insert
1446  * the number representing the actual number of search results.
1447  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1448  * value 2 represents 2 or more matches. HTML markup is allowed inside
1449  * the returned string.
1450  */
1451  virtual QCString trSearchResults(int numDocuments)
1452  {
1453  if (numDocuments==0)
1454  {
1455  return "Không có tài liệu nào thỏa mãn các truy vấn của bạn.";
1456  }
1457  else if (numDocuments==1)
1458  {
1459  return "Tìm thấy <b>1</b> tài liệu thỏa mã truy vấn của bạn.";
1460  }
1461  else
1462  {
1463  return "Tìm thấy tất cả <b>$num</b> tài liệu thỏa mã truy vấn của bạn. "
1464  "Hiển thị những thỏa mãn tốt nhất trước.";
1465  }
1466  }
1467  /*! This string is put before the list of matched words, for each search
1468  * result. What follows is the list of words that matched the query.
1469  */
1470  virtual QCString trSearchMatches()
1471  {
1472  return "Các kết quả thỏa mãn đk:";
1473  }
1474 
1475 //////////////////////////////////////////////////////////////////////////
1476 // new since 1.3.8
1477 //////////////////////////////////////////////////////////////////////////
1478 
1479  /*! This is used in HTML as the title of page with source code for file filename
1480  */
1481  virtual QCString trSourceFile(QCString& filename)
1482  {
1483  return filename + " File nguồn";
1484  }
1486 //////////////////////////////////////////////////////////////////////////
1487 // new since 1.3.9
1488 //////////////////////////////////////////////////////////////////////////
1489 
1490  /*! This is used as the name of the chapter containing the directory
1491  * hierarchy.
1492  */
1493  virtual QCString trDirIndex()
1494  { return "Cấu trúc thư mục"; }
1495 
1496  /*! This is used as the name of the chapter containing the documentation
1497  * of the directories.
1498  */
1499  virtual QCString trDirDocumentation()
1500  { return "Thông tin về thư mục"; }
1501 
1502  /*! This is used as the title of the directory index and also in the
1503  * Quick links of an HTML page, to link to the directory hierarchy.
1504  */
1505  virtual QCString trDirectories()
1506  { return "Các thư mục"; }
1507 
1508  /*! This returns a sentences that introduces the directory hierarchy.
1509  * and the fact that it is sorted alphabetically per level
1510  */
1511  virtual QCString trDirDescription()
1512  { return "Thư mục đã được sắp xếp theo al-pha-bê, "
1513  "nhưng chưa đầy đủ:";
1514  }
1515 
1516  /*! This returns the title of a directory page. The name of the
1517  * directory is passed via \a dirName.
1518  */
1519  virtual QCString trDirReference(const QCString &dirName)
1520  { QCString result=dirName; result+=" Tham chiếu thư mục"; return result; }
1521 
1522  /*! This returns the word directory with or without starting capital
1523  * (\a first_capital) and in sigular or plural form (\a singular).
1524  */
1525  virtual QCString trDir(bool first_capital, bool)
1526  {
1527  QCString result((first_capital ? "Thư mục" : "thư mục"));
1528  return result;
1529  }
1530 
1531 //////////////////////////////////////////////////////////////////////////
1532 // new since 1.4.1
1533 //////////////////////////////////////////////////////////////////////////
1535  /*! This text is added to the documentation when the \\overload command
1536  * is used for a overloaded function.
1537  */
1538  virtual QCString trOverloadText()
1539  {
1540  return "Hàm thành viên dạng overloaded, "
1541  "được chỉ ra cho việc tra cứu dễ dàng. Nó khác với hàm ở trên"
1542  "chỉ ở chỗ những tham số nào nó chấp nhận.";
1543  }
1544 
1545 //////////////////////////////////////////////////////////////////////////
1546 // new since 1.4.6
1547 //////////////////////////////////////////////////////////////////////////
1548 
1549  /*! This is used to introduce a caller (or called-by) graph */
1550  virtual QCString trCallerGraph()
1551  {
1552  return "Biểu đồ các lời gọi cho hàm này:";
1553  }
1554 
1555  /*! This is used in the documentation of a file/namespace before the list
1556  * of documentation blocks for enumeration values
1557  */
1559  { return "Thông tin Enumerator"; }
1560 
1561 //////////////////////////////////////////////////////////////////////////
1562 // new since 1.5.4 (mainly for Fortran)
1563 //////////////////////////////////////////////////////////////////////////
1564 
1565  /*! header that is put before the list of member subprograms (Fortran). */
1567  { return "Thông tin về các hàm và các thủ tục thành viên"; }
1568 
1569  /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1571  { return "Danh sách kiêu dữ liệu"; }
1572 
1573  /*! This is put above each page as a link to all members of compounds (Fortran). */
1575  { return "Trường dữ liệu"; }
1576 
1577  /*! This is an introduction to the annotated compound list (Fortran). */
1579  { return "Kiểu dữ liệu với các mô tả tóm tắt:"; }
1580 
1581  /*! This is an introduction to the page with all data types (Fortran). */
1582  virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
1583  {
1584  QCString result="Danh sách tất cả ";
1585  if (!extractAll)
1586  {
1587  result+="(đã được mô tả) ";
1588  }
1589  result+="các kiểu dữ liệu thành viên";
1590  result+=" cùng với liên kết với ";
1591  if (!extractAll)
1592  {
1593  result+="Thông tin cấu trúc dữ liệu cho từng thành viên";
1594  }
1595  else
1596  {
1597  result+=" các kiểu dữ liệu thuộc:";
1598  }
1599  return result;
1600  }
1601 
1602  /*! This is used in LaTeX as the title of the chapter with the
1603  * annotated compound index (Fortran).
1604  */
1606  { return "Chỉ mục kiểu dữ liệu"; }
1607 
1608  /*! This is used in LaTeX as the title of the chapter containing
1609  * the documentation of all data types (Fortran).
1610  */
1611  virtual QCString trTypeDocumentation()
1612  { return "Thông tin về kiểu dữ liệu"; }
1613 
1614  /*! This is used in the documentation of a file as a header before the
1615  * list of (global) subprograms (Fortran).
1616  */
1617  virtual QCString trSubprograms()
1618  { return "Functions/Subroutines"; }
1619 
1620  /*! This is used in the documentation of a file/namespace before the list
1621  * of documentation blocks for subprograms (Fortran)
1622  */
1624  { return "Thông tin về Function/Subroutine"; }
1625 
1626  /*! This is used in the documentation of a file/namespace/group before
1627  * the list of links to documented compounds (Fortran)
1628  */
1629  virtual QCString trDataTypes()
1630  { return "Kiểu dữ liệu"; }
1631 
1632  /*! used as the title of page containing all the index of all modules (Fortran). */
1633  virtual QCString trModulesList()
1634  { return "Danh sách Modules"; }
1635 
1636  /*! used as an introduction to the modules list (Fortran) */
1637  virtual QCString trModulesListDescription(bool extractAll)
1638  {
1639  QCString result="Danh sách tất cả ";
1640  if (!extractAll) result+="(đã được mô tả) ";
1641  result+="các module với mô tả tóm tắt:";
1642  return result;
1643  }
1645  /*! used as the title of the HTML page of a module/type (Fortran) */
1646  virtual QCString trCompoundReferenceFortran(const QCString &clName,
1647  ClassDef::CompoundType compType,
1648  bool isTemplate)
1649  {
1650  QCString result=(QCString)clName;
1651  switch(compType)
1652  {
1653  case ClassDef::Class: result+=" Module"; break;
1654  case ClassDef::Struct: result+=" Type"; break;
1655  case ClassDef::Union: result+=" Union"; break;
1656  case ClassDef::Interface: result+=" Interface"; break;
1657  case ClassDef::Protocol: result+=" Protocol"; break;
1658  case ClassDef::Category: result+=" Category"; break;
1659  case ClassDef::Exception: result+=" Exception"; break;
1660  default: break;
1661  }
1662  if (isTemplate) result+=" Template";
1663  result+=" Tham chiếu";
1664  return result;
1665  }
1666  /*! used as the title of the HTML page of a module (Fortran) */
1667  virtual QCString trModuleReference(const QCString &namespaceName)
1668  {
1669  QCString result=namespaceName;
1670  result+=" Tham chiếu Module";
1671  return result;
1672  }
1673 
1674  /*! This is put above each page as a link to all members of modules. (Fortran) */
1675  virtual QCString trModulesMembers()
1676  { return "Thành viên Module"; }
1677 
1678  /*! This is an introduction to the page with all modules members (Fortran) */
1679  virtual QCString trModulesMemberDescription(bool extractAll)
1680  {
1681  QCString result="Danh sách tất cả ";
1682  if (!extractAll) result+="(đã được mô tả) ";
1683  result+="các module thành viên cùng với liên kết tới ";
1684  if (extractAll)
1685  {
1686  result+="Thông tin module cho từng thành viên:";
1687  }
1688  else
1689  {
1690  result+="các module thuộc:";
1691  }
1692  return result;
1693  }
1695  /*! This is used in LaTeX as the title of the chapter with the
1696  * index of all modules (Fortran).
1697  */
1698  virtual QCString trModulesIndex()
1699  { return "Chỉ mục các Module"; }
1700 
1701  /*! This is used for translation of the word that will possibly
1702  * be followed by a single name or by a list of names
1703  * of the category.
1704  */
1705  virtual QCString trModule(bool first_capital, bool singular)
1706  {
1707  QCString result((first_capital ? "Module" : "module"));
1708  if (!singular) result+="";
1709  return result;
1710  }
1711  /*! This is put at the bottom of a module documentation page and is
1712  * followed by a list of files that were used to generate the page.
1713  */
1715  bool single)
1716  { // here s is one of " Module", " Struct" or " Union"
1717  // single is true implies a single file
1718  QCString result=(QCString)"Thông tin cho ";
1719  switch(compType)
1720  {
1721  case ClassDef::Class: result+="module"; break;
1722  case ClassDef::Struct: result+="type"; break;
1723  case ClassDef::Union: result+="union"; break;
1724  case ClassDef::Interface: result+="interface"; break;
1725  case ClassDef::Protocol: result+="protocol"; break;
1726  case ClassDef::Category: result+="category"; break;
1727  case ClassDef::Exception: result+="exception"; break;
1728  default: break;
1729  }
1730  result+=" được biên soạn từ các file sau đây";
1731  if (single) result+=":"; else result+="s:";
1732  return result;
1733  }
1734  /*! This is used for translation of the word that will possibly
1735  * be followed by a single name or by a list of names
1736  * of the category.
1737  */
1738  virtual QCString trType(bool first_capital, bool singular)
1739  {
1740  QCString result((first_capital ? "Kiểu" : "kiểu"));
1741  if (!singular) result+="";
1742  return result;
1743  }
1744  /*! This is used for translation of the word that will possibly
1745  * be followed by a single name or by a list of names
1746  * of the category.
1747  */
1748  virtual QCString trSubprogram(bool first_capital, bool singular)
1749  {
1750  QCString result((first_capital ? "Chương trình con" : "chương trình con"));
1751  if (!singular) result+="";
1752  return result;
1753  }
1754 
1755  /*! C# Type Constraint list */
1756  virtual QCString trTypeConstraints()
1757  {
1758  return "Ràng buộc của kiểu (Type)";
1759  }
1760 
1761 };
1762 
1763 #endif
TranslatorVietnamese::trTypeDocumentation
virtual QCString trTypeDocumentation()
Definition: translator_vi.h:1626
getDotImageExtension
QCString getDotImageExtension()
Definition: util.cpp:7032
TranslatorVietnamese::trMemberFunctionDocumentationFortran
virtual QCString trMemberFunctionDocumentationFortran()
Definition: translator_vi.h:1581
TranslatorVietnamese::trSeeAlso
virtual QCString trSeeAlso()
Definition: translator_vi.h:576
TranslatorVietnamese::trMemberEnumerationDocumentation
virtual QCString trMemberEnumerationDocumentation()
Definition: translator_vi.h:136
TranslatorVietnamese::trRelatedFunctions
virtual QCString trRelatedFunctions()
Definition: translator_vi.h:120
TranslatorVietnamese::trPackageMembers
virtual QCString trPackageMembers()
Definition: translator_vi.h:1404
TranslatorVietnamese::trAll
virtual QCString trAll()
Definition: translator_vi.h:1437
TranslatorVietnamese::trProtectedAttribs
virtual QCString trProtectedAttribs()
Definition: translator_vi.h:952
TranslatorVietnamese::trSearchResults
virtual QCString trSearchResults(int numDocuments)
Definition: translator_vi.h:1466
TranslatorVietnamese::trMemberTypedefDocumentation
virtual QCString trMemberTypedefDocumentation()
Definition: translator_vi.h:132
TranslatorVietnamese::trInclByDepGraph
virtual QCString trInclByDepGraph()
Definition: translator_vi.h:1004
TranslatorVietnamese::trEnumerationValueDocumentation
virtual QCString trEnumerationValueDocumentation()
Definition: translator_vi.h:1573
TranslatorVietnamese::trWriteList
virtual QCString trWriteList(int numEntries)
Definition: translator_vi.h:690
TranslatorVietnamese::trEnumerationValues
virtual QCString trEnumerationValues()
Definition: translator_vi.h:490
TranslatorVietnamese::trDataTypes
virtual QCString trDataTypes()
Definition: translator_vi.h:1644
TranslatorVietnamese::trFileMembers
virtual QCString trFileMembers()
Definition: translator_vi.h:241
ClassDef::Union
@ Union
Definition: classdef.h:109
TranslatorVietnamese::trCompoundIndex
virtual QCString trCompoundIndex()
Definition: translator_vi.h:396
TranslatorVietnamese::trExamples
virtual QCString trExamples()
Definition: translator_vi.h:258
TranslatorVietnamese::trPublicMembers
virtual QCString trPublicMembers()
Definition: translator_vi.h:666
TranslatorVietnamese::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_vi.h:1218
TranslatorVietnamese::trCompoundReferenceFortran
virtual QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_vi.h:1661
TranslatorVietnamese::trDefineDocumentation
virtual QCString trDefineDocumentation()
Definition: translator_vi.h:496
TranslatorVietnamese::trModuleIndex
virtual QCString trModuleIndex()
Definition: translator_vi.h:384
TranslatorVietnamese::trVersion
virtual QCString trVersion()
Definition: translator_vi.h:564
TranslatorVietnamese::trReferenceManual
virtual QCString trReferenceManual()
Definition: translator_vi.h:454
TranslatorVietnamese::trFileIndex
virtual QCString trFileIndex()
Definition: translator_vi.h:411
TranslatorVietnamese::trAuthor
virtual QCString trAuthor(bool first_capital, bool singular)
Definition: translator_vi.h:1312
TranslatorVietnamese::trThisIsTheListOfAllMembers
virtual QCString trThisIsTheListOfAllMembers()
Definition: translator_vi.h:169
TranslatorVietnamese::trRemarks
virtual QCString trRemarks()
Definition: translator_vi.h:996
TranslatorVietnamese::trBugList
virtual QCString trBugList()
Definition: translator_vi.h:1175
TranslatorVietnamese::trCompoundIndexFortran
virtual QCString trCompoundIndexFortran()
Definition: translator_vi.h:1620
TranslatorVietnamese::trGeneratedAutomatically
virtual QCString trGeneratedAutomatically(const QCString &s)
Definition: translator_vi.h:179
TranslatorVietnamese::trEventDocumentation
virtual QCString trEventDocumentation()
Definition: translator_vi.h:1386
TranslatorVietnamese::trPrivateTypes
virtual QCString trPrivateTypes()
Definition: translator_vi.h:960
TranslatorVietnamese::trStaticPackageMembers
virtual QCString trStaticPackageMembers()
Definition: translator_vi.h:1411
generateMarker
QCString generateMarker(int id)
Definition: util.cpp:284
QCString::isEmpty
bool isEmpty() const
Returns TRUE iff the string is empty
Definition: qcstring.h:144
TranslatorVietnamese::trPackageListDescription
virtual QCString trPackageListDescription()
Definition: translator_vi.h:1150
TranslatorVietnamese::trMember
virtual QCString trMember(bool first_capital, bool singular)
Definition: translator_vi.h:1288
TranslatorVietnamese::trCompounds
virtual QCString trCompounds()
Definition: translator_vi.h:526
TranslatorVietnamese::trDeprecatedList
virtual QCString trDeprecatedList()
Definition: translator_vi.h:1369
TranslatorVietnamese::trDirDocumentation
virtual QCString trDirDocumentation()
Definition: translator_vi.h:1514
TranslatorVietnamese::trPageDocumentation
virtual QCString trPageDocumentation()
Definition: translator_vi.h:450
TranslatorVietnamese::trDir
virtual QCString trDir(bool first_capital, bool)
Definition: translator_vi.h:1540
TranslatorVietnamese::trModuleDocumentation
virtual QCString trModuleDocumentation()
Definition: translator_vi.h:417
ClassDef::CompoundType
CompoundType
The various compound types
Definition: classdef.h:107
TranslatorVietnamese::trTypedefDocumentation
virtual QCString trTypedefDocumentation()
Definition: translator_vi.h:502
TranslatorVietnamese::trFile
virtual QCString trFile(bool first_capital, bool singular)
Definition: translator_vi.h:1244
TranslatorVietnamese::trInclDepGraph
virtual QCString trInclDepGraph(const QCString &fName)
Definition: translator_vi.h:860
TranslatorVietnamese::latexCommandName
virtual QCString latexCommandName()
Definition: translator_vi.h:103
TranslatorVietnamese::trModulesDescription
virtual QCString trModulesDescription()
Definition: translator_vi.h:372
TranslatorVietnamese::trCallerGraph
virtual QCString trCallerGraph()
Definition: translator_vi.h:1565
ClassDef::Interface
@ Interface
Definition: classdef.h:110
TranslatorVietnamese::trProtectedTypes
virtual QCString trProtectedTypes()
Definition: translator_vi.h:948
TranslatorVietnamese::trExampleDocumentation
virtual QCString trExampleDocumentation()
Definition: translator_vi.h:444
TranslatorVietnamese::trClassHierarchyDescription
virtual QCString trClassHierarchyDescription()
Definition: translator_vi.h:266
TranslatorVietnamese::trPublicTypes
virtual QCString trPublicTypes()
Definition: translator_vi.h:929
TranslatorVietnamese::trModuleReference
virtual QCString trModuleReference(const QCString &namespaceName)
Definition: translator_vi.h:1682
TranslatorVietnamese::trImplementedFromList
virtual QCString trImplementedFromList(int numEntries)
Definition: translator_vi.h:1337
TranslatorVietnamese::trNamespaceMembers
virtual QCString trNamespaceMembers()
Definition: translator_vi.h:745
TranslatorVietnamese::trDeprecated
virtual QCString trDeprecated()
Definition: translator_vi.h:845
TranslatorVietnamese::trMemberList
virtual QCString trMemberList()
Definition: translator_vi.h:165
TranslatorVietnamese::trAttention
virtual QCString trAttention()
Definition: translator_vi.h:1000
TranslatorVietnamese::trCompoundList
virtual QCString trCompoundList()
Definition: translator_vi.h:211
TranslatorVietnamese::trForInternalUseOnly
virtual QCString trForInternalUseOnly()
Definition: translator_vi.h:556
TranslatorVietnamese::trReturns
virtual QCString trReturns()
Definition: translator_vi.h:572
TranslatorVietnamese::trPublicSlots
virtual QCString trPublicSlots()
Definition: translator_vi.h:668
TranslatorVietnamese::trFriends
virtual QCString trFriends()
Definition: translator_vi.h:611
TranslatorVietnamese::trNamespaceIndex
virtual QCString trNamespaceIndex()
Definition: translator_vi.h:763
TranslatorVietnamese::trSearch
virtual QCString trSearch()
Definition: translator_vi.h:262
TranslatorVietnamese::trNamespaceMemberDescription
virtual QCString trNamespaceMemberDescription(bool extractAll)
Definition: translator_vi.h:749
TranslatorVietnamese::trGeneratedFromFiles
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool)
Definition: translator_vi.h:789
TranslatorVietnamese::trInitialValue
virtual QCString trInitialValue()
Definition: translator_vi.h:895
TranslatorVietnamese::trDocumentation
virtual QCString trDocumentation()
Definition: translator_vi.h:378
TranslatorVietnamese::trClasses
virtual QCString trClasses()
Definition: translator_vi.h:1128
TranslatorVietnamese::trPostcondition
virtual QCString trPostcondition()
Definition: translator_vi.h:885
TranslatorVietnamese::trEnumerationTypeDocumentation
virtual QCString trEnumerationTypeDocumentation()
Definition: translator_vi.h:508
TranslatorVietnamese::trClass
virtual QCString trClass(bool first_capital, bool singular)
Definition: translator_vi.h:1233
TranslatorVietnamese::trPackageList
virtual QCString trPackageList()
Definition: translator_vi.h:1145
ClassDef::Class
@ Class
Definition: classdef.h:107
TranslatorVietnamese::trSignals
virtual QCString trSignals()
Definition: translator_vi.h:670
TranslatorVietnamese::trOverloadText
virtual QCString trOverloadText()
Definition: translator_vi.h:1553
TranslatorVietnamese::trStaticProtectedAttribs
virtual QCString trStaticProtectedAttribs()
Definition: translator_vi.h:956
TranslatorVietnamese::trDirectories
virtual QCString trDirectories()
Definition: translator_vi.h:1520
TranslatorVietnamese::trFunctionDocumentation
virtual QCString trFunctionDocumentation()
Definition: translator_vi.h:514
TranslatorVietnamese::trDefineValue
virtual QCString trDefineValue()
Definition: translator_vi.h:1160
TranslatorVietnamese::trNamespace
virtual QCString trNamespace(bool first_capital, bool singular)
Definition: translator_vi.h:1255
TranslatorVietnamese::trMainPage
virtual QCString trMainPage()
Definition: translator_vi.h:819
TranslatorVietnamese::trCompoundMembersDescriptionFortran
virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
Definition: translator_vi.h:1597
TranslatorVietnamese::trIncludingInheritedMembers
virtual QCString trIncludingInheritedMembers()
Definition: translator_vi.h:173
TranslatorVietnamese::trGotoTextualHierarchy
virtual QCString trGotoTextualHierarchy()
Definition: translator_vi.h:912
TranslatorVietnamese::trCompoundListDescriptionFortran
virtual QCString trCompoundListDescriptionFortran()
Definition: translator_vi.h:1593
TranslatorVietnamese::trModulesMemberDescription
virtual QCString trModulesMemberDescription(bool extractAll)
Definition: translator_vi.h:1694
TranslatorVietnamese::trSubprograms
virtual QCString trSubprograms()
Definition: translator_vi.h:1632
TranslatorVietnamese::trReferences
virtual QCString trReferences()
Definition: translator_vi.h:1325
TranslatorVietnamese::trDetailedDescription
virtual QCString trDetailedDescription()
Definition: translator_vi.h:128
TranslatorVietnamese::trISOLang
virtual QCString trISOLang()
Definition: translator_vi.h:113
TranslatorVietnamese::trCompoundMembers
virtual QCString trCompoundMembers()
Definition: translator_vi.h:228
TranslatorVietnamese::trEnumName
virtual QCString trEnumName()
Definition: translator_vi.h:187
TranslatorVietnamese::trLegendDocs
virtual QCString trLegendDocs()
Definition: translator_vi.h:1026
TranslatorVietnamese::trTypeConstraints
virtual QCString trTypeConstraints()
Definition: translator_vi.h:1771
TranslatorVietnamese::trPackages
virtual QCString trPackages()
Definition: translator_vi.h:1155
TranslatorVietnamese::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_vi.h:1209
TranslatorVietnamese::trFileReference
virtual QCString trFileReference(const QCString &fileName)
Definition: translator_vi.h:651
TranslatorVietnamese::trCompoundReference
virtual QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_vi.h:629
TranslatorVietnamese::trPage
virtual QCString trPage(bool first_capital, bool singular)
Definition: translator_vi.h:1277
TranslatorVietnamese::latexFontenc
virtual QCString latexFontenc()
Definition: translator_vi.h:99
TranslatorVietnamese::trModulesIndex
virtual QCString trModulesIndex()
Definition: translator_vi.h:1713
TranslatorVietnamese::trDirReference
virtual QCString trDirReference(const QCString &dirName)
Definition: translator_vi.h:1534
TranslatorVietnamese::trInheritsList
virtual QCString trInheritsList(int numEntries)
Definition: translator_vi.h:715
TranslatorVietnamese::trListOfAllMembers
virtual QCString trListOfAllMembers()
Definition: translator_vi.h:161
TranslatorVietnamese::trRelatedSubscript
virtual QCString trRelatedSubscript()
Definition: translator_vi.h:124
TranslatorVietnamese::trModules
virtual QCString trModules()
Definition: translator_vi.h:203
TranslatorVietnamese::trDate
virtual QCString trDate()
Definition: translator_vi.h:568
TranslatorVietnamese::trMore
virtual QCString trMore()
Definition: translator_vi.h:157
TranslatorVietnamese::idLanguage
virtual QCString idLanguage()
Definition: translator_vi.h:77
TranslatorVietnamese::trNamespaceDocumentation
virtual QCString trNamespaceDocumentation()
Definition: translator_vi.h:769
TranslatorVietnamese::trReimplementedFromList
virtual QCString trReimplementedFromList(int numEntries)
Definition: translator_vi.h:731
TranslatorVietnamese::trNamespaces
virtual QCString trNamespaces()
Definition: translator_vi.h:779
TranslatorVietnamese::trFileMembersDescription
virtual QCString trFileMembersDescription(bool extractAll)
Definition: translator_vi.h:342
TranslatorVietnamese::trTodo
virtual QCString trTodo()
Definition: translator_vi.h:978
TranslatorVietnamese::trModulesMembers
virtual QCString trModulesMembers()
Definition: translator_vi.h:1690
TranslatorVietnamese::trSince
virtual QCString trSince()
Definition: translator_vi.h:1009
TranslatorVietnamese::trStaticPrivateAttribs
virtual QCString trStaticPrivateAttribs()
Definition: translator_vi.h:968
TranslatorVietnamese::trPrivateMembers
virtual QCString trPrivateMembers()
Definition: translator_vi.h:680
TranslatorVietnamese::trModule
virtual QCString trModule(bool first_capital, bool singular)
Definition: translator_vi.h:1720
TranslatorVietnamese::trDefinedIn
virtual QCString trDefinedIn()
Definition: translator_vi.h:195
TranslatorVietnamese::trGraphicalHierarchy
virtual QCString trGraphicalHierarchy()
Definition: translator_vi.h:904
TranslatorVietnamese::trGeneratedBy
virtual QCString trGeneratedBy()
Definition: translator_vi.h:588
TranslatorVietnamese::trSearchMatches
virtual QCString trSearchMatches()
Definition: translator_vi.h:1485
TranslatorVietnamese::trStaticPublicAttribs
virtual QCString trStaticPublicAttribs()
Definition: translator_vi.h:944
TranslatorVietnamese::trTodoList
virtual QCString trTodoList()
Definition: translator_vi.h:983
TranslatorVietnamese::trProtectedSlots
virtual QCString trProtectedSlots()
Definition: translator_vi.h:676
ClassDef::Category
@ Category
Definition: classdef.h:112
TranslatorVietnamese::trPackageTypes
virtual QCString trPackageTypes()
Definition: translator_vi.h:1397
TranslatorVietnamese::latexLanguageSupportCommand
virtual QCString latexLanguageSupportCommand()
Definition: translator_vi.h:94
ClassDef::Struct
@ Struct
Definition: classdef.h:108
TranslatorVietnamese::trProperties
virtual QCString trProperties()
Definition: translator_vi.h:1113
TranslatorVietnamese::trCompoundListDescription
virtual QCString trCompoundListDescription()
Definition: translator_vi.h:281
TranslatorVietnamese::trGeneratedAt
virtual QCString trGeneratedAt(const QCString &date, const QCString &projName)
Definition: translator_vi.h:541
TranslatorVietnamese::trFileListDescription
virtual QCString trFileListDescription(bool extractAll)
Definition: translator_vi.h:272
TranslatorVietnamese::trEnumerations
virtual QCString trEnumerations()
Definition: translator_vi.h:472
TranslatorVietnamese::trDefinedInSourceFile
virtual QCString trDefinedInSourceFile()
Definition: translator_vi.h:836
TranslatorVietnamese::trVariableDocumentation
virtual QCString trVariableDocumentation()
Definition: translator_vi.h:520
TranslatorVietnamese::trPageAbbreviation
virtual QCString trPageAbbreviation()
Definition: translator_vi.h:825
TranslatorVietnamese::trGroup
virtual QCString trGroup(bool first_capital, bool singular)
Definition: translator_vi.h:1266
TranslatorVietnamese::trBug
virtual QCString trBug()
Definition: translator_vi.h:1170
TranslatorVietnamese::trCompoundMembersFortran
virtual QCString trCompoundMembersFortran()
Definition: translator_vi.h:1589
TranslatorVietnamese::trStaticPackageAttribs
virtual QCString trStaticPackageAttribs()
Definition: translator_vi.h:1425
TranslatorVietnamese::trRelatedPages
virtual QCString trRelatedPages()
Definition: translator_vi.h:254
TranslatorVietnamese::trGotoSourceCode
virtual QCString trGotoSourceCode()
Definition: translator_vi.h:870
TranslatorVietnamese::trDirIndex
virtual QCString trDirIndex()
Definition: translator_vi.h:1508
TranslatorVietnamese::trNote
virtual QCString trNote()
Definition: translator_vi.h:925
TranslatorVietnamese::trExceptions
virtual QCString trExceptions()
Definition: translator_vi.h:584
TranslatorVietnamese::trCollaborationDiagram
virtual QCString trCollaborationDiagram(const QCString &clName)
Definition: translator_vi.h:855
TranslatorVietnamese::trExamplesDescription
virtual QCString trExamplesDescription()
Definition: translator_vi.h:364
TranslatorVietnamese::trWarning
virtual QCString trWarning()
Definition: translator_vi.h:560
TranslatorVietnamese::trGotoDocumentation
virtual QCString trGotoDocumentation()
Definition: translator_vi.h:875
TranslatorVietnamese::trMemberFunctionDocumentation
virtual QCString trMemberFunctionDocumentation()
Definition: translator_vi.h:140
TranslatorVietnamese::trStaticPublicMembers
virtual QCString trStaticPublicMembers()
Definition: translator_vi.h:672
TranslatorVietnamese::trModulesListDescription
virtual QCString trModulesListDescription(bool extractAll)
Definition: translator_vi.h:1652
TranslatorVietnamese::trCompoundMembersDescription
virtual QCString trCompoundMembersDescription(bool extractAll)
Definition: translator_vi.h:300
TranslatorAdapter_1_6_0
Adapter class for languages that only contain translations up to version 1.6.0.
Definition: translator_adapter.h:323
TranslatorVietnamese::trClassHierarchy
virtual QCString trClassHierarchy()
Definition: translator_vi.h:207
TranslatorVietnamese::trRTFGeneralIndex
virtual QCString trRTFGeneralIndex()
Definition: translator_vi.h:1224
TranslatorVietnamese::trRelatedFunctionDocumentation
virtual QCString trRelatedFunctionDocumentation()
Definition: translator_vi.h:621
TranslatorVietnamese::trStaticProtectedMembers
virtual QCString trStaticProtectedMembers()
Definition: translator_vi.h:678
TranslatorVietnamese::trDefines
virtual QCString trDefines()
Definition: translator_vi.h:460
TranslatorVietnamese::trDirDescription
virtual QCString trDirDescription()
Definition: translator_vi.h:1526
Config_getBool
#define Config_getBool(name)
Definition: config.h:33
ClassDef::Protocol
@ Protocol
Definition: classdef.h:111
TranslatorVietnamese::trDefinedAtLineInSourceFile
virtual QCString trDefinedAtLineInSourceFile()
Definition: translator_vi.h:832
TranslatorVietnamese::trFunctions
virtual QCString trFunctions()
Definition: translator_vi.h:478
TranslatorVietnamese::trGlobal
virtual QCString trGlobal(bool first_capital, bool singular)
Definition: translator_vi.h:1299
TranslatorVietnamese::trTest
virtual QCString trTest()
Definition: translator_vi.h:1098
TranslatorVietnamese::trClassDocumentation
virtual QCString trClassDocumentation()
Definition: translator_vi.h:423
TranslatorVietnamese::trFileDocumentation
virtual QCString trFileDocumentation()
Definition: translator_vi.h:438
TranslatorVietnamese::trCode
virtual QCString trCode()
Definition: translator_vi.h:900
TranslatorVietnamese::trSearchResultsTitle
virtual QCString trSearchResultsTitle()
Definition: translator_vi.h:1454
TranslatorVietnamese::trModulesList
virtual QCString trModulesList()
Definition: translator_vi.h:1648
TranslatorVietnamese::trStaticPrivateMembers
virtual QCString trStaticPrivateMembers()
Definition: translator_vi.h:684
TranslatorVietnamese::trReimplementedInList
virtual QCString trReimplementedInList(int numEntries)
Definition: translator_vi.h:739
TranslatorVietnamese::trProtectedMembers
virtual QCString trProtectedMembers()
Definition: translator_vi.h:674
TranslatorVietnamese::trPackage
virtual QCString trPackage(const QCString &name)
Definition: translator_vi.h:1140
TranslatorVietnamese::trPropertyDocumentation
virtual QCString trPropertyDocumentation()
Definition: translator_vi.h:1118
TranslatorVietnamese::trNamespaceReference
virtual QCString trNamespaceReference(const QCString &namespaceName)
Definition: translator_vi.h:659
Config_getString
#define Config_getString(name)
Definition: config.h:32
TranslatorVietnamese::trTypedefs
virtual QCString trTypedefs()
Definition: translator_vi.h:466
TranslatorVietnamese::trLegend
virtual QCString trLegend()
Definition: translator_vi.h:1088
TranslatorVietnamese::trParameters
virtual QCString trParameters()
Definition: translator_vi.h:580
TranslatorVietnamese::trPrivateAttribs
virtual QCString trPrivateAttribs()
Definition: translator_vi.h:964
TranslatorVietnamese::trClassDiagram
virtual QCString trClassDiagram(const QCString &clName)
Definition: translator_vi.h:550
TranslatorVietnamese::trEnumValue
virtual QCString trEnumValue()
Definition: translator_vi.h:191
TranslatorVietnamese::trPublicAttribs
virtual QCString trPublicAttribs()
Definition: translator_vi.h:933
TranslatorVietnamese::trCallGraph
virtual QCString trCallGraph()
Definition: translator_vi.h:1442
TranslatorVietnamese::trCompoundListFortran
virtual QCString trCompoundListFortran()
Definition: translator_vi.h:1585
TranslatorVietnamese::trReferencedBy
virtual QCString trReferencedBy()
Definition: translator_vi.h:992
TranslatorVietnamese::trTestList
virtual QCString trTestList()
Definition: translator_vi.h:1103
TranslatorVietnamese::trNamespaceList
virtual QCString trNamespaceList()
Definition: translator_vi.h:596
TranslatorVietnamese::trSubprogramDocumentation
virtual QCString trSubprogramDocumentation()
Definition: translator_vi.h:1638
TranslatorVietnamese::trRelatedPagesDescription
virtual QCString trRelatedPagesDescription()
Definition: translator_vi.h:368
TranslatorVietnamese::trFileList
virtual QCString trFileList()
Definition: translator_vi.h:224
TranslatorVietnamese::trVariables
virtual QCString trVariables()
Definition: translator_vi.h:484
TranslatorVietnamese::trSubprogram
virtual QCString trSubprogram(bool first_capital, bool singular)
Definition: translator_vi.h:1763
TranslatorVietnamese::trNamespaceListDescription
virtual QCString trNamespaceListDescription(bool extractAll)
Definition: translator_vi.h:600
TranslatorVietnamese::trGeneratedFromFilesFortran
virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single)
Definition: translator_vi.h:1729
TranslatorVietnamese::trReturnValues
virtual QCString trReturnValues()
Definition: translator_vi.h:814
TranslatorVietnamese::trInheritedByList
virtual QCString trInheritedByList(int numEntries)
Definition: translator_vi.h:723
TranslatorVietnamese::trPackageAttribs
virtual QCString trPackageAttribs()
Definition: translator_vi.h:1418
TranslatorVietnamese::trLegendTitle
virtual QCString trLegendTitle()
Definition: translator_vi.h:1019
ClassDef::Exception
@ Exception
Definition: classdef.h:113
TranslatorVietnamese::trRTFTableOfContents
virtual QCString trRTFTableOfContents()
Definition: translator_vi.h:1357
TranslatorVietnamese::trMemberDataDocumentation
virtual QCString trMemberDataDocumentation()
Definition: translator_vi.h:144
TranslatorVietnamese::trHierarchicalIndex
virtual QCString trHierarchicalIndex()
Definition: translator_vi.h:390
TranslatorVietnamese::trInvariant
virtual QCString trInvariant()
Definition: translator_vi.h:890
TranslatorVietnamese::trPrecondition
virtual QCString trPrecondition()
Definition: translator_vi.h:880
TranslatorVietnamese::trEvents
virtual QCString trEvents()
Definition: translator_vi.h:1381
TranslatorVietnamese::trPageIndex
virtual QCString trPageIndex()
Definition: translator_vi.h:916
TranslatorVietnamese::trSourceFile
virtual QCString trSourceFile(QCString &filename)
Definition: translator_vi.h:1496
TranslatorVietnamese::trType
virtual QCString trType(bool first_capital, bool singular)
Definition: translator_vi.h:1753
TranslatorVietnamese::trGotoGraphicalHierarchy
virtual QCString trGotoGraphicalHierarchy()
Definition: translator_vi.h:908
TranslatorVietnamese::trConstructorDocumentation
virtual QCString trConstructorDocumentation()
Definition: translator_vi.h:865
TranslatorVietnamese
Definition: translator_vi.h:50
TranslatorVietnamese::trPrivateSlots
virtual QCString trPrivateSlots()
Definition: translator_vi.h:682
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108
TranslatorVietnamese::trImplementedInList
virtual QCString trImplementedInList(int numEntries)
Definition: translator_vi.h:1345