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