Doxygen
translator_kr.h
浏览该文件的文档.
1 /******************************************************************************
2  *
3  * Copyright (C) 1997-2015 by Dimitri van Heesch.
4  *
5  * Permission to use, copy, modify, and distribute this software and its
6  * documentation under the terms of the GNU General Public License is hereby
7  * granted. No representations are made about the suitability of this software
8  * for any purpose. It is provided "as is" without express or implied warranty.
9  * See the GNU General Public License for more details.
10  *
11  * Documents produced by Doxygen are derivative works derived from the
12  * input used in their production; they are not affected by this license.
13  *
14  */
15 
16 #ifndef TRANSLATOR_KR_H
17 #define TRANSLATOR_KR_H
18 
19 
20 /* Korean translators
21  * doxygen-svn
22  * * fly1004@gmail.com
23  * doxygen-1.5.3
24  * * Astromaker(http://ngps.net/)
25  * * gpgiki(http://www.gpgstudy.com/gpgiki/)
26  * doxygen-1.2.11
27  * * ryk */
28 
29 /*!
30  When defining a translator class for the new language, follow
31  the description in the documentation. One of the steps says
32  that you should copy the translator_en.h (this) file to your
33  translator_xx.h new file. Your new language should use the
34  Translator class as the base class. This means that you need to
35  implement exactly the same (pure virtual) methods as the
36  TranslatorEnglish does. Because of this, it is a good idea to
37  start with the copy of TranslatorEnglish and replace the strings
38  one by one.
39 
40  It is not necessary to include "translator.h" or
41  "translator_adapter.h" here. The files are included in the
42  language.cpp correctly. Not including any of the mentioned
43  files frees the maintainer from thinking about whether the
44  first, the second, or both files should be included or not, and
45  why. This holds namely for localized translators because their
46  base class is changed occasionaly to adapter classes when the
47  Translator class changes the interface, or back to the
48  Translator class (by the local maintainer) when the localized
49  translator is made up-to-date again.
50 */
52 {
53  protected:
54  friend class TranslatorAdapterBase;
55  virtual ~TranslatorKorean() {}
56 
57  public:
58 
59  // --- Language control methods -------------------
60 
61  /*! Used for identification of the language. The identification
62  * should not be translated. It should be replaced by the name
63  * of the language in English using lower-case characters only
64  * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
65  * the identification used in language.cpp.
66  */
67  virtual QCString idLanguage()
68  { return "korean"; }
69 
70  /*! Used to get the LaTeX command(s) for the language support.
71  * This method should return string with commands that switch
72  * LaTeX to the desired language. For example
73  * <pre>"\\usepackage[german]{babel}\n"
74  * </pre>
75  * or
76  * <pre>"\\usepackage{polski}\n"
77  * "\\usepackage[latin2]{inputenc}\n"
78  * "\\usepackage[T1]{fontenc}\n"
79  * </pre>
80  *
81  * The English LaTeX does not use such commands. Because of this
82  * the empty string is returned in this implementation.
83  */
85  {
86  // I'm not sure what this should be.
87  // When I figure it out, I'll update this.
88  // see http://www.ktug.or.kr/jsboard/read.php?table=operate&no=4422&page=1
89  return "\\usepackage{kotex}\n";
90  }
91  virtual QCString latexCommandName()
92  {
93  QCString latex_command = Config_getString(LATEX_CMD_NAME);
94  if (latex_command.isEmpty()) latex_command = "latex";
95  if (Config_getBool(USE_PDFLATEX))
96  {
97  if (latex_command == "latex") latex_command = "xelatex";
98  }
99  return latex_command;
100  }
101  virtual QCString trISOLang()
102  {
103  return "ko";
104  }
105 
106  // --- Language translation methods -------------------
107 
108  /*! used in the compound documentation before a list of related functions. */
109  virtual QCString trRelatedFunctions()
110  { return "관련된 함수들"; }
111 
112  /*! subscript for the related functions. */
113  virtual QCString trRelatedSubscript()
114  { return "(다음은 멤버 함수들이 아닙니다. 주의하십시오.)"; }
115 
116  /*! header that is put before the detailed description of files, classes and namespaces. */
118  { return "상세한 설명"; }
119 
120  /*! header that is put before the list of typedefs. */
122  { return "멤버 타입정의 문서화"; }
123 
124  /*! header that is put before the list of enumerations. */
126  { return "멤버 열거형 문서화"; }
127 
128  /*! header that is put before the list of member functions. */
130  { return "멤버 함수 문서화"; }
131 
132  /*! header that is put before the list of member attributes. */
134  {
135  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
136  {
137  return "필드 문서화";
138  }
139  else
140  {
141  return "멤버 데이터 문서화";
142  }
143  }
144 
145  /*! this is the text of a link put after brief descriptions. */
146  virtual QCString trMore()
147  { return "더 자세히 ..."; }
148 
149  /*! put in the class documentation */
150  virtual QCString trListOfAllMembers()
151  { return "모든 멤버 목록"; }
152 
153  /*! used as the title of the "list of all members" page of a class */
154  virtual QCString trMemberList()
155  { return "멤버 목록"; }
156 
157  /*! this is the first part of a sentence that is followed by a class name */
159  { return "다음에 대한 모든 멤버의 목록입니다 : "; }
160 
161  /*! this is the remainder of the sentence after the class name */
163  { return " (모든 상속된 멤버들도 포함합니다.)"; }
164 
165  /*! this is put at the author sections at the bottom of man pages.
166  * parameter s is name of the project name.
167  */
168  virtual QCString trGeneratedAutomatically(const QCString &s)
169  { QCString result="소스 코드로부터 ";
170  if (!s.isEmpty()) result+=s+(QCString)"를 위해 ";
171  result+="Doxygen에 의해 자동으로 생성됨.";
172  return result;
173  }
174 
175  /*! put after an enum name in the list of all members */
176  virtual QCString trEnumName()
177  { return "열거형 이름"; }
178 
179  /*! put after an enum value in the list of all members */
180  virtual QCString trEnumValue()
181  { return "열거형 값"; }
182 
183  /*! put after an undocumented member in the list of all members */
184  virtual QCString trDefinedIn()
185  { return "다음에서 정의됨 :"; }
186 
187  // quick reference sections
188 
189  /*! This is put above each page as a link to the list of all groups of
190  * compounds or files (see the \\group command).
191  */
192  virtual QCString trModules()
193  { return "모듈"; }
194 
195  /*! This is put above each page as a link to the class hierarchy */
196  virtual QCString trClassHierarchy()
197  { return "클래스 계통도"; }
198 
199  /*! This is put above each page as a link to the list of annotated classes */
200  virtual QCString trCompoundList()
201  {
202  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
203  {
204  return "데이터 구조";
205  }
206  else
207  {
208  return "클래스 목록";
209  }
210  }
211 
212  /*! This is put above each page as a link to the list of documented files */
214  { return "파일 목록"; }
215 
216  /*! This is put above each page as a link to all members of compounds. */
217  virtual QCString trCompoundMembers()
218  {
219  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
220  {
221  return "데이터 필드";
222  }
223  else
224  {
225  return "클래스 멤버";
226  }
227  }
228 
229  /*! This is put above each page as a link to all members of files. */
231  {
232  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
233  {
234  return "전역";
235  }
236  else
237  {
238  return "파일 멤버";
239  }
240  }
241 
242  /*! This is put above each page as a link to all related pages. */
244  { return "관련된 페이지"; }
245 
246  /*! This is put above each page as a link to all examples. */
247  virtual QCString trExamples()
248  { return "예제"; }
249 
250  /*! This is put above each page as a link to the search engine. */
251  virtual QCString trSearch()
252  { return "검색"; }
253 
254  /*! This is an introduction to the class hierarchy. */
256  { return "이 상속 목록은 완전하진 않지만 알파벳순으로 대략적으로 정렬되어있습니다.:";
257  }
258 
259  /*! This is an introduction to the list with all files. */
260  virtual QCString trFileListDescription(bool extractAll)
261  {
262  QCString result="다음은 ";
263  if (!extractAll) result+="문서화된 ";
264  result+="모든 파일에 대한 목록입니다. (간략한 설명만을 보여줍니다) :";
265  return result;
266  }
267 
268  /*! This is an introduction to the annotated compound list. */
270  {
271 
272  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
273  {
274  return "다음은 데이터 구조들입니다. (간략한 설명만을 보여줍니다) :";
275  }
276  else
277  {
278  return "다음은 클래스, 구조체, 공용체 그리고 인터페이스들입니다. "
279  "(간략한 설명만을 보여줍니다) :";
280  }
281  }
282 
283  /*! This is an introduction to the page with all class members. */
284  virtual QCString trCompoundMembersDescription(bool extractAll)
285  {
286  QCString result="다음은 ";
287  if (!extractAll)
288  {
289  result+="문서화된 ";
290  }
291  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
292  {
293  result+="모든 구조체와 공용체의 필드들";
294  }
295  else
296  {
297  result+="모든 클래스 멤버들";
298  }
299  result+="의 목록입니다. ";
300 
301  if (!extractAll)
302  {
303  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
304  {
305  result+="각 필드들은 해당 필드에 대한 구조체와 공용체의 "
306  "문서화 페이지의 링크를 가지고 있습니다. :";
307  }
308  else
309  {
310  result+="각 멤버들은 해당 멤버에 대한 클래스의 문서화 페이지의 "
311  "링크를 가지고 있습니다. :";
312  }
313  }
314  else
315  {
316  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
317  {
318  result+="각 필드들은 해당 필드가 속해 있는 구조체와 공용체에 "
319  "대한 링크를 가지고 있습니다. :";
320  }
321  else
322  {
323  result+="각 멤버들은 해당 멤버가 속해 있는 클래스에 대한 "
324  "링크를 가지고 있습니다. :";
325  }
326  }
327  return result;
328  }
329 
330  /*! This is an introduction to the page with all file members. */
331  virtual QCString trFileMembersDescription(bool extractAll)
332  {
333  QCString result="다음은 ";
334  if (!extractAll) result+="문서화된 ";
335 
336  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
337  {
338  result+="모든 함수, 변수, 매크로, 열거형, 타입정의들";
339  }
340  else
341  {
342  result+="파일 멤버들";
343  }
344  result+="의 목록입니다. ";
345 
346  result+="각 항목은 ";
347  if (extractAll)
348  result+="그들이 속한 파일 페이지의 링크를 가지고 있습니다. :";
349  else
350  result+="그들에 대한 문서화 페이지의 링크를 가지고 있습니다. :";
351  return result;
352  }
353 
354  /*! This is an introduction to the page with the list of all examples */
356  { return "다음은 모든 예제들의 목록입니다.:"; }
357 
358  /*! This is an introduction to the page with the list of related pages */
360  { return "다음은 관련된 모든 문서화 페이지들의 목록입니다.:"; }
361 
362  /*! This is an introduction to the page with the list of class/file groups */
364  { return "다음은 모든 모듈들의 목록입니다.:"; }
365 
366  // index titles (the project name is prepended for these)
367 
368  /*! This is used in HTML as the title of index.html. */
369  virtual QCString trDocumentation()
370  { return "문서화"; }
371 
372  /*! This is used in LaTeX as the title of the chapter with the
373  * index of all groups.
374  */
375  virtual QCString trModuleIndex()
376  { return "모듈 색인"; }
377 
378  /*! This is used in LaTeX as the title of the chapter with the
379  * class hierarchy.
380  */
381  virtual QCString trHierarchicalIndex()
382  { return "계통도 색인"; }
383 
384  /*! This is used in LaTeX as the title of the chapter with the
385  * annotated compound index.
386  */
387  virtual QCString trCompoundIndex()
388  {
389  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
390  {
391  return "데이터 구조 색인";
392  }
393  else
394  {
395  return "클래스 색인";
396  }
397  }
398 
399  /*! This is used in LaTeX as the title of the chapter with the
400  * list of all files.
401  */
402  virtual QCString trFileIndex()
403  { return "파일 색인"; }
404 
405  /*! This is used in LaTeX as the title of the chapter containing
406  * the documentation of all groups.
407  */
409  { return "모듈 문서화"; }
410 
411  /*! This is used in LaTeX as the title of the chapter containing
412  * the documentation of all classes, structs and unions.
413  */
415  {
416  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
417  {
418  return "데이터 구조 문서화";
419  }
420  else
421  {
422  return "클래스 문서화";
423  }
424  }
425 
426  /*! This is used in LaTeX as the title of the chapter containing
427  * the documentation of all files.
428  */
429  virtual QCString trFileDocumentation()
430  { return "파일 문서화"; }
431 
432  /*! This is used in LaTeX as the title of the chapter containing
433  * the documentation of all examples.
434  */
436  { return "예제 문서화"; }
437 
438  /*! This is used in LaTeX as the title of the chapter containing
439  * the documentation of all related pages.
440  */
441  virtual QCString trPageDocumentation()
442  { return "페이지 문서화"; }
443 
444  /*! This is used in LaTeX as the title of the document */
445  virtual QCString trReferenceManual()
446  { return "참조 매뉴얼"; }
447 
448  /*! This is used in the documentation of a file as a header before the
449  * list of defines
450  */
451  virtual QCString trDefines()
452  { return "매크로"; }
453 
454  /*! This is used in the documentation of a file as a header before the
455  * list of typedefs
456  */
457  virtual QCString trTypedefs()
458  { return "타입정의"; }
459 
460  /*! This is used in the documentation of a file as a header before the
461  * list of enumerations
462  */
463  virtual QCString trEnumerations()
464  { return "열거형 타입"; }
465 
466  /*! This is used in the documentation of a file as a header before the
467  * list of (global) functions
468  */
469  virtual QCString trFunctions()
470  { return "함수"; }
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 trVariables()
476  { return "변수"; }
477 
478  /*! This is used in the documentation of a file as a header before the
479  * list of (global) variables
480  */
481  virtual QCString trEnumerationValues()
482  { return "열거형 멤버"; }
483 
484  /*! This is used in the documentation of a file before the list of
485  * documentation blocks for defines
486  */
488  { return "매크로 문서화"; }
489 
490  /*! This is used in the documentation of a file/namespace before the list
491  * of documentation blocks for typedefs
492  */
494  { return "타입정의 문서화"; }
495 
496  /*! This is used in the documentation of a file/namespace before the list
497  * of documentation blocks for enumeration types
498  */
500  { return "열거형 타입 문서화"; }
501 
502  /*! This is used in the documentation of a file/namespace before the list
503  * of documentation blocks for functions
504  */
506  { return "함수 문서화"; }
507 
508  /*! This is used in the documentation of a file/namespace before the list
509  * of documentation blocks for variables
510  */
512  { return "변수 문서화"; }
513 
514  /*! This is used in the documentation of a file/namespace/group before
515  * the list of links to documented compounds
516  */
517  virtual QCString trCompounds()
518  {
519  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
520  {
521  return "데이터 구조";
522  }
523  else
524  {
525  return "클래스";
526  }
527  }
528 
529  /*! This is used in the standard footer of each page and indicates when
530  * the page was generated
531  */
532  virtual QCString trGeneratedAt(const QCString &date,const QCString &projName)
533  {
534  QCString result=(QCString)"생성시간 : "+date;
535  if (!projName.isEmpty()) result+=(QCString)", 프로젝트명 : "+projName;
536  result+=(QCString)", 생성자 : ";
537  return result;
538  }
539 
540  /*! this text is put before a class diagram */
541  virtual QCString trClassDiagram(const QCString &clName)
542  {
543  return (QCString)clName+"에 대한 상속 다이어그램 : ";
544  }
545 
546  /*! this text is generated when the \\internal command is used. */
548  { return "내부적적으로만 사용하기 위해."; }
549 
550  /*! this text is generated when the \\warning command is used. */
551  virtual QCString trWarning()
552  { return "경고"; }
553 
554  /*! this text is generated when the \\version command is used. */
555  virtual QCString trVersion()
556  { return "버전"; }
557 
558  /*! this text is generated when the \\date command is used. */
559  virtual QCString trDate()
560  { return "날짜"; }
561 
562  /*! this text is generated when the \\return command is used. */
563  virtual QCString trReturns()
564  { return "반환값"; }
565 
566  /*! this text is generated when the \\sa command is used. */
567  virtual QCString trSeeAlso()
568  { return "참고"; }
569 
570  /*! this text is generated when the \\param command is used. */
571  virtual QCString trParameters()
572  { return "매개변수"; }
573 
574  /*! this text is generated when the \\exception command is used. */
575  virtual QCString trExceptions()
576  { return "예외"; }
577 
578  /*! this text is used in the title page of a LaTeX document. */
579  virtual QCString trGeneratedBy()
580  { return "다음에 의해 생성됨 : "; }
581 
582 //////////////////////////////////////////////////////////////////////////
583 // new since 0.49-990307
584 //////////////////////////////////////////////////////////////////////////
585 
586  /*! used as the title of page containing all the index of all namespaces. */
587  virtual QCString trNamespaceList()
588  { return "네임스페이스 목록"; }
589 
590  /*! used as an introduction to the namespace list */
591  virtual QCString trNamespaceListDescription(bool extractAll)
592  {
593  QCString result="다음은 ";
594  if (!extractAll) result+="문서화된 ";
595  result+="모든 네임스페이스에 대한 목록입니다. (간략한 설명만을 보여줍니다) :";
596  return result;
597  }
598 
599  /*! used in the class documentation as a header before the list of all
600  * friends of a class
601  */
602  virtual QCString trFriends()
603  { return "Friends"; }
604 
605 //////////////////////////////////////////////////////////////////////////
606 // new since 0.49-990405
607 //////////////////////////////////////////////////////////////////////////
608 
609  /*! used in the class documentation as a header before the list of all
610  * related classes
611  */
613  { return "Friend, 그리고 관련된 함수 문서화"; }
614 
615 //////////////////////////////////////////////////////////////////////////
616 // new since 0.49-990425
617 //////////////////////////////////////////////////////////////////////////
618 
619  /*! used as the title of the HTML page of a class/struct/union */
620  virtual QCString trCompoundReference(const QCString &clName,
621  ClassDef::CompoundType compType,
622  bool isTemplate)
623  {
624  QCString result=(QCString)clName;
625  switch(compType)
626  {
627  case ClassDef::Class: result+=" 클래스"; break;
628  case ClassDef::Struct: result+=" 구조체"; break;
629  case ClassDef::Union: result+=" 공용체"; break;
630  case ClassDef::Interface: result+=" 인터페이스"; break;
631  case ClassDef::Protocol: result+=" 프로토콜"; break;
632  case ClassDef::Category: result+=" 카테고리"; break;
633  case ClassDef::Exception: result+=" 예외"; break;
634  default: break;
635  }
636  if (isTemplate) result+=" 템플릿";
637  result+=" 참조";
638  return result;
639  }
640 
641  /*! used as the title of the HTML page of a file */
642  virtual QCString trFileReference(const QCString &fileName)
643  {
644  QCString result=fileName;
645  result+=" 파일 참조";
646  return result;
647  }
648 
649  /*! used as the title of the HTML page of a namespace */
650  virtual QCString trNamespaceReference(const QCString &namespaceName)
651  {
652  QCString result=namespaceName;
653  result+=" 네임스페이스 참조";
654  return result;
655  }
656 
657  virtual QCString trPublicMembers()
658  { return "Public 멤버 함수"; }
659  virtual QCString trPublicSlots()
660  { return "Public Slots"; }
661  virtual QCString trSignals()
662  { return "Signals"; }
664  { return "정적 Public 멤버 함수"; }
665  virtual QCString trProtectedMembers()
666  { return "Protected 멤버 함수"; }
667  virtual QCString trProtectedSlots()
668  { return "Protected Slots"; }
670  { return "정적 Protected 멤버 함수"; }
671  virtual QCString trPrivateMembers()
672  { return "Private 멤버 함수"; }
673  virtual QCString trPrivateSlots()
674  { return "Private Slots"; }
676  { return "정적 Private 멤버 함수"; }
677 
678  /*! this function is used to produce a comma-separated list of items.
679  * use generateMarker(i) to indicate where item i should be put.
680  */
681  virtual QCString trWriteList(int numEntries)
682  {
683  QCString result;
684  int i;
685  // the inherits list contain `numEntries' classes
686  for (i=0;i<numEntries;i++)
687  {
688  // use generateMarker to generate placeholders for the class links!
689  result+=generateMarker(i); // generate marker for entry i in the list
690  // (order is left to right)
691 
692  if (i!=numEntries-1) // not the last entry, so we need a separator
693  {
694  //if (i<numEntries-2) // not the fore last entry
695  result+=", ";
696  //else // the fore last entry
697  // result+=", "; // TODO: does the 'and' need to be translated here?
698  }
699  }
700  return result;
701  }
702 
703  /*! used in class documentation to produce a list of base classes,
704  * if class diagrams are disabled.
705  */
706  virtual QCString trInheritsList(int numEntries)
707  {
708  return trWriteList(numEntries)+"를(을) 상속했습니다.";
709  }
710 
711  /*! used in class documentation to produce a list of super classes,
712  * if class diagrams are disabled.
713  */
714  virtual QCString trInheritedByList(int numEntries)
715  {
716  return trWriteList(numEntries)+"에 의해 상속되었습니다.";
717  }
718 
719  /*! used in member documentation blocks to produce a list of
720  * members that are hidden by this one.
721  */
722  virtual QCString trReimplementedFromList(int numEntries)
723  {
724  return trWriteList(numEntries)+"(으)로부터 재구현되었습니다.";
725  }
726 
727  /*! used in member documentation blocks to produce a list of
728  * all member that overwrite the implementation of this member.
729  */
730  virtual QCString trReimplementedInList(int numEntries)
731  {
732  return trWriteList(numEntries)+"에서 재구현되었습니다.";
733  }
734 
735  /*! This is put above each page as a link to all members of namespaces. */
736  virtual QCString trNamespaceMembers()
737  { return "네임스페이스 멤버"; }
738 
739  /*! This is an introduction to the page with all namespace members */
740  virtual QCString trNamespaceMemberDescription(bool extractAll)
741  {
742  QCString result="다음은 ";
743  if (!extractAll) result+="문서화된 ";
744  result+="모든 네임스페이스 멤버들의 목록입니다. ";
745  if (extractAll)
746  result+="각 멤버들은 해당 멤버의 네임스페이스 문서화 페이지의 링크를 가지고 있습니다. :";
747  else
748  result+="각 멤버들은 해당 멤버가 속한 네임스페이스 페이지의 링크를 가지고 있습니다. :";
749  return result;
750  }
751  /*! This is used in LaTeX as the title of the chapter with the
752  * index of all namespaces.
753  */
754  virtual QCString trNamespaceIndex()
755  { return "네임스페이스 색인"; }
756 
757  /*! This is used in LaTeX as the title of the chapter containing
758  * the documentation of all namespaces.
759  */
761  { return "네임스페이스 문서화"; }
762 
763 //////////////////////////////////////////////////////////////////////////
764 // new since 0.49-990522
765 //////////////////////////////////////////////////////////////////////////
766 
767  /*! This is used in the documentation before the list of all
768  * namespaces in a file.
769  */
770  virtual QCString trNamespaces()
771  { return "네임스페이스"; }
772 
773 //////////////////////////////////////////////////////////////////////////
774 // new since 0.49-990728
775 //////////////////////////////////////////////////////////////////////////
776 
777  /*! This is put at the bottom of a class documentation page and is
778  * followed by a list of files that were used to generate the page.
779  */
781  bool single)
782  { // here s is one of " Class", " Struct" or " Union"
783  // single is true implies a single file
784  QCString result=(QCString)"이 ";
785  switch(compType)
786  {
787  case ClassDef::Class: result+="클래스"; break;
788  case ClassDef::Struct: result+="구조체"; break;
789  case ClassDef::Union: result+="공용체"; break;
790  case ClassDef::Interface: result+="인터페이스"; break;
791  case ClassDef::Protocol: result+="프로토콜"; break;
792  case ClassDef::Category: result+="카테고리"; break;
793  case ClassDef::Exception: result+="예외"; break;
794  default: break;
795  }
796  result+="에 대한 문서화 페이지는 다음의 파일";
797  if (!single) result+="들";
798  result+="로부터 생성되었습니다.:";
799  return result;
800  }
801 
802 //////////////////////////////////////////////////////////////////////////
803 // new since 0.49-990901
804 //////////////////////////////////////////////////////////////////////////
805 
806  /*! This is used as the heading text for the retval command. */
807  virtual QCString trReturnValues()
808  { return "반환값"; }
809 
810  /*! This is in the (quick) index as a link to the main page (index.html)
811  */
812  virtual QCString trMainPage()
813  { return "메인 페이지"; }
814 
815  /*! This is used in references to page that are put in the LaTeX
816  * documentation. It should be an abbreviation of the word page.
817  */
818  virtual QCString trPageAbbreviation()
819  { return "페이지"; }
820 
821 //////////////////////////////////////////////////////////////////////////
822 // new since 0.49-991003
823 //////////////////////////////////////////////////////////////////////////
824 
826  {
827  return "@1 파일의 @0 번째 라인에서 정의되었습니다.";
828  }
830  {
831  return "@0 파일에서 정의되었습니다.";
832  }
833 
834 //////////////////////////////////////////////////////////////////////////
835 // new since 0.49-991205
836 //////////////////////////////////////////////////////////////////////////
837 
839  {
840  return "잘못된 코드";
841  }
842 
843 //////////////////////////////////////////////////////////////////////////
844 // new since 1.0.0
845 //////////////////////////////////////////////////////////////////////////
846 
847  /*! this text is put before a collaboration diagram */
848  virtual QCString trCollaborationDiagram(const QCString &clName)
849  {
850  return (QCString)clName+"에 대한 협력 다이어그램:";
851  }
852  /*! this text is put before an include dependency graph */
853  virtual QCString trInclDepGraph(const QCString &fName)
854  {
855  return (QCString)fName+"에 대한 include 의존 그래프";
856  }
857  /*! header that is put before the list of constructor/destructors. */
859  {
860  return "생성자 & 소멸자 문서화";
861  }
862  /*! Used in the file documentation to point to the corresponding sources. */
863  virtual QCString trGotoSourceCode()
864  {
865  return "이 파일의 소스 코드 페이지로 가기";
866  }
867  /*! Used in the file sources to point to the corresponding documentation. */
868  virtual QCString trGotoDocumentation()
869  {
870  return "이 파일의 문서화 페이지로 가기";
871  }
872  /*! Text for the \\pre command */
873  virtual QCString trPrecondition()
874  {
875  return "전제조건";
876  }
877  /*! Text for the \\post command */
878  virtual QCString trPostcondition()
879  {
880  return "후미조건";
881  }
882  /*! Text for the \\invariant command */
883  virtual QCString trInvariant()
884  {
885  return "변하지 않는";
886  }
887  /*! Text shown before a multi-line variable/enum initialization */
888  virtual QCString trInitialValue()
889  {
890  return "초기값:";
891  }
892  /*! Text used the source code in the file index */
893  virtual QCString trCode()
894  {
895  return "코드";
896  }
898  {
899  return "그래픽컬한 클래스 계통도";
900  }
902  {
903  return "그래픽컬한 클래스 계통도 페이지로 가기";
904  }
906  {
907  return "텍스트 형식의 클래스 계통도 페이지로 가기";
908  }
909  virtual QCString trPageIndex()
910  {
911  return "페이지 색인";
912  }
913 
914 //////////////////////////////////////////////////////////////////////////
915 // new since 1.1.0
916 //////////////////////////////////////////////////////////////////////////
917 
918  virtual QCString trNote()
919  {
920  return "주의";
921  }
923  {
924  return "Public 타입";
925  }
926  virtual QCString trPublicAttribs()
927  {
928  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
929  {
930  return "데이터 필드";
931  }
932  else
933  {
934  return "Public 속성";
935  }
936  }
938  {
939  return "정적 Public 속성";
940  }
941  virtual QCString trProtectedTypes()
942  {
943  return "Protected 타입";
944  }
945  virtual QCString trProtectedAttribs()
946  {
947  return "Protected 속성";
948  }
950  {
951  return "정적 Protected 속성";
952  }
953  virtual QCString trPrivateTypes()
954  {
955  return "Private 타입";
956  }
957  virtual QCString trPrivateAttribs()
958  {
959  return "Private 속성";
960  }
962  {
963  return "정적 Private 속성";
964  }
965 
966 //////////////////////////////////////////////////////////////////////////
967 // new since 1.1.3
968 //////////////////////////////////////////////////////////////////////////
969 
970  /*! Used as a marker that is put before a \\todo item */
971  virtual QCString trTodo()
972  {
973  return "할일";
974  }
975  /*! Used as the header of the todo list */
976  virtual QCString trTodoList()
977  {
978  return "할일 목록";
979  }
980 
981 //////////////////////////////////////////////////////////////////////////
982 // new since 1.1.4
983 //////////////////////////////////////////////////////////////////////////
984 
985  virtual QCString trReferencedBy()
986  {
987  return "다음에 의해서 참조됨 : ";
988  }
989  virtual QCString trRemarks()
990  {
991  return "Remarks";
992  }
993  virtual QCString trAttention()
994  {
995  return "주의";
996  }
997  virtual QCString trInclByDepGraph()
998  {
999  return "이 그래프는 이 파일을 직/간접적으로 include 하는 파일들을 보여줍니다.:";
1000  }
1001  virtual QCString trSince()
1002  {
1003  return "Since";
1004  }
1005 
1006 //////////////////////////////////////////////////////////////////////////
1007 // new since 1.1.5
1008 //////////////////////////////////////////////////////////////////////////
1009 
1010  /*! title of the graph legend page */
1011  virtual QCString trLegendTitle()
1012  {
1013  return "그래프 범례";
1014  }
1015  /*! page explaining how the dot graph's should be interpreted
1016  * The %A in the text below are to prevent link to classes called "A".
1017  */
1018  virtual QCString trLegendDocs()
1019  {
1020  return
1021  "이 페이지는 doxygen에 의해 생성된 그래프들을 이해하는 방법을 설명합니다.<p>\n"
1022  "다음의 예제를 참고하십시오.:\n"
1023  "\\code\n"
1024  "/*! 생략되었기 때문에 보이지 않는 클래스 */\n"
1025  "class Invisible { };\n\n"
1026  "/*! Truncated 클래스, 상속관계가 숨겨짐 */\n"
1027  "class Truncated : public Invisible { };\n\n"
1028  "/* doxygen 주석에 의해서 문서화되지 않는 클래스 */\n"
1029  "class Undocumented { };\n\n"
1030  "/*! public 상속을 통해서 상속된 클래스 */\n"
1031  "class PublicBase : public Truncated { };\n\n"
1032  "/*! 템플릿 클래스 */\n"
1033  "template<class T> class Templ { };\n\n"
1034  "/*! protected 상속을 통해서 상속된 클래스 */\n"
1035  "class ProtectedBase { };\n\n"
1036  "/*! private 상속을 통해서 상속된 클래스 */\n"
1037  "class PrivateBase { };\n\n"
1038  "/*! 상속되어진 클래스에 의해 (멤버로) 사용되어지는 클래스 */\n"
1039  "class Used { };\n\n"
1040  "/*! 다른 클래스들을 상속하는 슈퍼 클래스 */\n"
1041  "class Inherited : public PublicBase,\n"
1042  " protected ProtectedBase,\n"
1043  " private PrivateBase,\n"
1044  " public Undocumented,\n"
1045  " public Templ<int>\n"
1046  "{\n"
1047  " private:\n"
1048  " Used *m_usedClass;\n"
1049  "};\n"
1050  "\\endcode\n"
1051  "다음과 같은 그래프가 출력될 것입니다. :"
1052  "<p><center><img alt=\"\" src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1053  "<p>\n"
1054  "위 그래프의 박스들은 다음과 같은 의미를 가집니다. :\n"
1055  "<ul>\n"
1056  "<li>%A 회색으로 채워진 박스는 이 그래프를 생성해 낸 구조체나 클래스를 의미합니다.\n"
1057  "<li>%A 검은색 테두리의 박스는 문서화된 구조체나 클래스를 의미합니다.\n"
1058  "<li>%A 회색 테두리의 박스는 문서화되지 않은 구조체나 클래스를 의미합니다.\n"
1059  "<li>%A 빨간색 테두리의 박스는 모든 상속이나 포함관계가 보여지지 않는 "
1060  "구조체나 클래스를 의미합니다."
1061  "%A 만약 그래프가 지정된 경계내에 맞지 않으면, 그래프가 잘려집니다.\n"
1062  "</ul>\n"
1063  "화살표들은 다음과 같은 의미를 가집니다. :\n"
1064  "<ul>\n"
1065  "<li>%A 어두운 파랑색 화살표는 두 클래스들 간에 public 상속이 있음을 의미합니다.\n"
1066  "<li>%A 어두운 연두색 화살표는 protected 상속이 있음을 의미합니다.\n"
1067  "<li>%A 어두운 빨간색 화살표는 private 상속이 있음을 의미합니다.\n"
1068  "<li>%A 보라색 점선 화살표는 다른 클래스에 의해 포함되거나 사용되어짐을 의미합니다. "
1069  "화살표의 라벨은 화살표가 가리키는 클래스나 구조체로 접근하는 변수명(들)으로 붙습니다.\n"
1070  "<li>%A 노란색 점선 화살표는 템플릿 인스턴스와 템프릿 클래스에 대한 관계를 의미합니다. "
1071  "화살표의 라벨은 인스턴스의 템플릿 파라메터로 붙습니다.\n"
1072  "</ul>\n";
1073  }
1074  /*! text for the link to the legend page */
1075  virtual QCString trLegend()
1076  {
1077  return "범례";
1078  }
1079 
1080 //////////////////////////////////////////////////////////////////////////
1081 // new since 1.2.0
1082 //////////////////////////////////////////////////////////////////////////
1083 
1084  /*! Used as a marker that is put before a test item */
1085  virtual QCString trTest()
1086  {
1087  return "테스트";
1088  }
1089  /*! Used as the header of the test list */
1090  virtual QCString trTestList()
1091  {
1092  return "테스트 목록";
1093  }
1094 
1095 //////////////////////////////////////////////////////////////////////////
1096 // new since 1.2.2
1097 //////////////////////////////////////////////////////////////////////////
1099  /*! Used as a section header for IDL properties */
1100  virtual QCString trProperties()
1101  {
1102  return "속성";
1103  }
1104  /*! Used as a section header for IDL property documentation */
1106  {
1107  return "속성 문서화";
1108  }
1109 
1110 //////////////////////////////////////////////////////////////////////////
1111 // new since 1.2.4
1112 //////////////////////////////////////////////////////////////////////////
1114  /*! Used for Java classes in the summary section of Java packages */
1115  virtual QCString trClasses()
1116  {
1117  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1118  {
1119  return "데이터 구조";
1120  }
1121  else
1122  {
1123  return "클래스";
1124  }
1125  }
1126  /*! Used as the title of a Java package */
1127  virtual QCString trPackage(const QCString &name)
1128  {
1129  return name+(QCString)" 패키지";
1130  }
1131  /*! Title of the package index page */
1132  virtual QCString trPackageList()
1133  {
1134  return "패키지 목록";
1135  }
1136  /*! The description of the package index page */
1138  {
1139  return "다음은 패키지들입니다. (가능한한 간략한 설명만을 보여줍니다) :";
1140  }
1141  /*! The link name in the Quick links header for each page */
1142  virtual QCString trPackages()
1143  {
1144  return "패키지";
1145  }
1146  /*! Text shown before a multi-line define */
1147  virtual QCString trDefineValue()
1148  {
1149  return "값:";
1150  }
1151 
1152 //////////////////////////////////////////////////////////////////////////
1153 // new since 1.2.5
1154 //////////////////////////////////////////////////////////////////////////
1156  /*! Used as a marker that is put before a \\bug item */
1157  virtual QCString trBug()
1158  {
1159  return "버그";
1160  }
1161  /*! Used as the header of the bug list */
1162  virtual QCString trBugList()
1163  {
1164  return "버그 목록";
1165  }
1166 
1167 //////////////////////////////////////////////////////////////////////////
1168 // new since 1.2.6
1169 //////////////////////////////////////////////////////////////////////////
1171  /*! Used as ansicpg for RTF file
1172  *
1173  * The following table shows the correlation of Charset name, Charset Value and
1174  * <pre>
1175  * Codepage number:
1176  * Charset Name Charset Value(hex) Codepage number
1177  * ------------------------------------------------------
1178  * DEFAULT_CHARSET 1 (x01)
1179  * SYMBOL_CHARSET 2 (x02)
1180  * OEM_CHARSET 255 (xFF)
1181  * ANSI_CHARSET 0 (x00) 1252
1182  * RUSSIAN_CHARSET 204 (xCC) 1251
1183  * EE_CHARSET 238 (xEE) 1250
1184  * GREEK_CHARSET 161 (xA1) 1253
1185  * TURKISH_CHARSET 162 (xA2) 1254
1186  * BALTIC_CHARSET 186 (xBA) 1257
1187  * HEBREW_CHARSET 177 (xB1) 1255
1188  * ARABIC _CHARSET 178 (xB2) 1256
1189  * SHIFTJIS_CHARSET 128 (x80) 932
1190  * HANGEUL_CHARSET 129 (x81) 949
1191  * GB2313_CHARSET 134 (x86) 936
1192  * CHINESEBIG5_CHARSET 136 (x88) 950
1193  * </pre>
1194  *
1195  */
1196  virtual QCString trRTFansicp()
1197  {
1198  return "949";
1199  }
1200 
1201 
1202  /*! Used as ansicpg for RTF fcharset
1203  * \see trRTFansicp() for a table of possible values.
1204  */
1205  virtual QCString trRTFCharSet()
1206  {
1207  return "129";
1208  }
1210  /*! Used as header RTF general index */
1211  virtual QCString trRTFGeneralIndex()
1212  {
1213  return "색인";
1214  }
1215 
1216  /*! This is used for translation of the word that will possibly
1217  * be followed by a single name or by a list of names
1218  * of the category.
1219  */
1220  virtual QCString trClass(bool, bool singular)
1221  {
1222  QCString result("클래스");
1223  if (!singular) result+="들";
1224  return result;
1225  }
1226 
1227  /*! This is used for translation of the word that will possibly
1228  * be followed by a single name or by a list of names
1229  * of the category.
1230  */
1231  virtual QCString trFile(bool, bool singular)
1232  {
1233  QCString result("파일");
1234  if (!singular) result+="들";
1235  return result;
1236  }
1237 
1238  /*! This is used for translation of the word that will possibly
1239  * be followed by a single name or by a list of names
1240  * of the category.
1241  */
1242  virtual QCString trNamespace(bool, bool singular)
1243  {
1244  QCString result("네임스페이스");
1245  if (!singular) result+="들";
1246  return result;
1247  }
1248 
1249  /*! This is used for translation of the word that will possibly
1250  * be followed by a single name or by a list of names
1251  * of the category.
1252  */
1253  virtual QCString trGroup(bool, bool singular)
1254  {
1255  QCString result("그룹");
1256  if (!singular) result+="들";
1257  return result;
1258  }
1259 
1260  /*! This is used for translation of the word that will possibly
1261  * be followed by a single name or by a list of names
1262  * of the category.
1263  */
1264  virtual QCString trPage(bool, bool singular)
1265  {
1266  QCString result("페이지");
1267  if (!singular) result+="들";
1268  return result;
1269  }
1270 
1271  /*! This is used for translation of the word that will possibly
1272  * be followed by a single name or by a list of names
1273  * of the category.
1274  */
1275  virtual QCString trMember(bool, bool singular)
1276  {
1277  QCString result("멤버");
1278  if (!singular) result+="들";
1279  return result;
1280  }
1281 
1282  /*! This is used for translation of the word that will possibly
1283  * be followed by a single name or by a list of names
1284  * of the category.
1285  */
1286  virtual QCString trGlobal(bool, bool singular)
1287  {
1288  QCString result("전역");
1289  if (!singular) result+="";
1290  return result;
1291  }
1292 
1293 //////////////////////////////////////////////////////////////////////////
1294 // new since 1.2.7
1295 //////////////////////////////////////////////////////////////////////////
1296 
1297  /*! This text is generated when the \\author command is used and
1298  * for the author section in man pages. */
1299  virtual QCString trAuthor(bool, bool singular)
1300  {
1301  QCString result("작성자");
1302  if (!singular) result+="들";
1303  return result;
1304  }
1305 
1306 //////////////////////////////////////////////////////////////////////////
1307 // new since 1.2.11
1308 //////////////////////////////////////////////////////////////////////////
1309 
1310  /*! This text is put before the list of members referenced by a member
1311  */
1313  {
1314  return "다음을 참조함 : ";
1315  }
1316 
1317 //////////////////////////////////////////////////////////////////////////
1318 // new since 1.2.13
1319 //////////////////////////////////////////////////////////////////////////
1320 
1321  /*! used in member documentation blocks to produce a list of
1322  * members that are implemented by this one.
1323  */
1324  virtual QCString trImplementedFromList(int numEntries)
1325  {
1326  return trWriteList(numEntries)+"를 구현.";
1327  }
1328 
1329  /*! used in member documentation blocks to produce a list of
1330  * all members that implement this abstract member.
1331  */
1332  virtual QCString trImplementedInList(int numEntries)
1333  {
1334  return trWriteList(numEntries)+"에서 구현되었습니다.";
1335  }
1336 
1337 //////////////////////////////////////////////////////////////////////////
1338 // new since 1.2.16
1339 //////////////////////////////////////////////////////////////////////////
1340 
1341  /*! used in RTF documentation as a heading for the Table
1342  * of Contents.
1343  */
1344  virtual QCString trRTFTableOfContents()
1345  {
1346  return "목차";
1347  }
1348 
1349 //////////////////////////////////////////////////////////////////////////
1350 // new since 1.2.17
1351 //////////////////////////////////////////////////////////////////////////
1352 
1353  /*! Used as the header of the list of item that have been
1354  * flagged deprecated
1355  */
1356  virtual QCString trDeprecatedList()
1357  {
1358  return "잘못된 코드 목록";
1359  }
1360 
1361 //////////////////////////////////////////////////////////////////////////
1362 // new since 1.2.18
1363 //////////////////////////////////////////////////////////////////////////
1364 
1365  /*! Used as a header for declaration section of the events found in
1366  * a C# program
1367  */
1368  virtual QCString trEvents()
1369  {
1370  return "이벤트";
1371  }
1372  /*! Header used for the documentation section of a class' events. */
1373  virtual QCString trEventDocumentation()
1374  {
1375  return "이벤트 문서화";
1376  }
1377 
1378 //////////////////////////////////////////////////////////////////////////
1379 // new since 1.3
1380 //////////////////////////////////////////////////////////////////////////
1382  /*! Used as a heading for a list of Java class types with package scope.
1383  */
1384  virtual QCString trPackageTypes()
1385  {
1386  return "패키지 타입";
1387  }
1388  /*! Used as a heading for a list of Java class functions with package
1389  * scope.
1390  */
1391  virtual QCString trPackageMembers()
1392  {
1393  return "패키지 함수";
1394  }
1395  /*! Used as a heading for a list of static Java class functions with
1396  * package scope.
1397  */
1399  {
1400  return "정적 패키지 함수";
1401  }
1402  /*! Used as a heading for a list of Java class variables with package
1403  * scope.
1404  */
1405  virtual QCString trPackageAttribs()
1406  {
1407  return "패키지 속성";
1408  }
1409  /*! Used as a heading for a list of static Java class variables with
1410  * package scope.
1411  */
1413  {
1414  return "정적 패키지 속성";
1415  }
1416 
1417 //////////////////////////////////////////////////////////////////////////
1418 // new since 1.3.1
1419 //////////////////////////////////////////////////////////////////////////
1420 
1421  /*! Used in the quick index of a class/file/namespace member list page
1422  * to link to the unfiltered list of all members.
1423  */
1424  virtual QCString trAll()
1425  {
1426  return "모두";
1427  }
1428  /*! Put in front of the call graph for a function. */
1429  virtual QCString trCallGraph()
1430  {
1431  return "이 함수 내부에서 호출하는 함수들에 대한 그래프입니다.:";
1432  }
1433 
1434 //////////////////////////////////////////////////////////////////////////
1435 // new since 1.3.3
1436 //////////////////////////////////////////////////////////////////////////
1438  /*! This string is used as the title for the page listing the search
1439  * results.
1440  */
1441  virtual QCString trSearchResultsTitle()
1442  {
1443  return "검색 결과";
1444  }
1445  /*! This string is put just before listing the search results. The
1446  * text can be different depending on the number of documents found.
1447  * Inside the text you can put the special marker $num to insert
1448  * the number representing the actual number of search results.
1449  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1450  * value 2 represents 2 or more matches. HTML markup is allowed inside
1451  * the returned string.
1452  */
1453  virtual QCString trSearchResults(int numDocuments)
1454  {
1455  if (numDocuments==0)
1456  {
1457  return "죄송합니다. 질의에 일치하는 문서가 없습니다.";
1458  }
1459  else if (numDocuments==1)
1460  {
1461  return "질의에 일치하는 <b>1</b> 개의 문서를 찾았습니다.";
1462  }
1463  else
1464  {
1465  return "질의에 일치하는 <b>$num</b> 개의 문서를 찾았습니다. "
1466  "가장 많이 일치하는 문서를 가장 먼저 보여줍니다.";
1467  }
1468  }
1469  /*! This string is put before the list of matched words, for each search
1470  * result. What follows is the list of words that matched the query.
1471  */
1472  virtual QCString trSearchMatches()
1473  {
1474  return "결과:";
1475  }
1476 
1477 //////////////////////////////////////////////////////////////////////////
1478 // new since 1.3.8
1479 //////////////////////////////////////////////////////////////////////////
1480 
1481  /*! This is used in HTML as the title of page with source code for file filename
1482  */
1483  virtual QCString trSourceFile(QCString& filename)
1484  {
1485  return filename + " 소스 파일";
1486  }
1487 
1488 //////////////////////////////////////////////////////////////////////////
1489 // new since 1.3.9
1490 //////////////////////////////////////////////////////////////////////////
1491 
1492  /*! This is used as the name of the chapter containing the directory
1493  * hierarchy.
1494  */
1495  virtual QCString trDirIndex()
1496  { return "디렉토리 계통도"; }
1497 
1498  /*! This is used as the name of the chapter containing the documentation
1499  * of the directories.
1500  */
1501  virtual QCString trDirDocumentation()
1502  { return "디렉토리 문서화"; }
1503 
1504  /*! This is used as the title of the directory index and also in the
1505  * Quick links of an HTML page, to link to the directory hierarchy.
1506  */
1507  virtual QCString trDirectories()
1508  { return "디렉토리"; }
1509 
1510  /*! This returns a sentences that introduces the directory hierarchy.
1511  * and the fact that it is sorted alphabetically per level
1512  */
1513  virtual QCString trDirDescription()
1514  { return "이 디렉토리 목록은 완전하진 않지만, (대략적으로) 알파벳순으로 정렬되어있습니다.:";
1515  }
1516 
1517  /*! This returns the title of a directory page. The name of the
1518  * directory is passed via \a dirName.
1519  */
1520  virtual QCString trDirReference(const QCString &dirName)
1521  { QCString result=dirName; result+=" 디렉토리 참조"; return result; }
1522 
1523  /*! This returns the word directory with or without starting capital
1524  * (\a first_capital) and in sigular or plural form (\a singular).
1525  */
1526  virtual QCString trDir(bool, bool singular)
1527  {
1528  QCString result("디렉토리");
1529  if (singular) result+=""; else result+="들";
1530  return result;
1531  }
1532 
1533 //////////////////////////////////////////////////////////////////////////
1534 // new since 1.4.1
1535 //////////////////////////////////////////////////////////////////////////
1536 
1537  /*! This text is added to the documentation when the \\overload command
1538  * is used for a overloaded function.
1539  */
1540  virtual QCString trOverloadText()
1541  {
1542  return "이 함수는 편의를 제공하기 위해 오버로드된 멤버 함수입니다. "
1543  "위의 함수와 틀린 점은 단지 받아들이는 아규먼트(argument)가 다르다는 것입니다.";
1544  }
1545 
1546 //////////////////////////////////////////////////////////////////////////
1547 // new since 1.4.6
1548 //////////////////////////////////////////////////////////////////////////
1549 
1550  /*! This is used to introduce a caller (or called-by) graph */
1551  virtual QCString trCallerGraph()
1552  {
1553  return "이 함수를 호출하는 함수들에 대한 그래프입니다.:";
1554  }
1555 
1556  /*! This is used in the documentation of a file/namespace before the list
1557  * of documentation blocks for enumeration values
1558  */
1560  { return "열거형 문서화"; }
1561 
1562 //////////////////////////////////////////////////////////////////////////
1563 // new since 1.5.4 (mainly for Fortran)
1564 //////////////////////////////////////////////////////////////////////////
1565 
1566  /*! header that is put before the list of member subprograms (Fortran). */
1568  { return "멤버 함수/서브루틴 문서화"; }
1569 
1570  /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1572  { return "데이터 타입 목록"; }
1573 
1574  /*! This is put above each page as a link to all members of compounds (Fortran). */
1576  { return "데이터 필드"; }
1577 
1578  /*! This is an introduction to the annotated compound list (Fortran). */
1580  { return "대략적인 설명과 함께 데이터 타입들의 목록입니다.:"; }
1581 
1582  /*! This is an introduction to the page with all data types (Fortran). */
1583  virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
1584  {
1585  QCString result="다음은 ";
1586  if (!extractAll)
1587  {
1588  result+="문서화된 ";
1589  }
1590  result+="모든 데이터 타입 멤버들의 목록입니다. ";
1591 
1592  result+="각 항목은 ";
1593  if (!extractAll)
1594  {
1595  result+="각 멤버에 대한 데이터 구조 문서화 페이지의 링크를 가지고 있습니다.";
1596  }
1597  else
1598  {
1599  result+="그들이 속한 데이터 타입의 링크를 가지고 있습니다. :";
1600  }
1601  return result;
1602  }
1603 
1604  /*! This is used in LaTeX as the title of the chapter with the
1605  * annotated compound index (Fortran).
1606  */
1608  { return "데이터 타입 색인"; }
1609 
1610  /*! This is used in LaTeX as the title of the chapter containing
1611  * the documentation of all data types (Fortran).
1612  */
1613  virtual QCString trTypeDocumentation()
1614  { return "데이터 타입 문서화"; }
1615 
1616  /*! This is used in the documentation of a file as a header before the
1617  * list of (global) subprograms (Fortran).
1618  */
1619  virtual QCString trSubprograms()
1620  { return "함수/서브루틴"; }
1621 
1622  /*! This is used in the documentation of a file/namespace before the list
1623  * of documentation blocks for subprograms (Fortran)
1624  */
1626  { return "함수/서브루틴 문서화"; }
1627 
1628  /*! This is used in the documentation of a file/namespace/group before
1629  * the list of links to documented compounds (Fortran)
1630  */
1631  virtual QCString trDataTypes()
1632  { return "데이터 타입들"; }
1633 
1634  /*! used as the title of page containing all the index of all modules (Fortran). */
1635  virtual QCString trModulesList()
1636  { return "모듈 목록"; }
1637 
1638  /*! used as an introduction to the modules list (Fortran) */
1639  virtual QCString trModulesListDescription(bool extractAll)
1640  {
1641  QCString result="다음은 ";
1642  if (!extractAll) result+="문서화된 ";
1643  result+="모든 모듈에 대한 목록입니다. (간략한 설명만을 보여줍니다) :";
1644  return result;
1645  }
1646 
1647  /*! used as the title of the HTML page of a module/type (Fortran) */
1649  ClassDef::CompoundType compType,
1650  bool isTemplate)
1651  {
1652  QCString result=(QCString)clName;
1653  switch(compType)
1654  {
1655  case ClassDef::Class: result+=" 모듈"; break;
1656  case ClassDef::Struct: result+=" 타입"; break;
1657  case ClassDef::Union: result+=" 공용체"; break;
1658  case ClassDef::Interface: result+=" 인터페이스"; break;
1659  case ClassDef::Protocol: result+=" 프로토콜"; break;
1660  case ClassDef::Category: result+=" 카테고리"; break;
1661  case ClassDef::Exception: result+=" 예외"; break;
1662  default: break;
1663  }
1664  if (isTemplate) result+=" 템플릿";
1665  result+=" 참조";
1666  return result;
1667  }
1668  /*! used as the title of the HTML page of a module (Fortran) */
1669  virtual QCString trModuleReference(const QCString &namespaceName)
1670  {
1671  QCString result=namespaceName;
1672  result+=" 모듈 참조";
1673  return result;
1674  }
1675 
1676  /*! This is put above each page as a link to all members of modules. (Fortran) */
1677  virtual QCString trModulesMembers()
1678  { return "모듈 멤버들"; }
1679 
1680  /*! This is an introduction to the page with all modules members (Fortran) */
1681  virtual QCString trModulesMemberDescription(bool extractAll)
1682  {
1683  QCString result="다음은 ";
1684  if (!extractAll) result+="문서화된 ";
1685  result+="모든 모듈 멤버의 목록입니다. ";
1686  if (extractAll)
1687  {
1688  result+="각 항목은 각 멤버의 모듈 문서화 페이지의 링크를 가지고 있습니다. :";
1689  }
1690  else
1691  {
1692  result+="각 항목은 그들이 속한 모듈의 링크를 가지고 있습니다. :";
1693  }
1694  return result;
1695  }
1696 
1697  /*! This is used in LaTeX as the title of the chapter with the
1698  * index of all modules (Fortran).
1699  */
1700  virtual QCString trModulesIndex()
1701  { return "모듈 색인"; }
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 trModule(bool, bool singular)
1708  {
1709  QCString result("모듈");
1710  if (!singular) result+="들";
1711  return result;
1712  }
1713  /*! This is put at the bottom of a module documentation page and is
1714  * followed by a list of files that were used to generate the page.
1715  */
1717  bool single)
1718  { // here s is one of " Module", " Struct" or " Union"
1719  // single is true implies a single file
1720  QCString result=(QCString)"다음 파일";
1721  if (single) result+=""; else result+="들";
1722  result+="로부터 생성된 ";
1723  result+="이 ";
1724  switch(compType)
1725  {
1726  case ClassDef::Class: result+="모듈"; break;
1727  case ClassDef::Struct: result+="타입"; break;
1728  case ClassDef::Union: result+="공용체"; break;
1729  case ClassDef::Interface: result+="인터페이스"; break;
1730  case ClassDef::Protocol: result+="프로토콜"; break;
1731  case ClassDef::Category: result+="카테고리"; break;
1732  case ClassDef::Exception: result+="예외"; break;
1733  default: break;
1734  }
1735  result+="의 문서화 페이지:";
1736  return result;
1737  }
1738  /*! This is used for translation of the word that will possibly
1739  * be followed by a single name or by a list of names
1740  * of the category.
1741  */
1742  virtual QCString trType(bool, bool singular)
1743  {
1744  QCString result("타입");
1745  if (!singular) result+="들";
1746  return result;
1747  }
1748  /*! This is used for translation of the word that will possibly
1749  * be followed by a single name or by a list of names
1750  * of the category.
1751  */
1752  virtual QCString trSubprogram(bool, bool singular)
1753  {
1754  QCString result("서브프로그램");
1755  if (!singular) result+="들";
1756  return result;
1757  }
1758 
1759  /*! C# Type Constraint list */
1760  virtual QCString trTypeConstraints()
1761  {
1762  return "타입 한정자들";
1763  }
1764 
1765 //////////////////////////////////////////////////////////////////////////
1766 // new since 1.6.0 (mainly for the new search engine)
1767 //////////////////////////////////////////////////////////////////////////
1768 
1769  /*! directory relation for \a name */
1770  virtual QCString trDirRelation(const QCString &name)
1771  {
1772  return QCString(name)+" 관계";
1773  }
1774 
1775  /*! Loading message shown when loading search results */
1776  virtual QCString trLoading()
1777  {
1778  return "로딩중...";
1779  }
1780 
1781  /*! Label used for search results in the global namespace */
1782  virtual QCString trGlobalNamespace()
1783  {
1784  return "전역 이름공간";
1785  }
1786 
1787  /*! Message shown while searching */
1788  virtual QCString trSearching()
1789  {
1790  return "검색중...";
1791  }
1792 
1793  /*! Text shown when no search results are found */
1794  virtual QCString trNoMatches()
1795  {
1796  return "일치하는것 없음";
1797  }
1798 
1799 //////////////////////////////////////////////////////////////////////////
1800 // new since 1.6.3 (missing items for the directory pages)
1801 //////////////////////////////////////////////////////////////////////////
1802 
1803  /*! when clicking a directory dependency label, a page with a
1804  * table is shown. The heading for the first column mentions the
1805  * source file that has a relation to another file.
1806  */
1807  virtual QCString trFileIn(const QCString &name)
1808  {
1809  return QCString(name) + "의 파일";
1810  }
1811 
1812  /*! when clicking a directory dependency label, a page with a
1813  * table is shown. The heading for the second column mentions the
1814  * destination file that is included.
1815  */
1816  virtual QCString trIncludesFileIn(const QCString &name)
1817  {
1818  return QCString(name) + "의 파일 포함";
1819  }
1821  /** Compiles a date string.
1822  * @param year Year in 4 digits
1823  * @param month Month of the year: 1=January
1824  * @param day Day of the Month: 1..31
1825  * @param dayOfWeek Day of the week: 1=Monday..7=Sunday
1826  * @param hour Hour of the day: 0..23
1827  * @param minutes Minutes in the hour: 0..59
1828  * @param seconds Seconds within the minute: 0..59
1829  * @param includeTime Include time in the result string?
1830  */
1831  virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
1832  int hour,int minutes,int seconds,
1833  bool includeTime)
1834  {
1835  static const char *days[] = { "월","화","수","목","금","토","일" };
1836  static const char *months[] = { "1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월" };
1837  QCString sdate;
1838  sdate.sprintf("%s %s %d %d",days[dayOfWeek-1],months[month-1],day,year);
1839  if (includeTime)
1840  {
1841  QCString stime;
1842  stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds);
1843  sdate+=stime;
1844  }
1845  return sdate;
1846  }
1847 
1848 //////////////////////////////////////////////////////////////////////////
1849 // new since 1.7.5
1850 //////////////////////////////////////////////////////////////////////////
1851 
1852  /*! Header for the page with bibliographic citations */
1853  virtual QCString trCiteReferences()
1854  { return "참고 문헌"; }
1855 
1856  /*! Text for copyright paragraph */
1857  virtual QCString trCopyright()
1858  { return "Copyright"; }
1859 
1860  /*! Header for the graph showing the directory dependencies */
1861  virtual QCString trDirDepGraph(const QCString &name)
1862  { return QCString(name) + QCString("에 대한 디렉토리 의존성 그래프:"); }
1863 
1864 //////////////////////////////////////////////////////////////////////////
1865 // new since 1.8.0
1866 //////////////////////////////////////////////////////////////////////////
1867 
1868  /*! Detail level selector shown for hierarchical indices */
1869  virtual QCString trDetailLevel()
1870  { return "상세 단계"; }
1871 
1872  /*! Section header for list of template parameters */
1873  virtual QCString trTemplateParameters()
1874  { return "템플릿 파라메터"; }
1875 
1876  /*! Used in dot graph when UML_LOOK is enabled and there are many fields */
1877  virtual QCString trAndMore(const QCString &number)
1878  { return QCString("그리고 ")+number+"개 더..."; }
1879 
1880  /*! Used file list for a Java enum */
1881  virtual QCString trEnumGeneratedFromFiles(bool /*single*/)
1882  { QCString result = "이 열거형에 대한 문서가 다음 파일(들)로부터 생성되었습니다.:";
1883  return result;
1884  }
1885 
1886  /*! Header of a Java enum page (Java enums are represented as classes). */
1887  virtual QCString trEnumReference(const QCString &name)
1888  { return QCString(name)+" Enum Reference"; }
1889 
1890  /*! Used for a section containing inherited members */
1891  virtual QCString trInheritedFrom(const QCString &members,const QCString &what)
1892  { return QCString(what) + QCString("(으)로부터 상속된 ") + QCString(members); }
1893 
1894  /*! Header of the sections with inherited members specific for the
1895  * base class(es)
1896  */
1898  { return "추가로 상속된 멤버들"; }
1899 
1900 //////////////////////////////////////////////////////////////////////////
1901 // new since 1.8.2
1902 //////////////////////////////////////////////////////////////////////////
1903 
1904  /*! Used as a tooltip for the toggle button that appears in the
1905  * navigation tree in the HTML output when GENERATE_TREEVIEW is
1906  * enabled. This tooltip explains the meaning of the button.
1907  */
1908  virtual QCString trPanelSynchronisationTooltip(bool enable)
1909  {
1910  QCString opt = enable ? "활성화" : "비활성화";
1911  return "패널 동기화를 "+opt+"하기 위해 클릭하십시오";
1912  }
1913 
1914  /*! Used in a method of an Objective-C class that is declared in a
1915  * a category. Note that the @1 marker is required and is replaced
1916  * by a link.
1917  */
1918  virtual QCString trProvidedByCategory()
1919  {
1920  return "카테고리 @0에 의해 제공됨.";
1921  }
1922 
1923  /*! Used in a method of an Objective-C category that extends a class.
1924  * Note that the @1 marker is required and is replaced by a link to
1925  * the class method.
1926  */
1927  virtual QCString trExtendsClass()
1928  {
1929  return "클래스 @0 확장.";
1930  }
1932  /*! Used as the header of a list of class methods in Objective-C.
1933  * These are similar to static public member functions in C++.
1934  */
1935  virtual QCString trClassMethods()
1936  {
1937  return "클래스 메소드들";
1938  }
1939 
1940  /*! Used as the header of a list of instance methods in Objective-C.
1941  * These are similar to public member functions in C++.
1942  */
1943  virtual QCString trInstanceMethods()
1944  {
1945  return "인스턴스 메소드들";
1946  }
1947 
1948  /*! Used as the header of the member functions of an Objective-C class.
1949  */
1951  {
1952  return "메소드 문서화";
1953  }
1954 
1955 //////////////////////////////////////////////////////////////////////////
1956 // new since 1.8.4
1957 //////////////////////////////////////////////////////////////////////////
1958 
1959  /** old style UNO IDL services: implemented interfaces */
1960  virtual QCString trInterfaces()
1961  { return "익스포트된 인터페이스들"; }
1962 
1963  /** old style UNO IDL services: inherited services */
1964  virtual QCString trServices()
1965  { return "포함된 서비스들"; }
1966 
1967  /** UNO IDL constant groups */
1968  virtual QCString trConstantGroups()
1969  { return "상수 그룹들"; }
1970 
1971  /** UNO IDL constant groups */
1972  virtual QCString trConstantGroupReference(const QCString &namespaceName)
1973  {
1974  QCString result=namespaceName;
1975  result+=" 상수 그룹 레퍼런스";
1976  return result;
1977  }
1978  /** UNO IDL service page title */
1979  virtual QCString trServiceReference(const QCString &sName)
1980  {
1981  QCString result=(QCString)sName;
1982  result+=" 서비스 레퍼런스";
1983  return result;
1984  }
1985  /** UNO IDL singleton page title */
1986  virtual QCString trSingletonReference(const QCString &sName)
1987  {
1988  QCString result=(QCString)sName;
1989  result+=" 싱글톤 레퍼런스";
1990  return result;
1991  }
1992  /** UNO IDL service page */
1993  virtual QCString trServiceGeneratedFromFiles(bool single)
1994  {
1995  // single is true implies a single file
1996  QCString result=(QCString)"이 서비스에 대한 문서화는 다음의 파일";
1997  if (!single) result+="들";
1998  result+="로부터 생성되었습니다.:";
1999  return result;
2000  }
2001  /** UNO IDL singleton page */
2002  virtual QCString trSingletonGeneratedFromFiles(bool single)
2003  {
2004  // single is true implies a single file
2005  QCString result=(QCString)"이 싱글톤에 대한 문서화는 다음의 파일";
2006  if (!single) result+="들";
2007  result+="로부터 생성되었습니다.:";
2008  return result;
2009  }
2010 
2011 };
2012 
2013 #endif
TranslatorKorean::trExamplesDescription
virtual QCString trExamplesDescription()
Definition: translator_kr.h:368
getDotImageExtension
QCString getDotImageExtension()
Definition: util.cpp:7032
TranslatorKorean::trLegendTitle
virtual QCString trLegendTitle()
Definition: translator_kr.h:1024
TranslatorKorean::trOverloadText
virtual QCString trOverloadText()
Definition: translator_kr.h:1553
TranslatorKorean::trGeneratedFromFiles
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
Definition: translator_kr.h:793
TranslatorKorean::trDetailLevel
virtual QCString trDetailLevel()
Definition: translator_kr.h:1882
TranslatorKorean::trFriends
virtual QCString trFriends()
Definition: translator_kr.h:615
TranslatorKorean::trClass
virtual QCString trClass(bool, bool singular)
Definition: translator_kr.h:1233
TranslatorKorean::trDeprecatedList
virtual QCString trDeprecatedList()
Definition: translator_kr.h:1369
TranslatorKorean::trStaticPrivateMembers
virtual QCString trStaticPrivateMembers()
Definition: translator_kr.h:688
TranslatorKorean::trProvidedByCategory
virtual QCString trProvidedByCategory()
Definition: translator_kr.h:1931
TranslatorKorean::trClassHierarchyDescription
virtual QCString trClassHierarchyDescription()
Definition: translator_kr.h:268
ClassDef::Union
@ Union
Definition: classdef.h:109
TranslatorKorean::trMember
virtual QCString trMember(bool, bool singular)
Definition: translator_kr.h:1288
TranslatorKorean::trTodo
virtual QCString trTodo()
Definition: translator_kr.h:984
TranslatorKorean::trPrivateSlots
virtual QCString trPrivateSlots()
Definition: translator_kr.h:686
TranslatorKorean::trGlobalNamespace
virtual QCString trGlobalNamespace()
Definition: translator_kr.h:1795
TranslatorKorean::trAttention
virtual QCString trAttention()
Definition: translator_kr.h:1006
TranslatorKorean::trServiceReference
virtual QCString trServiceReference(const QCString &sName)
UNO IDL service page title
Definition: translator_kr.h:1992
TranslatorKorean::trDirIndex
virtual QCString trDirIndex()
Definition: translator_kr.h:1508
TranslatorKorean::trTypeDocumentation
virtual QCString trTypeDocumentation()
Definition: translator_kr.h:1626
TranslatorAdapter_1_8_15
Definition: translator_adapter.h:82
TranslatorKorean::trModules
virtual QCString trModules()
Definition: translator_kr.h:205
TranslatorKorean::trSignals
virtual QCString trSignals()
Definition: translator_kr.h:674
TranslatorKorean::trStaticProtectedAttribs
virtual QCString trStaticProtectedAttribs()
Definition: translator_kr.h:962
TranslatorKorean::trDataTypes
virtual QCString trDataTypes()
Definition: translator_kr.h:1644
TranslatorKorean::latexCommandName
virtual QCString latexCommandName()
Definition: translator_kr.h:104
TranslatorKorean::trCompounds
virtual QCString trCompounds()
Definition: translator_kr.h:530
TranslatorKorean::trRelatedPages
virtual QCString trRelatedPages()
Definition: translator_kr.h:256
TranslatorKorean::trPageAbbreviation
virtual QCString trPageAbbreviation()
Definition: translator_kr.h:831
generateMarker
QCString generateMarker(int id)
Definition: util.cpp:284
TranslatorKorean::trMethodDocumentation
virtual QCString trMethodDocumentation()
Definition: translator_kr.h:1963
QCString::isEmpty
bool isEmpty() const
Returns TRUE iff the string is empty
Definition: qcstring.h:144
TranslatorKorean::trPrecondition
virtual QCString trPrecondition()
Definition: translator_kr.h:886
TranslatorKorean::trClassHierarchy
virtual QCString trClassHierarchy()
Definition: translator_kr.h:209
TranslatorKorean::trTypedefDocumentation
virtual QCString trTypedefDocumentation()
Definition: translator_kr.h:506
TranslatorKorean::trSubprogram
virtual QCString trSubprogram(bool, bool singular)
Definition: translator_kr.h:1765
TranslatorKorean::trSingletonGeneratedFromFiles
virtual QCString trSingletonGeneratedFromFiles(bool single)
UNO IDL singleton page
Definition: translator_kr.h:2015
ClassDef::CompoundType
CompoundType
The various compound types
Definition: classdef.h:107
TranslatorKorean::trCompoundMembersDescription
virtual QCString trCompoundMembersDescription(bool extractAll)
Definition: translator_kr.h:297
TranslatorKorean::trRemarks
virtual QCString trRemarks()
Definition: translator_kr.h:1002
TranslatorKorean::trClasses
virtual QCString trClasses()
Definition: translator_kr.h:1128
TranslatorKorean::trEnumerationValues
virtual QCString trEnumerationValues()
Definition: translator_kr.h:494
TranslatorKorean::trPage
virtual QCString trPage(bool, bool singular)
Definition: translator_kr.h:1277
ClassDef::Interface
@ Interface
Definition: classdef.h:110
TranslatorKorean::trModulesList
virtual QCString trModulesList()
Definition: translator_kr.h:1648
TranslatorKorean::trInheritedByList
virtual QCString trInheritedByList(int numEntries)
Definition: translator_kr.h:727
TranslatorKorean::trReturns
virtual QCString trReturns()
Definition: translator_kr.h:576
TranslatorKorean::trInheritedFrom
virtual QCString trInheritedFrom(const QCString &members, const QCString &what)
Definition: translator_kr.h:1904
TranslatorKorean::trPackageTypes
virtual QCString trPackageTypes()
Definition: translator_kr.h:1397
TranslatorKorean::trDefineDocumentation
virtual QCString trDefineDocumentation()
Definition: translator_kr.h:500
TranslatorKorean::trGotoGraphicalHierarchy
virtual QCString trGotoGraphicalHierarchy()
Definition: translator_kr.h:914
TranslatorKorean::trFileListDescription
virtual QCString trFileListDescription(bool extractAll)
Definition: translator_kr.h:273
TranslatorKorean::trReimplementedFromList
virtual QCString trReimplementedFromList(int numEntries)
Definition: translator_kr.h:735
TranslatorKorean::trPackageListDescription
virtual QCString trPackageListDescription()
Definition: translator_kr.h:1150
TranslatorKorean::trThisIsTheListOfAllMembers
virtual QCString trThisIsTheListOfAllMembers()
Definition: translator_kr.h:171
TranslatorKorean::trFunctionDocumentation
virtual QCString trFunctionDocumentation()
Definition: translator_kr.h:518
TranslatorKorean::trCompoundListDescriptionFortran
virtual QCString trCompoundListDescriptionFortran()
Definition: translator_kr.h:1592
TranslatorKorean::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_kr.h:1209
TranslatorKorean::trProtectedTypes
virtual QCString trProtectedTypes()
Definition: translator_kr.h:954
TranslatorKorean::trFileMembersDescription
virtual QCString trFileMembersDescription(bool extractAll)
Definition: translator_kr.h:344
TranslatorKorean::trParameters
virtual QCString trParameters()
Definition: translator_kr.h:584
TranslatorKorean::trDocumentation
virtual QCString trDocumentation()
Definition: translator_kr.h:382
TranslatorKorean::trGotoTextualHierarchy
virtual QCString trGotoTextualHierarchy()
Definition: translator_kr.h:918
TranslatorKorean::trAdditionalInheritedMembers
virtual QCString trAdditionalInheritedMembers()
Definition: translator_kr.h:1910
TranslatorKorean::trDir
virtual QCString trDir(bool, bool singular)
Definition: translator_kr.h:1539
TranslatorKorean::trRTFTableOfContents
virtual QCString trRTFTableOfContents()
Definition: translator_kr.h:1357
TranslatorKorean::trTestList
virtual QCString trTestList()
Definition: translator_kr.h:1103
TranslatorKorean::trRelatedSubscript
virtual QCString trRelatedSubscript()
Definition: translator_kr.h:126
TranslatorKorean::trHierarchicalIndex
virtual QCString trHierarchicalIndex()
Definition: translator_kr.h:394
TranslatorKorean::trModulesListDescription
virtual QCString trModulesListDescription(bool extractAll)
Definition: translator_kr.h:1652
TranslatorKorean::trFile
virtual QCString trFile(bool, bool singular)
Definition: translator_kr.h:1244
TranslatorKorean::trReferences
virtual QCString trReferences()
Definition: translator_kr.h:1325
TranslatorKorean::trBugList
virtual QCString trBugList()
Definition: translator_kr.h:1175
ClassDef::Class
@ Class
Definition: classdef.h:107
TranslatorKorean::trFileList
virtual QCString trFileList()
Definition: translator_kr.h:226
TranslatorKorean::trModulesMemberDescription
virtual QCString trModulesMemberDescription(bool extractAll)
Definition: translator_kr.h:1694
TranslatorKorean::trGroup
virtual QCString trGroup(bool, bool singular)
Definition: translator_kr.h:1266
TranslatorKorean::trPrivateMembers
virtual QCString trPrivateMembers()
Definition: translator_kr.h:684
TranslatorKorean::trCompoundMembersDescriptionFortran
virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
Definition: translator_kr.h:1596
TranslatorKorean
Definition: translator_kr.h:51
TranslatorKorean::trInheritsList
virtual QCString trInheritsList(int numEntries)
Definition: translator_kr.h:719
TranslatorKorean::trStaticPackageAttribs
virtual QCString trStaticPackageAttribs()
Definition: translator_kr.h:1425
TranslatorKorean::trClassDocumentation
virtual QCString trClassDocumentation()
Definition: translator_kr.h:427
TranslatorKorean::trNoMatches
virtual QCString trNoMatches()
Definition: translator_kr.h:1807
TranslatorKorean::trStaticPublicAttribs
virtual QCString trStaticPublicAttribs()
Definition: translator_kr.h:950
TranslatorKorean::trNamespaceIndex
virtual QCString trNamespaceIndex()
Definition: translator_kr.h:767
TranslatorKorean::trDirDescription
virtual QCString trDirDescription()
Definition: translator_kr.h:1526
TranslatorKorean::trGotoDocumentation
virtual QCString trGotoDocumentation()
Definition: translator_kr.h:881
TranslatorKorean::trAll
virtual QCString trAll()
Definition: translator_kr.h:1437
TranslatorKorean::trStaticProtectedMembers
virtual QCString trStaticProtectedMembers()
Definition: translator_kr.h:682
TranslatorKorean::trMemberFunctionDocumentationFortran
virtual QCString trMemberFunctionDocumentationFortran()
Definition: translator_kr.h:1580
TranslatorKorean::trDefinedIn
virtual QCString trDefinedIn()
Definition: translator_kr.h:197
TranslatorKorean::trRTFGeneralIndex
virtual QCString trRTFGeneralIndex()
Definition: translator_kr.h:1224
TranslatorKorean::trNote
virtual QCString trNote()
Definition: translator_kr.h:931
TranslatorKorean::trServices
virtual QCString trServices()
old style UNO IDL services: inherited services
Definition: translator_kr.h:1977
TranslatorKorean::trPanelSynchronisationTooltip
virtual QCString trPanelSynchronisationTooltip(bool enable)
Definition: translator_kr.h:1921
TranslatorKorean::trPublicSlots
virtual QCString trPublicSlots()
Definition: translator_kr.h:672
TranslatorKorean::trNamespaceMemberDescription
virtual QCString trNamespaceMemberDescription(bool extractAll)
Definition: translator_kr.h:753
TranslatorKorean::trEnumerationValueDocumentation
virtual QCString trEnumerationValueDocumentation()
Definition: translator_kr.h:1572
TranslatorKorean::trPrivateAttribs
virtual QCString trPrivateAttribs()
Definition: translator_kr.h:970
TranslatorKorean::trRelatedFunctions
virtual QCString trRelatedFunctions()
Definition: translator_kr.h:122
TranslatorKorean::trSourceFile
virtual QCString trSourceFile(QCString &filename)
Definition: translator_kr.h:1496
TranslatorKorean::trSearch
virtual QCString trSearch()
Definition: translator_kr.h:264
TranslatorKorean::trModuleDocumentation
virtual QCString trModuleDocumentation()
Definition: translator_kr.h:421
TranslatorKorean::trModule
virtual QCString trModule(bool, bool singular)
Definition: translator_kr.h:1720
TranslatorKorean::trImplementedInList
virtual QCString trImplementedInList(int numEntries)
Definition: translator_kr.h:1345
TranslatorKorean::trConstantGroupReference
virtual QCString trConstantGroupReference(const QCString &namespaceName)
UNO IDL constant groups
Definition: translator_kr.h:1985
TranslatorKorean::trCollaborationDiagram
virtual QCString trCollaborationDiagram(const QCString &clName)
Definition: translator_kr.h:861
TranslatorKorean::trSearchResultsTitle
virtual QCString trSearchResultsTitle()
Definition: translator_kr.h:1454
TranslatorKorean::trPageDocumentation
virtual QCString trPageDocumentation()
Definition: translator_kr.h:454
TranslatorKorean::trFileReference
virtual QCString trFileReference(const QCString &fileName)
Definition: translator_kr.h:655
TranslatorKorean::trAuthor
virtual QCString trAuthor(bool, bool singular)
Definition: translator_kr.h:1312
TranslatorKorean::trTypeConstraints
virtual QCString trTypeConstraints()
Definition: translator_kr.h:1773
TranslatorKorean::trStaticPrivateAttribs
virtual QCString trStaticPrivateAttribs()
Definition: translator_kr.h:974
TranslatorKorean::trCode
virtual QCString trCode()
Definition: translator_kr.h:906
TranslatorKorean::trEventDocumentation
virtual QCString trEventDocumentation()
Definition: translator_kr.h:1386
TranslatorKorean::trIncludingInheritedMembers
virtual QCString trIncludingInheritedMembers()
Definition: translator_kr.h:175
TranslatorKorean::trIncludesFileIn
virtual QCString trIncludesFileIn(const QCString &name)
Definition: translator_kr.h:1829
TranslatorKorean::trFunctions
virtual QCString trFunctions()
Definition: translator_kr.h:482
TranslatorKorean::trType
virtual QCString trType(bool, bool singular)
Definition: translator_kr.h:1755
TranslatorKorean::trWarning
virtual QCString trWarning()
Definition: translator_kr.h:564
TranslatorKorean::trPostcondition
virtual QCString trPostcondition()
Definition: translator_kr.h:891
TranslatorKorean::trAndMore
virtual QCString trAndMore(const QCString &number)
Definition: translator_kr.h:1890
TranslatorKorean::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_kr.h:1844
TranslatorKorean::trSearchMatches
virtual QCString trSearchMatches()
Definition: translator_kr.h:1485
TranslatorKorean::trTest
virtual QCString trTest()
Definition: translator_kr.h:1098
TranslatorKorean::trISOLang
virtual QCString trISOLang()
Definition: translator_kr.h:114
TranslatorKorean::trDefines
virtual QCString trDefines()
Definition: translator_kr.h:464
TranslatorKorean::trInitialValue
virtual QCString trInitialValue()
Definition: translator_kr.h:901
TranslatorKorean::trSearchResults
virtual QCString trSearchResults(int numDocuments)
Definition: translator_kr.h:1466
TranslatorKorean::~TranslatorKorean
virtual ~TranslatorKorean()
Definition: translator_kr.h:68
TranslatorKorean::trDeprecated
virtual QCString trDeprecated()
Definition: translator_kr.h:851
TranslatorKorean::trModuleIndex
virtual QCString trModuleIndex()
Definition: translator_kr.h:388
TranslatorKorean::trCompoundIndex
virtual QCString trCompoundIndex()
Definition: translator_kr.h:400
TranslatorKorean::trServiceGeneratedFromFiles
virtual QCString trServiceGeneratedFromFiles(bool single)
UNO IDL service page
Definition: translator_kr.h:2006
TranslatorKorean::trSingletonReference
virtual QCString trSingletonReference(const QCString &sName)
UNO IDL singleton page title
Definition: translator_kr.h:1999
ClassDef::Category
@ Category
Definition: classdef.h:112
TranslatorKorean::trFileIn
virtual QCString trFileIn(const QCString &name)
Definition: translator_kr.h:1820
TranslatorKorean::trExceptions
virtual QCString trExceptions()
Definition: translator_kr.h:588
ClassDef::Struct
@ Struct
Definition: classdef.h:108
TranslatorKorean::trLoading
virtual QCString trLoading()
Definition: translator_kr.h:1789
TranslatorKorean::trMemberList
virtual QCString trMemberList()
Definition: translator_kr.h:167
TranslatorKorean::trSeeAlso
virtual QCString trSeeAlso()
Definition: translator_kr.h:580
TranslatorKorean::trLegend
virtual QCString trLegend()
Definition: translator_kr.h:1088
TranslatorKorean::trReimplementedInList
virtual QCString trReimplementedInList(int numEntries)
Definition: translator_kr.h:743
TranslatorKorean::trCompoundIndexFortran
virtual QCString trCompoundIndexFortran()
Definition: translator_kr.h:1620
TranslatorKorean::trGeneratedAt
virtual QCString trGeneratedAt(const QCString &date, const QCString &projName)
Definition: translator_kr.h:545
TranslatorKorean::trDirDocumentation
virtual QCString trDirDocumentation()
Definition: translator_kr.h:1514
TranslatorKorean::trCallerGraph
virtual QCString trCallerGraph()
Definition: translator_kr.h:1564
TranslatorKorean::trCompoundListFortran
virtual QCString trCompoundListFortran()
Definition: translator_kr.h:1584
TranslatorKorean::trProperties
virtual QCString trProperties()
Definition: translator_kr.h:1113
TranslatorKorean::trMore
virtual QCString trMore()
Definition: translator_kr.h:159
TranslatorKorean::trRelatedFunctionDocumentation
virtual QCString trRelatedFunctionDocumentation()
Definition: translator_kr.h:625
TranslatorKorean::trInclDepGraph
virtual QCString trInclDepGraph(const QCString &fName)
Definition: translator_kr.h:866
TranslatorKorean::trCompoundMembersFortran
virtual QCString trCompoundMembersFortran()
Definition: translator_kr.h:1588
TranslatorKorean::trExampleDocumentation
virtual QCString trExampleDocumentation()
Definition: translator_kr.h:448
TranslatorKorean::trCompoundReference
virtual QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_kr.h:633
TranslatorKorean::trEnumReference
virtual QCString trEnumReference(const QCString &name)
Definition: translator_kr.h:1900
TranslatorKorean::trGotoSourceCode
virtual QCString trGotoSourceCode()
Definition: translator_kr.h:876
TranslatorKorean::trDetailedDescription
virtual QCString trDetailedDescription()
Definition: translator_kr.h:130
TranslatorKorean::trStaticPublicMembers
virtual QCString trStaticPublicMembers()
Definition: translator_kr.h:676
TranslatorKorean::trNamespace
virtual QCString trNamespace(bool, bool singular)
Definition: translator_kr.h:1255
TranslatorKorean::trFileDocumentation
virtual QCString trFileDocumentation()
Definition: translator_kr.h:442
TranslatorKorean::trGeneratedBy
virtual QCString trGeneratedBy()
Definition: translator_kr.h:592
TranslatorKorean::trFileIndex
virtual QCString trFileIndex()
Definition: translator_kr.h:415
TranslatorKorean::latexLanguageSupportCommand
virtual QCString latexLanguageSupportCommand()
Definition: translator_kr.h:97
TranslatorKorean::trPackageAttribs
virtual QCString trPackageAttribs()
Definition: translator_kr.h:1418
TranslatorKorean::trNamespaces
virtual QCString trNamespaces()
Definition: translator_kr.h:783
TranslatorKorean::trImplementedFromList
virtual QCString trImplementedFromList(int numEntries)
Definition: translator_kr.h:1337
TranslatorKorean::trMainPage
virtual QCString trMainPage()
Definition: translator_kr.h:825
TranslatorKorean::trEnumerations
virtual QCString trEnumerations()
Definition: translator_kr.h:476
TranslatorKorean::trInclByDepGraph
virtual QCString trInclByDepGraph()
Definition: translator_kr.h:1010
TranslatorKorean::trMemberEnumerationDocumentation
virtual QCString trMemberEnumerationDocumentation()
Definition: translator_kr.h:138
TranslatorKorean::trModulesMembers
virtual QCString trModulesMembers()
Definition: translator_kr.h:1690
TranslatorKorean::trPackageList
virtual QCString trPackageList()
Definition: translator_kr.h:1145
TranslatorKorean::trPublicAttribs
virtual QCString trPublicAttribs()
Definition: translator_kr.h:939
Config_getBool
#define Config_getBool(name)
Definition: config.h:33
ClassDef::Protocol
@ Protocol
Definition: classdef.h:111
TranslatorKorean::trForInternalUseOnly
virtual QCString trForInternalUseOnly()
Definition: translator_kr.h:560
TranslatorKorean::trConstructorDocumentation
virtual QCString trConstructorDocumentation()
Definition: translator_kr.h:871
TranslatorKorean::trEnumGeneratedFromFiles
virtual QCString trEnumGeneratedFromFiles(bool)
Definition: translator_kr.h:1894
TranslatorKorean::trPublicTypes
virtual QCString trPublicTypes()
Definition: translator_kr.h:935
TranslatorKorean::trPropertyDocumentation
virtual QCString trPropertyDocumentation()
Definition: translator_kr.h:1118
TranslatorKorean::trGeneratedFromFilesFortran
virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single)
Definition: translator_kr.h:1729
TranslatorKorean::trVersion
virtual QCString trVersion()
Definition: translator_kr.h:568
TranslatorKorean::trNamespaceDocumentation
virtual QCString trNamespaceDocumentation()
Definition: translator_kr.h:773
TranslatorKorean::trMemberDataDocumentation
virtual QCString trMemberDataDocumentation()
Definition: translator_kr.h:146
TranslatorKorean::trExtendsClass
virtual QCString trExtendsClass()
Definition: translator_kr.h:1940
TranslatorKorean::trNamespaceMembers
virtual QCString trNamespaceMembers()
Definition: translator_kr.h:749
TranslatorKorean::trReturnValues
virtual QCString trReturnValues()
Definition: translator_kr.h:820
Config_getString
#define Config_getString(name)
Definition: config.h:32
TranslatorKorean::trModulesDescription
virtual QCString trModulesDescription()
Definition: translator_kr.h:376
TranslatorKorean::trPackages
virtual QCString trPackages()
Definition: translator_kr.h:1155
TranslatorKorean::trRelatedPagesDescription
virtual QCString trRelatedPagesDescription()
Definition: translator_kr.h:372
TranslatorKorean::trNamespaceList
virtual QCString trNamespaceList()
Definition: translator_kr.h:600
TranslatorKorean::trFileMembers
virtual QCString trFileMembers()
Definition: translator_kr.h:243
TranslatorKorean::trCopyright
virtual QCString trCopyright()
Definition: translator_kr.h:1870
TranslatorKorean::trGlobal
virtual QCString trGlobal(bool, bool singular)
Definition: translator_kr.h:1299
TranslatorKorean::trDate
virtual QCString trDate()
Definition: translator_kr.h:572
TranslatorKorean::trTemplateParameters
virtual QCString trTemplateParameters()
Definition: translator_kr.h:1886
TranslatorKorean::trEvents
virtual QCString trEvents()
Definition: translator_kr.h:1381
TranslatorKorean::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_kr.h:1218
TranslatorKorean::trCompoundMembers
virtual QCString trCompoundMembers()
Definition: translator_kr.h:230
TranslatorKorean::trDirectories
virtual QCString trDirectories()
Definition: translator_kr.h:1520
TranslatorKorean::trInterfaces
virtual QCString trInterfaces()
old style UNO IDL services: implemented interfaces
Definition: translator_kr.h:1973
TranslatorKorean::trTypedefs
virtual QCString trTypedefs()
Definition: translator_kr.h:470
TranslatorKorean::trReferenceManual
virtual QCString trReferenceManual()
Definition: translator_kr.h:458
TranslatorKorean::trDefinedInSourceFile
virtual QCString trDefinedInSourceFile()
Definition: translator_kr.h:842
TranslatorKorean::trSubprograms
virtual QCString trSubprograms()
Definition: translator_kr.h:1632
TranslatorKorean::trModulesIndex
virtual QCString trModulesIndex()
Definition: translator_kr.h:1713
TranslatorKorean::trEnumName
virtual QCString trEnumName()
Definition: translator_kr.h:189
TranslatorKorean::trStaticPackageMembers
virtual QCString trStaticPackageMembers()
Definition: translator_kr.h:1411
TranslatorKorean::trProtectedSlots
virtual QCString trProtectedSlots()
Definition: translator_kr.h:680
TranslatorKorean::trSearching
virtual QCString trSearching()
Definition: translator_kr.h:1801
TranslatorKorean::trSince
virtual QCString trSince()
Definition: translator_kr.h:1014
TranslatorAdapterBase
Base of the translator adapter tree.
Definition: translator_adapter.h:13
TranslatorKorean::trReferencedBy
virtual QCString trReferencedBy()
Definition: translator_kr.h:998
TranslatorKorean::trDefinedAtLineInSourceFile
virtual QCString trDefinedAtLineInSourceFile()
Definition: translator_kr.h:838
TranslatorKorean::trVariables
virtual QCString trVariables()
Definition: translator_kr.h:488
TranslatorKorean::trDirRelation
virtual QCString trDirRelation(const QCString &name)
Definition: translator_kr.h:1783
TranslatorKorean::trBug
virtual QCString trBug()
Definition: translator_kr.h:1170
TranslatorKorean::trCompoundList
virtual QCString trCompoundList()
Definition: translator_kr.h:213
TranslatorKorean::trDefineValue
virtual QCString trDefineValue()
Definition: translator_kr.h:1160
TranslatorKorean::trCallGraph
virtual QCString trCallGraph()
Definition: translator_kr.h:1442
TranslatorKorean::trGraphicalHierarchy
virtual QCString trGraphicalHierarchy()
Definition: translator_kr.h:910
TranslatorKorean::trInstanceMethods
virtual QCString trInstanceMethods()
Definition: translator_kr.h:1956
TranslatorKorean::trPublicMembers
virtual QCString trPublicMembers()
Definition: translator_kr.h:670
TranslatorKorean::trExamples
virtual QCString trExamples()
Definition: translator_kr.h:260
TranslatorKorean::trDirReference
virtual QCString trDirReference(const QCString &dirName)
Definition: translator_kr.h:1533
ClassDef::Exception
@ Exception
Definition: classdef.h:113
TranslatorKorean::trModuleReference
virtual QCString trModuleReference(const QCString &namespaceName)
Definition: translator_kr.h:1682
TranslatorKorean::trPageIndex
virtual QCString trPageIndex()
Definition: translator_kr.h:922
TranslatorKorean::trCompoundListDescription
virtual QCString trCompoundListDescription()
Definition: translator_kr.h:282
TranslatorKorean::trCiteReferences
virtual QCString trCiteReferences()
Definition: translator_kr.h:1866
TranslatorKorean::trNamespaceListDescription
virtual QCString trNamespaceListDescription(bool extractAll)
Definition: translator_kr.h:604
TranslatorKorean::trPrivateTypes
virtual QCString trPrivateTypes()
Definition: translator_kr.h:966
TranslatorKorean::trMemberFunctionDocumentation
virtual QCString trMemberFunctionDocumentation()
Definition: translator_kr.h:142
TranslatorKorean::trProtectedMembers
virtual QCString trProtectedMembers()
Definition: translator_kr.h:678
TranslatorKorean::trWriteList
virtual QCString trWriteList(int numEntries)
Definition: translator_kr.h:694
TranslatorKorean::trEnumValue
virtual QCString trEnumValue()
Definition: translator_kr.h:193
TranslatorKorean::trSubprogramDocumentation
virtual QCString trSubprogramDocumentation()
Definition: translator_kr.h:1638
TranslatorKorean::trTodoList
virtual QCString trTodoList()
Definition: translator_kr.h:989
TranslatorKorean::trDirDepGraph
virtual QCString trDirDepGraph(const QCString &name)
Definition: translator_kr.h:1874
TranslatorKorean::trNamespaceReference
virtual QCString trNamespaceReference(const QCString &namespaceName)
Definition: translator_kr.h:663
TranslatorKorean::trConstantGroups
virtual QCString trConstantGroups()
UNO IDL constant groups
Definition: translator_kr.h:1981
TranslatorKorean::trClassDiagram
virtual QCString trClassDiagram(const QCString &clName)
Definition: translator_kr.h:554
TranslatorKorean::trProtectedAttribs
virtual QCString trProtectedAttribs()
Definition: translator_kr.h:958
TranslatorKorean::trInvariant
virtual QCString trInvariant()
Definition: translator_kr.h:896
TranslatorKorean::trPackageMembers
virtual QCString trPackageMembers()
Definition: translator_kr.h:1404
TranslatorKorean::trLegendDocs
virtual QCString trLegendDocs()
Definition: translator_kr.h:1031
TranslatorKorean::trGeneratedAutomatically
virtual QCString trGeneratedAutomatically(const QCString &s)
Definition: translator_kr.h:181
QCString::sprintf
QCString & sprintf(const char *format,...)
Definition: qcstring.cpp:24
TranslatorKorean::trClassMethods
virtual QCString trClassMethods()
Definition: translator_kr.h:1948
TranslatorKorean::trCompoundReferenceFortran
virtual QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_kr.h:1661
TranslatorKorean::trVariableDocumentation
virtual QCString trVariableDocumentation()
Definition: translator_kr.h:524
TranslatorKorean::trMemberTypedefDocumentation
virtual QCString trMemberTypedefDocumentation()
Definition: translator_kr.h:134
TranslatorKorean::trPackage
virtual QCString trPackage(const QCString &name)
Definition: translator_kr.h:1140
TranslatorKorean::idLanguage
virtual QCString idLanguage()
Definition: translator_kr.h:80
TranslatorKorean::trListOfAllMembers
virtual QCString trListOfAllMembers()
Definition: translator_kr.h:163
TranslatorKorean::trEnumerationTypeDocumentation
virtual QCString trEnumerationTypeDocumentation()
Definition: translator_kr.h:512
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108