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-1.9.x/2.x update
22 * * GitHub Copilot (2026-06-10): updated to be fully up-to-date with
23 * TranslatorEnglish, implementing all 76 methods missing since 1.8.15
24 * doxygen-svn
25 * * fly1004@gmail.com
26 * doxygen-1.5.3
27 * * Astromaker(http://ngps.net/)
28 * * gpgiki(http://www.gpgstudy.com/gpgiki/)
29 * doxygen-1.2.11
30 * * ryk */
31
32/*!
33 When defining a translator class for the new language, follow
34 the description in the documentation. One of the steps says
35 that you should copy the translator_en.h (this) file to your
36 translator_xx.h new file. Your new language should use the
37 Translator class as the base class. This means that you need to
38 implement exactly the same (pure virtual) override methods as the
39 TranslatorEnglish does. Because of this, it is a good idea to
40 start with the copy of TranslatorEnglish and replace the strings
41 one by one.
42
43 It is not necessary to include "translator.h" or
44 "translator_adapter.h" here. The files are included in the
45 language.cpp correctly. Not including any of the mentioned
46 files frees the maintainer from thinking about whether the
47 first, the second, or both files should be included or not, and
48 why. This holds namely for localized translators because their
49 base class is changed occasionally to adapter classes when the
50 Translator class changes the interface, or back to the
51 Translator class (by the local maintainer) when the localized
52 translator is made up-to-date again.
53*/
55{
56 public:
57
58 // --- Language control methods -------------------
59
60 /*! Used for identification of the language. The identification
61 * should not be translated. It should be replaced by the name
62 * of the language in English using lower-case characters only
63 * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
64 * the identification used in language.cpp.
65 */
67 { return "korean"; }
68
69 /*! Used to get the LaTeX command(s) for the language support.
70 * This method should return string with commands that switch
71 * LaTeX to the desired language. For example
72 * <pre>"\\usepackage[german]{babel}\n"
73 * </pre>
74 * or
75 * <pre>"\\usepackage{polski}\n"
76 * "\\usepackage[latin2]{inputenc}\n"
77 * "\\usepackage[T1]{fontenc}\n"
78 * </pre>
79 *
80 * The English LaTeX does not use such commands. Because of this
81 * the empty string is returned in this implementation.
82 */
84 {
85 // I'm not sure what this should be.
86 // When I figure it out, I'll update this.
87 // see http://www.ktug.or.kr/jsboard/read.php?table=operate&no=4422&page=1
88 return "\\usepackage{kotex}\n";
89 }
91 {
92 return p_latexCommandName("xelatex");
93 }
95 {
96 return "ko";
97 }
99 {
100 return "0x412 Korean";
101 }
102 bool needsPunctuation() override
103 {
104 return false;
105 }
106 // --- Language translation methods -------------------
107
108 /*! used in the compound documentation before a list of related functions. */
110 { return "관련된 함수들"; }
111
112 /*! subscript for the related functions. */
114 { return "(다음은 멤버 함수들이 아닙니다. 주의하십시오.)"; }
115
116 /*! header that is put before the detailed description of files, classes and namespaces. */
118 { return "상세한 설명"; }
119
120 /*! header that is used when the summary tag is missing inside the details tag */
122 { return "상세"; }
123
124 /*! header that is put before the list of typedefs. */
126 { return "멤버 타입정의 문서화"; }
127
128 /*! header that is put before the list of enumerations. */
130 { return "멤버 열거형 문서화"; }
131
132 /*! header that is put before the list of member functions. */
134 { return "멤버 함수 문서화"; }
135
136 /*! header that is put before the list of member attributes. */
138 {
139 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
140 {
141 return "필드 문서화";
142 }
143 else
144 {
145 return "멤버 데이터 문서화";
146 }
147 }
148
149 /*! this is the text of a link put after brief descriptions. */
150 QCString trMore() override
151 { return "더 자세히 ..."; }
152
153 /*! put in the class documentation */
155 { return "모든 멤버 목록"; }
156
157 /*! used as the title of the "list of all members" page of a class */
159 { return "멤버 목록"; }
160
161 /*! this is the first part of a sentence that is followed by a class name */
163 { return "다음에 대한 모든 멤버의 목록입니다 :"; }
164
165 /*! this is the remainder of the sentence after the class name */
167 { return " (모든 상속된 멤버들도 포함합니다.)"; }
168
169 /*! this is put at the author sections at the bottom of man pages.
170 * parameter s is name of the project name.
171 */
173 { QCString result="소스 코드로부터 ";
174 if (!s.isEmpty()) result+=s+"를 위해 ";
175 result+="Doxygen에 의해 자동으로 생성됨.";
176 return result;
177 }
178
179 /*! put after an enum name in the list of all members */
181 { return "열거형 이름"; }
182
183 /*! put after an enum value in the list of all members */
185 { return "열거형 값"; }
186
187 /*! put after an undocumented member in the list of all members */
189 { return "다음에서 정의됨 :"; }
190
191 // quick reference sections
192
193 /*! This is put above each page as a link to the list of all groups of
194 * compounds or files (see the \\group command).
195 */
197 { return "모듈"; }
198
199 /*! This is put above each page as a link to the class hierarchy */
201 { return "클래스 계통도"; }
202
203 /*! This is put above each page as a link to the list of annotated classes */
205 {
206 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
207 {
208 return "데이터 구조";
209 }
210 else
211 {
212 return "클래스 목록";
213 }
214 }
215
216 /*! This is put above each page as a link to the list of documented files */
218 { return "파일 목록"; }
219
220 /*! This is put above each page as a link to all members of compounds. */
222 {
223 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
224 {
225 return "데이터 필드";
226 }
227 else
228 {
229 return "클래스 멤버";
230 }
231 }
232
233 /*! This is put above each page as a link to all members of files. */
235 {
236 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
237 {
238 return "전역";
239 }
240 else
241 {
242 return "파일 멤버";
243 }
244 }
245
246 /*! This is put above each page as a link to all related pages. */
248 { return "관련된 페이지"; }
249
250 /*! This is put above each page as a link to all examples. */
252 { return "예제"; }
253
254 /*! This is put above each page as a link to the search engine. */
256 { return "검색"; }
257
258 /*! This is an introduction to the class hierarchy. */
260 { return "이 상속 목록은 완전하진 않지만 알파벳순으로 대략적으로 정렬되어있습니다.:";
261 }
262
263 /*! This is an introduction to the list with all files. */
264 QCString trFileListDescription(bool extractAll) override
265 {
266 QCString result="다음은 ";
267 if (!extractAll) result+="문서화된 ";
268 result+="모든 파일에 대한 목록입니다. (간략한 설명만을 보여줍니다) :";
269 return result;
270 }
271
272 /*! This is an introduction to the annotated compound list. */
274 {
275
276 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
277 {
278 return "다음은 데이터 구조들입니다. (간략한 설명만을 보여줍니다) :";
279 }
280 else
281 {
282 return "다음은 클래스, 구조체, 공용체 그리고 인터페이스들입니다. "
283 "(간략한 설명만을 보여줍니다) :";
284 }
285 }
286
287 /*! This is an introduction to the page with all class members. */
288 QCString trCompoundMembersDescription(bool extractAll) override
289 {
290 QCString result="다음은 ";
291 if (!extractAll)
292 {
293 result+="문서화된 ";
294 }
295 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
296 {
297 result+="모든 구조체와 공용체의 필드들";
298 }
299 else
300 {
301 result+="모든 클래스 멤버들";
302 }
303 result+="의 목록입니다. ";
304
305 if (!extractAll)
306 {
307 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
308 {
309 result+="각 필드들은 해당 필드에 대한 구조체와 공용체의 "
310 "문서화 페이지의 링크를 가지고 있습니다. :";
311 }
312 else
313 {
314 result+="각 멤버들은 해당 멤버에 대한 클래스의 문서화 페이지의 "
315 "링크를 가지고 있습니다. :";
316 }
317 }
318 else
319 {
320 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
321 {
322 result+="각 필드들은 해당 필드가 속해 있는 구조체와 공용체에 "
323 "대한 링크를 가지고 있습니다. :";
324 }
325 else
326 {
327 result+="각 멤버들은 해당 멤버가 속해 있는 클래스에 대한 "
328 "링크를 가지고 있습니다. :";
329 }
330 }
331 return result;
332 }
333
334 /*! This is an introduction to the page with all file members. */
335 QCString trFileMembersDescription(bool extractAll) override
336 {
337 QCString result="다음은 ";
338 if (!extractAll) result+="문서화된 ";
339
340 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
341 {
342 result+="모든 함수, 변수, 매크로, 열거형, 타입정의들";
343 }
344 else
345 {
346 result+="파일 멤버들";
347 }
348 result+="의 목록입니다. ";
349
350 result+="각 항목은 ";
351 if (extractAll)
352 result+="그들이 속한 파일 페이지의 링크를 가지고 있습니다. :";
353 else
354 result+="그들에 대한 문서화 페이지의 링크를 가지고 있습니다. :";
355 return result;
356 }
357
358 /*! This is an introduction to the page with the list of all examples */
360 { return "다음은 모든 예제들의 목록입니다.:"; }
361
362 /*! This is an introduction to the page with the list of related pages */
364 { return "다음은 관련된 모든 문서화 페이지들의 목록입니다.:"; }
365
366 /*! This is an introduction to the page with the list of class/file groups */
368 { return "다음은 모든 모듈들의 목록입니다.:"; }
369
370 // index titles (the project name is prepended for these)
371
372 /*! This is used in HTML as the title of index.html. */
373 QCString trDocumentation(const QCString &projName) override
374 { return (!projName.isEmpty()?projName + " " : "") + "문서화"; }
375
376 /*! This is used in LaTeX as the title of the chapter with the
377 * index of all groups.
378 */
380 { return "모듈 색인"; }
381
382 /*! This is used in LaTeX as the title of the chapter with the
383 * class hierarchy.
384 */
386 { return "계통도 색인"; }
387
388 /*! This is used in LaTeX as the title of the chapter with the
389 * annotated compound index.
390 */
392 {
393 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
394 {
395 return "데이터 구조 색인";
396 }
397 else
398 {
399 return "클래스 색인";
400 }
401 }
402
403 /*! This is used in LaTeX as the title of the chapter with the
404 * list of all files.
405 */
407 { return "파일 색인"; }
408
409 /*! This is used in LaTeX as the title of the chapter containing
410 * the documentation of all groups.
411 */
413 { return "모듈 문서화"; }
414
415 /*! This is used in LaTeX as the title of the chapter containing
416 * the documentation of all classes, structs and unions.
417 */
419 {
420 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
421 {
422 return "데이터 구조 문서화";
423 }
424 else if (Config_getBool(OPTIMIZE_OUTPUT_VHDL))
425 {
427 }
428 else
429 {
430 return "클래스 문서화";
431 }
432 }
433
434 /*! This is used in LaTeX as the title of the chapter containing
435 * the documentation of all files.
436 */
438 { return "파일 문서화"; }
439
440 /*! This is used in LaTeX as the title of the document */
442 { return "참조 매뉴얼"; }
443
444 /*! This is used in the documentation of a file as a header before the
445 * list of defines
446 */
448 { return "매크로"; }
449
450 /*! This is used in the documentation of a file as a header before the
451 * list of typedefs
452 */
454 { return "타입정의"; }
455
456 /*! This is used in the documentation of a file as a header before the
457 * list of enumerations
458 */
460 { return "열거형 타입"; }
461
462 /*! This is used in the documentation of a file as a header before the
463 * list of (global) functions
464 */
466 { return "함수"; }
467
468 /*! This is used in the documentation of a file as a header before the
469 * list of (global) variables
470 */
472 { return "변수"; }
473
474 /*! This is used in the documentation of a file as a header before the
475 * list of (global) variables
476 */
478 { return "열거형 멤버"; }
479
480 /*! This is used in the documentation of a file before the list of
481 * documentation blocks for defines
482 */
484 { return "매크로 문서화"; }
485
486 /*! This is used in the documentation of a file/namespace before the list
487 * of documentation blocks for typedefs
488 */
490 { return "타입정의 문서화"; }
491
492 /*! This is used in the documentation of a file/namespace before the list
493 * of documentation blocks for enumeration types
494 */
496 { return "열거형 타입 문서화"; }
497
498 /*! This is used in the documentation of a file/namespace before the list
499 * of documentation blocks for functions
500 */
502 { return "함수 문서화"; }
503
504 /*! This is used in the documentation of a file/namespace before the list
505 * of documentation blocks for variables
506 */
508 { return "변수 문서화"; }
509
510 /*! This is used in the documentation of a file/namespace/group before
511 * the list of links to documented compounds
512 */
514 {
515 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
516 {
517 return "데이터 구조";
518 }
519 else
520 {
521 return "클래스";
522 }
523 }
524
525 /*! This is used in the standard footer of each page and indicates when
526 * the page was generated
527 */
528 QCString trGeneratedAt(const QCString &date,const QCString &projName) override
529 {
530 QCString result="생성시간 : "+date;
531 if (!projName.isEmpty()) result+=", 프로젝트명 : "+projName;
532 result+=", 생성자 : ";
533 return result;
534 }
535
536 /*! this text is put before a class diagram */
537 QCString trClassDiagram(const QCString &clName) override
538 {
539 return clName+"에 대한 상속 다이어그램 : ";
540 }
541
542 /*! this text is generated when the \\warning command is used. */
544 { return "경고"; }
545
546 /*! this text is generated when the \\version command is used. */
548 { return "버전"; }
549
550 /*! this text is generated when the \\date command is used. */
551 QCString trDate() override
552 { return "날짜"; }
553
554 /*! this text is generated when the \\return command is used. */
556 { return "반환값"; }
557
558 /*! this text is generated when the \\sa command is used. */
560 { return "참고"; }
561
562 /*! this text is generated when the \\param command is used. */
564 { return "매개변수"; }
565
566 /*! this text is generated when the \\exception command is used. */
568 { return "예외"; }
569
570 /*! this text is used in the title page of a LaTeX document. */
572 { return "다음에 의해 생성됨 : "; }
573
574//////////////////////////////////////////////////////////////////////////
575// new since 0.49-990307
576//////////////////////////////////////////////////////////////////////////
577
578 /*! used as the title of page containing all the index of all namespaces. */
580 { return "네임스페이스 목록"; }
581
582 /*! used as an introduction to the namespace list */
583 QCString trNamespaceListDescription(bool extractAll) override
584 {
585 QCString result="다음은 ";
586 if (!extractAll) result+="문서화된 ";
587 result+="모든 네임스페이스에 대한 목록입니다. (간략한 설명만을 보여줍니다) :";
588 return result;
589 }
590
591 /*! used in the class documentation as a header before the list of all
592 * friends of a class
593 */
595 { return "Friends"; }
596
597//////////////////////////////////////////////////////////////////////////
598// new since 0.49-990405
599//////////////////////////////////////////////////////////////////////////
600
601 /*! used in the class documentation as a header before the list of all
602 * related classes
603 */
605 { return "Friend, 그리고 관련된 함수 문서화"; }
606
607//////////////////////////////////////////////////////////////////////////
608// new since 0.49-990425
609//////////////////////////////////////////////////////////////////////////
610
611 /*! used as the title of the HTML page of a class/struct/union */
613 ClassDef::CompoundType compType,
614 bool isTemplate) override
615 {
616 QCString result=clName;
617 switch(compType)
618 {
619 case ClassDef::Class: result+=" 클래스"; break;
620 case ClassDef::Struct: result+=" 구조체"; break;
621 case ClassDef::Union: result+=" 공용체"; break;
622 case ClassDef::Interface: result+=" 인터페이스"; break;
623 case ClassDef::Protocol: result+=" 프로토콜"; break;
624 case ClassDef::Category: result+=" 카테고리"; break;
625 case ClassDef::Exception: result+=" 예외"; break;
626 default: break;
627 }
628 if (isTemplate) result+=" 템플릿";
629 result+=" 참조";
630 return result;
631 }
632
633 /*! used as the title of the HTML page of a file */
634 QCString trFileReference(const QCString &fileName) override
635 {
636 QCString result=fileName;
637 result+=" 파일 참조";
638 return result;
639 }
640
641 /*! used as the title of the HTML page of a namespace */
642 QCString trNamespaceReference(const QCString &namespaceName) override
643 {
644 QCString result=namespaceName;
645 result+=" 네임스페이스 참조";
646 return result;
647 }
648
650 { return "Public 멤버 함수"; }
652 { return "Public Slots"; }
654 { return "Signals"; }
656 { return "정적 Public 멤버 함수"; }
658 { return "Protected 멤버 함수"; }
660 { return "Protected Slots"; }
662 { return "정적 Protected 멤버 함수"; }
664 { return "Private 멤버 함수"; }
666 { return "Private Slots"; }
668 { return "정적 Private 멤버 함수"; }
669
670 /*! this function is used to produce a comma-separated list of items.
671 * use generateMarker(i) to indicate where item i should be put.
672 */
673 QCString trWriteList(int numEntries) override
674 {
675 QCString result;
676 // the inherits list contain `numEntries' classes
677 for (int i=0;i<numEntries;i++)
678 {
679 // use generateMarker to generate placeholders for the class links!
680 result+=generateMarker(i); // generate marker for entry i in the list
681 // (order is left to right)
682
683 if (i!=numEntries-1) // not the last entry, so we need a separator
684 {
685 //if (i<numEntries-2) // not the fore last entry
686 result+=", ";
687 //else // the fore last entry
688 // result+=", "; // TODO: does the 'and' need to be translated here?
689 }
690 }
691 return result;
692 }
693
694 /*! used in class documentation to produce a list of base classes,
695 * if class diagrams are disabled.
696 */
697 QCString trInheritsList(int numEntries) override
698 {
699 return trWriteList(numEntries)+"를(을) 상속했습니다.";
700 }
701
702 /*! used in class documentation to produce a list of super classes,
703 * if class diagrams are disabled.
704 */
705 QCString trInheritedByList(int numEntries) override
706 {
707 return trWriteList(numEntries)+"에 의해 상속되었습니다.";
708 }
709
710 /*! used in member documentation blocks to produce a list of
711 * members that are hidden by this one.
712 */
713 QCString trReimplementedFromList(int numEntries) override
714 {
715 return trWriteList(numEntries)+"(으)로부터 재구현되었습니다.";
716 }
717
718 /*! used in member documentation blocks to produce a list of
719 * all member that overwrite the implementation of this member.
720 */
721 QCString trReimplementedInList(int numEntries) override
722 {
723 return trWriteList(numEntries)+"에서 재구현되었습니다.";
724 }
725
726 /*! This is put above each page as a link to all members of namespaces. */
728 { return "네임스페이스 멤버"; }
729
730 /*! This is an introduction to the page with all namespace members */
731 QCString trNamespaceMemberDescription(bool extractAll) override
732 {
733 QCString result="다음은 ";
734 if (!extractAll) result+="문서화된 ";
735 result+="모든 네임스페이스 멤버들의 목록입니다. ";
736 if (extractAll)
737 result+="각 멤버들은 해당 멤버의 네임스페이스 문서화 페이지의 링크를 가지고 있습니다. :";
738 else
739 result+="각 멤버들은 해당 멤버가 속한 네임스페이스 페이지의 링크를 가지고 있습니다. :";
740 return result;
741 }
742 /*! This is used in LaTeX as the title of the chapter with the
743 * index of all namespaces.
744 */
746 { return "네임스페이스 색인"; }
747
748 /*! This is used in LaTeX as the title of the chapter containing
749 * the documentation of all namespaces.
750 */
752 { return "네임스페이스 문서화"; }
753
754//////////////////////////////////////////////////////////////////////////
755// new since 0.49-990522
756//////////////////////////////////////////////////////////////////////////
757
758 /*! This is used in the documentation before the list of all
759 * namespaces in a file.
760 */
762 { return "네임스페이스"; }
763
764//////////////////////////////////////////////////////////////////////////
765// new since 0.49-990728
766//////////////////////////////////////////////////////////////////////////
767
768 /*! This is put at the bottom of a class documentation page and is
769 * followed by a list of files that were used to generate the page.
770 */
772 bool single) override
773 { // here s is one of " Class", " Struct" or " Union"
774 // single is true implies a single file
775 QCString result="이 ";
776 switch(compType)
777 {
778 case ClassDef::Class: result+="클래스"; break;
779 case ClassDef::Struct: result+="구조체"; break;
780 case ClassDef::Union: result+="공용체"; break;
781 case ClassDef::Interface: result+="인터페이스"; break;
782 case ClassDef::Protocol: result+="프로토콜"; break;
783 case ClassDef::Category: result+="카테고리"; break;
784 case ClassDef::Exception: result+="예외"; break;
785 default: break;
786 }
787 result+="에 대한 문서화 페이지는 다음의 파일";
788 if (!single) result+="들";
789 result+="로부터 생성되었습니다.:";
790 return result;
791 }
792
793//////////////////////////////////////////////////////////////////////////
794// new since 0.49-990901
795//////////////////////////////////////////////////////////////////////////
796
797 /*! This is used as the heading text for the retval command. */
799 { return "반환값"; }
800
801 /*! This is in the (quick) index as a link to the main page (index.html)
802 */
804 { return "메인 페이지"; }
805
806 /*! This is used in references to page that are put in the LaTeX
807 * documentation. It should be an abbreviation of the word page.
808 */
810 { return "페이지"; }
811
812//////////////////////////////////////////////////////////////////////////
813// new since 0.49-991003
814//////////////////////////////////////////////////////////////////////////
815
817 {
818 return "@1 파일의 @0 번째 라인에서 정의되었습니다.";
819 }
821 {
822 return "@0 파일에서 정의되었습니다.";
823 }
824
825//////////////////////////////////////////////////////////////////////////
826// new since 0.49-991205
827//////////////////////////////////////////////////////////////////////////
828
830 {
831 return "잘못된 코드";
832 }
833
834//////////////////////////////////////////////////////////////////////////
835// new since 1.0.0
836//////////////////////////////////////////////////////////////////////////
837
838 /*! this text is put before a collaboration diagram */
840 {
841 return clName+"에 대한 협력 다이어그램:";
842 }
843 /*! this text is put before an include dependency graph */
844 QCString trInclDepGraph(const QCString &fName) override
845 {
846 return fName+"에 대한 include 의존 그래프";
847 }
848 /*! header that is put before the list of constructor/destructors. */
850 {
851 return "생성자 & 소멸자 문서화";
852 }
853 /*! Used in the file documentation to point to the corresponding sources. */
855 {
856 return "이 파일의 소스 코드 페이지로 가기";
857 }
858 /*! Used in the file sources to point to the corresponding documentation. */
860 {
861 return "이 파일의 문서화 페이지로 가기";
862 }
863 /*! Text for the \\pre command */
865 {
866 return "전제조건";
867 }
868 /*! Text for the \\post command */
870 {
871 return "후미조건";
872 }
873 /*! Text for the \\invariant command */
875 {
876 return "변하지 않는";
877 }
878 /*! Text shown before a multi-line variable/enum initialization */
880 {
881 return "초기값:";
882 }
883 /*! Text used the source code in the file index */
884 QCString trCode() override
885 {
886 return "코드";
887 }
889 {
890 return "그래픽컬한 클래스 계통도";
891 }
893 {
894 return "그래픽컬한 클래스 계통도 페이지로 가기";
895 }
897 {
898 return "텍스트 형식의 클래스 계통도 페이지로 가기";
899 }
901 {
902 return "페이지 색인";
903 }
904
905//////////////////////////////////////////////////////////////////////////
906// new since 1.1.0
907//////////////////////////////////////////////////////////////////////////
908
909 QCString trNote() override
910 {
911 return "주의";
912 }
914 {
915 return "Public 타입";
916 }
918 {
919 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
920 {
921 return "데이터 필드";
922 }
923 else
924 {
925 return "Public 속성";
926 }
927 }
929 {
930 return "정적 Public 속성";
931 }
933 {
934 return "Protected 타입";
935 }
937 {
938 return "Protected 속성";
939 }
941 {
942 return "정적 Protected 속성";
943 }
945 {
946 return "Private 타입";
947 }
949 {
950 return "Private 속성";
951 }
953 {
954 return "정적 Private 속성";
955 }
956
957//////////////////////////////////////////////////////////////////////////
958// new since 1.1.3
959//////////////////////////////////////////////////////////////////////////
960
961 /*! Used as a marker that is put before a \\todo item */
962 QCString trTodo() override
963 {
964 return "할일";
965 }
966 /*! Used as the header of the todo list */
968 {
969 return "할일 목록";
970 }
971
972//////////////////////////////////////////////////////////////////////////
973// new since 1.1.4
974//////////////////////////////////////////////////////////////////////////
975
977 {
978 return "다음에 의해서 참조됨 : ";
979 }
981 {
982 return "Remarks";
983 }
985 {
986 return "주의";
987 }
989 {
990 return "이 그래프는 이 파일을 직/간접적으로 include 하는 파일들을 보여줍니다.:";
991 }
992 QCString trSince() override
993 {
994 return "Since";
995 }
996
997//////////////////////////////////////////////////////////////////////////
998// new since 1.1.5
999//////////////////////////////////////////////////////////////////////////
1000
1001 /*! title of the graph legend page */
1003 {
1004 return "그래프 범례";
1005 }
1006 /*! page explaining how the dot graph's should be interpreted
1007 * The %A in the text below are to prevent link to classes called "A".
1008 */
1010 {
1011 return
1012 "이 페이지는 doxygen에 의해 생성된 그래프들을 이해하는 방법을 설명합니다.<p>\n"
1013 "다음의 예제를 참고하십시오.:\n"
1014 "\\code\n"
1015 "/*! 생략되었기 때문에 보이지 않는 클래스 */\n"
1016 "class Invisible { };\n\n"
1017 "/*! Truncated 클래스, 상속관계가 숨겨짐 */\n"
1018 "class Truncated : public Invisible { };\n\n"
1019 "/* doxygen 주석에 의해서 문서화되지 않는 클래스 */\n"
1020 "class Undocumented { };\n\n"
1021 "/*! public 상속을 통해서 상속된 클래스 */\n"
1022 "class PublicBase : public Truncated { };\n\n"
1023 "/*! 템플릿 클래스 */\n"
1024 "template<class T> class Templ { };\n\n"
1025 "/*! protected 상속을 통해서 상속된 클래스 */\n"
1026 "class ProtectedBase { };\n\n"
1027 "/*! private 상속을 통해서 상속된 클래스 */\n"
1028 "class PrivateBase { };\n\n"
1029 "/*! 상속되어진 클래스에 의해 (멤버로) 사용되어지는 클래스 */\n"
1030 "class Used { };\n\n"
1031 "/*! 다른 클래스들을 상속하는 슈퍼 클래스 */\n"
1032 "class Inherited : public PublicBase,\n"
1033 " protected ProtectedBase,\n"
1034 " private PrivateBase,\n"
1035 " public Undocumented,\n"
1036 " public Templ<int>\n"
1037 "{\n"
1038 " private:\n"
1039 " Used *m_usedClass;\n"
1040 "};\n"
1041 "\\endcode\n"
1042 "다음과 같은 그래프가 출력될 것입니다. :"
1043 "<p><center><img alt=\"\" src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1044 "<p>\n"
1045 "위 그래프의 박스들은 다음과 같은 의미를 가집니다. :\n"
1046 "<ul>\n"
1047 "<li>%A 회색으로 채워진 박스는 이 그래프를 생성해 낸 구조체나 클래스를 의미합니다.\n"
1048 "<li>%A 검은색 테두리의 박스는 문서화된 구조체나 클래스를 의미합니다.\n"
1049 "<li>%A 회색 테두리의 박스는 문서화되지 않은 구조체나 클래스를 의미합니다.\n"
1050 "<li>%A 빨간색 테두리의 박스는 모든 상속이나 포함관계가 보여지지 않는 "
1051 "구조체나 클래스를 의미합니다."
1052 "%A 만약 그래프가 지정된 경계내에 맞지 않으면, 그래프가 잘려집니다.\n"
1053 "</ul>\n"
1054 "화살표들은 다음과 같은 의미를 가집니다. :\n"
1055 "<ul>\n"
1056 "<li>%A 어두운 파랑색 화살표는 두 클래스들 간에 public 상속이 있음을 의미합니다.\n"
1057 "<li>%A 어두운 연두색 화살표는 protected 상속이 있음을 의미합니다.\n"
1058 "<li>%A 어두운 빨간색 화살표는 private 상속이 있음을 의미합니다.\n"
1059 "<li>%A 보라색 점선 화살표는 다른 클래스에 의해 포함되거나 사용되어짐을 의미합니다. "
1060 "화살표의 라벨은 화살표가 가리키는 클래스나 구조체로 접근하는 변수명(들)으로 붙습니다.\n"
1061 "<li>%A 노란색 점선 화살표는 템플릿 인스턴스와 템프릿 클래스에 대한 관계를 의미합니다. "
1062 "화살표의 라벨은 인스턴스의 템플릿 파라메터로 붙습니다.\n"
1063 "</ul>\n";
1064 }
1065 /*! text for the link to the legend page */
1067 {
1068 return "범례";
1069 }
1070
1071//////////////////////////////////////////////////////////////////////////
1072// new since 1.2.0
1073//////////////////////////////////////////////////////////////////////////
1074
1075 /*! Used as a marker that is put before a test item */
1076 QCString trTest() override
1077 {
1078 return "테스트";
1079 }
1080 /*! Used as the header of the test list */
1082 {
1083 return "테스트 목록";
1084 }
1085
1086//////////////////////////////////////////////////////////////////////////
1087// new since 1.2.2
1088//////////////////////////////////////////////////////////////////////////
1089
1090 /*! Used as a section header for IDL properties */
1092 {
1093 return "속성";
1094 }
1095 /*! Used as a section header for IDL property documentation */
1097 {
1098 return "속성 문서화";
1099 }
1100
1101//////////////////////////////////////////////////////////////////////////
1102// new since 1.2.4
1103//////////////////////////////////////////////////////////////////////////
1104
1105 /*! Used for Java classes in the summary section of Java packages */
1107 {
1108 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1109 {
1110 return "데이터 구조";
1111 }
1112 else
1113 {
1114 return "클래스";
1115 }
1116 }
1117 /*! Used as the title of a Java package */
1118 QCString trPackage(const QCString &name) override
1119 {
1120 return name+" 패키지";
1121 }
1122 /*! The description of the package index page */
1124 {
1125 return "다음은 패키지들입니다. (가능한한 간략한 설명만을 보여줍니다) :";
1126 }
1127 /*! The link name in the Quick links header for each page */
1129 {
1130 return "패키지";
1131 }
1132 /*! Text shown before a multi-line define */
1134 {
1135 return "값:";
1136 }
1137
1138//////////////////////////////////////////////////////////////////////////
1139// new since 1.2.5
1140//////////////////////////////////////////////////////////////////////////
1141
1142 /*! Used as a marker that is put before a \\bug item */
1143 QCString trBug() override
1144 {
1145 return "버그";
1146 }
1147 /*! Used as the header of the bug list */
1149 {
1150 return "버그 목록";
1151 }
1152
1153//////////////////////////////////////////////////////////////////////////
1154// new since 1.2.6
1155//////////////////////////////////////////////////////////////////////////
1156
1157 /*! Used as ansicpg for RTF file
1158 *
1159 * The following table shows the correlation of Charset name, Charset Value and
1160 * <pre>
1161 * Codepage number:
1162 * Charset Name Charset Value(hex) Codepage number
1163 * ------------------------------------------------------
1164 * DEFAULT_CHARSET 1 (x01)
1165 * SYMBOL_CHARSET 2 (x02)
1166 * OEM_CHARSET 255 (xFF)
1167 * ANSI_CHARSET 0 (x00) 1252
1168 * RUSSIAN_CHARSET 204 (xCC) 1251
1169 * EE_CHARSET 238 (xEE) 1250
1170 * GREEK_CHARSET 161 (xA1) 1253
1171 * TURKISH_CHARSET 162 (xA2) 1254
1172 * BALTIC_CHARSET 186 (xBA) 1257
1173 * HEBREW_CHARSET 177 (xB1) 1255
1174 * ARABIC _CHARSET 178 (xB2) 1256
1175 * SHIFTJIS_CHARSET 128 (x80) 932
1176 * HANGEUL_CHARSET 129 (x81) 949
1177 * GB2313_CHARSET 134 (x86) 936
1178 * CHINESEBIG5_CHARSET 136 (x88) 950
1179 * </pre>
1180 *
1181 */
1183 {
1184 return "949";
1185 }
1186
1187
1188 /*! Used as ansicpg for RTF fcharset
1189 * \see trRTFansicp() for a table of possible values.
1190 */
1192 {
1193 return "129";
1194 }
1195
1196 /*! Used as header RTF general index */
1198 {
1199 return "색인";
1200 }
1201
1202 /*! This is used for translation of the word that will possibly
1203 * be followed by a single name or by a list of names
1204 * of the category.
1205 */
1206 QCString trClass(bool, bool singular) override
1207 {
1208 return createNoun(false, singular, "클래스", "들");
1209 }
1210
1211 /*! This is used for translation of the word that will possibly
1212 * be followed by a single name or by a list of names
1213 * of the category.
1214 */
1215 QCString trFile(bool, bool singular) override
1216 {
1217 return createNoun(false, singular, "파일", "들");
1218 }
1219
1220 /*! This is used for translation of the word that will possibly
1221 * be followed by a single name or by a list of names
1222 * of the category.
1223 */
1224 QCString trNamespace(bool, bool singular) override
1225 {
1226 return createNoun(false, singular, "네임스페이스", "들");
1227 }
1228
1229 /*! This is used for translation of the word that will possibly
1230 * be followed by a single name or by a list of names
1231 * of the category.
1232 */
1233 QCString trGroup(bool, bool singular) override
1234 {
1235 return createNoun(false, singular, "그룹", "들");
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 QCString trPage(bool, bool singular) override
1243 {
1244 return createNoun(false, singular, "페이지", "들");
1245 }
1246
1247 /*! This is used for translation of the word that will possibly
1248 * be followed by a single name or by a list of names
1249 * of the category.
1250 */
1251 QCString trMember(bool, bool singular) override
1252 {
1253 return createNoun(false, singular, "멤버", "들");
1254 }
1255
1256 /*! This is used for translation of the word that will possibly
1257 * be followed by a single name or by a list of names
1258 * of the category.
1259 */
1260 QCString trGlobal(bool, bool singular) override
1261 {
1262 return createNoun(false, singular, "전역", "");
1263 }
1264
1265//////////////////////////////////////////////////////////////////////////
1266// new since 1.2.7
1267//////////////////////////////////////////////////////////////////////////
1268
1269 /*! This text is generated when the \\author command is used and
1270 * for the author section in man pages. */
1271 QCString trAuthor(bool, bool singular) override
1272 {
1273 return createNoun(false, singular, "작성자", "들");
1274 }
1275
1276//////////////////////////////////////////////////////////////////////////
1277// new since 1.2.11
1278//////////////////////////////////////////////////////////////////////////
1279
1280 /*! This text is put before the list of members referenced by a member
1281 */
1283 {
1284 return "다음을 참조함 : ";
1285 }
1286
1287//////////////////////////////////////////////////////////////////////////
1288// new since 1.2.13
1289//////////////////////////////////////////////////////////////////////////
1290
1291 /*! used in member documentation blocks to produce a list of
1292 * members that are implemented by this one.
1293 */
1294 QCString trImplementedFromList(int numEntries) override
1295 {
1296 return trWriteList(numEntries)+"를 구현.";
1297 }
1298
1299 /*! used in member documentation blocks to produce a list of
1300 * all members that implement this abstract member.
1301 */
1302 QCString trImplementedInList(int numEntries) override
1303 {
1304 return trWriteList(numEntries)+"에서 구현되었습니다.";
1305 }
1306
1307//////////////////////////////////////////////////////////////////////////
1308// new since 1.2.16
1309//////////////////////////////////////////////////////////////////////////
1310
1311 /*! used in RTF documentation as a heading for the Table
1312 * of Contents.
1313 */
1315 {
1316 return "목차";
1317 }
1318
1319//////////////////////////////////////////////////////////////////////////
1320// new since 1.2.17
1321//////////////////////////////////////////////////////////////////////////
1322
1323 /*! Used as the header of the list of item that have been
1324 * flagged deprecated
1325 */
1327 {
1328 return "잘못된 코드 목록";
1329 }
1330
1331//////////////////////////////////////////////////////////////////////////
1332// new since 1.2.18
1333//////////////////////////////////////////////////////////////////////////
1334
1335 /*! Used as a header for declaration section of the events found in
1336 * a C# program
1337 */
1339 {
1340 return "이벤트";
1341 }
1342 /*! Header used for the documentation section of a class' events. */
1344 {
1345 return "이벤트 문서화";
1346 }
1347
1348//////////////////////////////////////////////////////////////////////////
1349// new since 1.3
1350//////////////////////////////////////////////////////////////////////////
1351
1352 /*! Used as a heading for a list of Java class types with package scope.
1353 */
1355 {
1356 return "패키지 타입";
1357 }
1358 /*! Used as a heading for a list of Java class functions with package
1359 * scope.
1360 */
1362 {
1363 return "패키지 함수";
1364 }
1366 {
1367 return "패키지 멤버들";
1368 }
1369 /*! Used as a heading for a list of static Java class functions with
1370 * package scope.
1371 */
1373 {
1374 return "정적 패키지 함수";
1375 }
1376 /*! Used as a heading for a list of Java class variables with package
1377 * scope.
1378 */
1380 {
1381 return "패키지 속성";
1382 }
1383 /*! Used as a heading for a list of static Java class variables with
1384 * package scope.
1385 */
1387 {
1388 return "정적 패키지 속성";
1389 }
1390
1391//////////////////////////////////////////////////////////////////////////
1392// new since 1.3.1
1393//////////////////////////////////////////////////////////////////////////
1394
1395 /*! Used in the quick index of a class/file/namespace member list page
1396 * to link to the unfiltered list of all members.
1397 */
1398 QCString trAll() override
1399 {
1400 return "모두";
1401 }
1402 /*! Put in front of the call graph for a function. */
1404 {
1405 return "이 함수 내부에서 호출하는 함수들에 대한 그래프입니다.:";
1406 }
1407
1408//////////////////////////////////////////////////////////////////////////
1409// new since 1.3.3
1410//////////////////////////////////////////////////////////////////////////
1411
1412 /*! This string is used as the title for the page listing the search
1413 * results.
1414 */
1416 {
1417 return "검색 결과";
1418 }
1419 /*! This string is put just before listing the search results. The
1420 * text can be different depending on the number of documents found.
1421 * Inside the text you can put the special marker $num to insert
1422 * the number representing the actual number of search results.
1423 * The @a numDocuments parameter can be either 0, 1 or 2, where the
1424 * value 2 represents 2 or more matches. HTML markup is allowed inside
1425 * the returned string.
1426 */
1427 QCString trSearchResults(int numDocuments) override
1428 {
1429 if (numDocuments==0)
1430 {
1431 return "죄송합니다. 질의에 일치하는 문서가 없습니다.";
1432 }
1433 else if (numDocuments==1)
1434 {
1435 return "질의에 일치하는 <b>1</b> 개의 문서를 찾았습니다.";
1436 }
1437 else
1438 {
1439 return "질의에 일치하는 <b>$num</b> 개의 문서를 찾았습니다. "
1440 "가장 많이 일치하는 문서를 가장 먼저 보여줍니다.";
1441 }
1442 }
1443 /*! This string is put before the list of matched words, for each search
1444 * result. What follows is the list of words that matched the query.
1445 */
1447 {
1448 return "결과:";
1449 }
1450
1451//////////////////////////////////////////////////////////////////////////
1452// new since 1.3.8
1453//////////////////////////////////////////////////////////////////////////
1454
1455 /*! This is used in HTML as the title of page with source code for file filename
1456 */
1457 QCString trSourceFile(const QCString& filename) override
1458 {
1459 return filename + " 소스 파일";
1460 }
1461
1462//////////////////////////////////////////////////////////////////////////
1463// new since 1.3.9
1464//////////////////////////////////////////////////////////////////////////
1465
1466 /*! This is used as the name of the chapter containing the directory
1467 * hierarchy.
1468 */
1470 { return "디렉토리 계통도"; }
1471
1472 /*! This is used as the name of the chapter containing the documentation
1473 * of the directories.
1474 */
1476 { return "디렉토리 문서화"; }
1477
1478 /*! This is used as the title of the directory index and also in the
1479 * Quick links of an HTML page, to link to the directory hierarchy.
1480 */
1482 { return "디렉토리"; }
1483
1484 /*! This returns the title of a directory page. The name of the
1485 * directory is passed via \a dirName.
1486 */
1487 QCString trDirReference(const QCString &dirName) override
1488 { QCString result=dirName; result+=" 디렉토리 참조"; return result; }
1489
1490 /*! This returns the word directory with or without starting capital
1491 * (\a first_capital) and in singular or plural form (\a singular).
1492 */
1493 QCString trDir(bool, bool singular) override
1494 {
1495 return createNoun(false, singular, "디렉토리", "들");
1496 }
1497
1498//////////////////////////////////////////////////////////////////////////
1499// new since 1.4.1
1500//////////////////////////////////////////////////////////////////////////
1501
1502 /*! This text is added to the documentation when the \\overload command
1503 * is used for a overloaded function.
1504 */
1506 {
1507 return "이 함수는 편의를 제공하기 위해 오버로드된 멤버 함수입니다. "
1508 "위의 함수와 틀린 점은 단지 받아들이는 아규먼트(argument)가 다르다는 것입니다.";
1509 }
1510
1511//////////////////////////////////////////////////////////////////////////
1512// new since 1.4.6
1513//////////////////////////////////////////////////////////////////////////
1514
1515 /*! This is used to introduce a caller (or called-by) graph */
1517 {
1518 return "이 함수를 호출하는 함수들에 대한 그래프입니다.:";
1519 }
1520
1521 /*! This is used in the documentation of a file/namespace before the list
1522 * of documentation blocks for enumeration values
1523 */
1525 { return "열거형 문서화"; }
1526
1527//////////////////////////////////////////////////////////////////////////
1528// new since 1.5.4 (mainly for Fortran)
1529//////////////////////////////////////////////////////////////////////////
1530
1531 /*! header that is put before the list of member subprograms (Fortran). */
1533 { return "멤버 함수/서브루틴 문서화"; }
1534
1535 /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1537 { return "데이터 타입 목록"; }
1538
1539 /*! This is put above each page as a link to all members of compounds (Fortran). */
1541 { return "데이터 필드"; }
1542
1543 /*! This is an introduction to the annotated compound list (Fortran). */
1545 { return "대략적인 설명과 함께 데이터 타입들의 목록입니다.:"; }
1546
1547 /*! This is an introduction to the page with all data types (Fortran). */
1549 {
1550 QCString result="다음은 ";
1551 if (!extractAll)
1552 {
1553 result+="문서화된 ";
1554 }
1555 result+="모든 데이터 타입 멤버들의 목록입니다. ";
1556
1557 result+="각 항목은 ";
1558 if (!extractAll)
1559 {
1560 result+="각 멤버에 대한 데이터 구조 문서화 페이지의 링크를 가지고 있습니다.";
1561 }
1562 else
1563 {
1564 result+="그들이 속한 데이터 타입의 링크를 가지고 있습니다. :";
1565 }
1566 return result;
1567 }
1568
1569 /*! This is used in LaTeX as the title of the chapter with the
1570 * annotated compound index (Fortran).
1571 */
1573 { return "데이터 타입 색인"; }
1574
1575 /*! This is used in LaTeX as the title of the chapter containing
1576 * the documentation of all data types (Fortran).
1577 */
1579 { return "데이터 타입 문서화"; }
1580
1581 /*! This is used in the documentation of a file as a header before the
1582 * list of (global) subprograms (Fortran).
1583 */
1585 { return "함수/서브루틴"; }
1586
1587 /*! This is used in the documentation of a file/namespace before the list
1588 * of documentation blocks for subprograms (Fortran)
1589 */
1591 { return "함수/서브루틴 문서화"; }
1592
1593 /*! This is used in the documentation of a file/namespace/group before
1594 * the list of links to documented compounds (Fortran)
1595 */
1597 { return "데이터 타입들"; }
1598
1599 /*! used as the title of page containing all the index of all modules (Fortran). */
1601 { return "모듈 목록"; }
1602
1603 /*! used as an introduction to the modules list (Fortran) */
1604 QCString trModulesListDescription(bool extractAll) override
1605 {
1606 QCString result="다음은 ";
1607 if (!extractAll) result+="문서화된 ";
1608 result+="모든 모듈에 대한 목록입니다. (간략한 설명만을 보여줍니다) :";
1609 return result;
1610 }
1611
1612 /*! used as the title of the HTML page of a module/type (Fortran) */
1614 ClassDef::CompoundType compType,
1615 bool isTemplate) override
1616 {
1617 QCString result=clName;
1618 switch(compType)
1619 {
1620 case ClassDef::Class: result+=" 모듈"; break;
1621 case ClassDef::Struct: result+=" 타입"; break;
1622 case ClassDef::Union: result+=" 공용체"; break;
1623 case ClassDef::Interface: result+=" 인터페이스"; break;
1624 case ClassDef::Protocol: result+=" 프로토콜"; break;
1625 case ClassDef::Category: result+=" 카테고리"; break;
1626 case ClassDef::Exception: result+=" 예외"; break;
1627 default: break;
1628 }
1629 if (isTemplate) result+=" 템플릿";
1630 result+=" 참조";
1631 return result;
1632 }
1633 /*! used as the title of the HTML page of a module (Fortran) */
1634 QCString trModuleReference(const QCString &namespaceName) override
1635 {
1636 QCString result=namespaceName;
1637 result+=" 모듈 참조";
1638 return result;
1639 }
1640
1641 /*! This is put above each page as a link to all members of modules. (Fortran) */
1643 { return "모듈 멤버들"; }
1644
1645 /*! This is an introduction to the page with all modules members (Fortran) */
1646 QCString trModulesMemberDescription(bool extractAll) override
1647 {
1648 QCString result="다음은 ";
1649 if (!extractAll) result+="문서화된 ";
1650 result+="모든 모듈 멤버의 목록입니다. ";
1651 if (extractAll)
1652 {
1653 result+="각 항목은 각 멤버의 모듈 문서화 페이지의 링크를 가지고 있습니다. :";
1654 }
1655 else
1656 {
1657 result+="각 항목은 그들이 속한 모듈의 링크를 가지고 있습니다. :";
1658 }
1659 return result;
1660 }
1661
1662 /*! This is used in LaTeX as the title of the chapter with the
1663 * index of all modules (Fortran).
1664 */
1666 { return "모듈 색인"; }
1667
1668 /*! This is used for translation of the word that will possibly
1669 * be followed by a single name or by a list of names
1670 * of the category.
1671 */
1672 QCString trModule(bool, bool singular) override
1673 {
1674 return createNoun(false, singular, "모듈", "들");
1675 }
1676 /*! This is put at the bottom of a module documentation page and is
1677 * followed by a list of files that were used to generate the page.
1678 */
1680 bool single) override
1681 { // here s is one of " Module", " Struct" or " Union"
1682 // single is true implies a single file
1683 QCString result="다음 파일";
1684 if (single) result+=""; else result+="들";
1685 result+="로부터 생성된 ";
1686 result+="이 ";
1687 switch(compType)
1688 {
1689 case ClassDef::Class: result+="모듈"; break;
1690 case ClassDef::Struct: result+="타입"; break;
1691 case ClassDef::Union: result+="공용체"; break;
1692 case ClassDef::Interface: result+="인터페이스"; break;
1693 case ClassDef::Protocol: result+="프로토콜"; break;
1694 case ClassDef::Category: result+="카테고리"; break;
1695 case ClassDef::Exception: result+="예외"; break;
1696 default: break;
1697 }
1698 result+="의 문서화 페이지:";
1699 return result;
1700 }
1701 /*! This is used for translation of the word that will possibly
1702 * be followed by a single name or by a list of names
1703 * of the category.
1704 */
1705 QCString trType(bool, bool singular) override
1706 {
1707 return createNoun(false, singular, "타입", "들");
1708 }
1709 /*! This is used for translation of the word that will possibly
1710 * be followed by a single name or by a list of names
1711 * of the category.
1712 */
1713 QCString trSubprogram(bool, bool singular) override
1714 {
1715 return createNoun(false, singular, "서브프로그램", "들");
1716 }
1717
1718 /*! C# Type Constraint list */
1720 {
1721 return "타입 한정자들";
1722 }
1723
1724//////////////////////////////////////////////////////////////////////////
1725// new since 1.6.0 (mainly for the new search engine)
1726//////////////////////////////////////////////////////////////////////////
1727
1728 /*! directory relation for \a name */
1729 QCString trDirRelation(const QCString &name) override
1730 {
1731 return name+" 관계";
1732 }
1733
1734 /*! Loading message shown when loading search results */
1736 {
1737 return "로딩중...";
1738 }
1739
1740 /*! Label used for search results in the global namespace */
1742 {
1743 return "전역 이름공간";
1744 }
1745
1746 /*! Message shown while searching */
1748 {
1749 return "검색중...";
1750 }
1751
1752 /*! Text shown when no search results are found */
1754 {
1755 return "일치하는것 없음";
1756 }
1757
1758//////////////////////////////////////////////////////////////////////////
1759// new since 1.6.3 (missing items for the directory pages)
1760//////////////////////////////////////////////////////////////////////////
1761
1762 /*! when clicking a directory dependency label, a page with a
1763 * table is shown. The heading for the first column mentions the
1764 * source file that has a relation to another file.
1765 */
1766 QCString trFileIn(const QCString &name) override
1767 {
1768 return name + "의 파일";
1769 }
1770
1771 /*! when clicking a directory dependency label, a page with a
1772 * table is shown. The heading for the second column mentions the
1773 * destination file that is included.
1774 */
1775 QCString trIncludesFileIn(const QCString &name) override
1776 {
1777 return name + "의 파일 포함";
1778 }
1779
1780 /** Compiles a date string.
1781 * @param year Year in 4 digits
1782 * @param month Month of the year: 1=January
1783 * @param day Day of the Month: 1..31
1784 * @param dayOfWeek Day of the week: 1=Monday..7=Sunday
1785 * @param hour Hour of the day: 0..23
1786 * @param minutes Minutes in the hour: 0..59
1787 * @param seconds Seconds within the minute: 0..59
1788 * @param includeTime Include time in the result string?
1789 */
1790 QCString trDateTime(int year,int month,int day,int dayOfWeek,
1791 int hour,int minutes,int seconds,
1792 DateTimeType includeTime) override
1793 {
1794 static const char *days[] = { "월","화","수","목","금","토","일" };
1795 static const char *months[] = { "1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월" };
1796 QCString sdate;
1797 if (includeTime == DateTimeType::DateTime || includeTime == DateTimeType::Date)
1798 {
1799 sdate.sprintf("%s %s %d %d",days[dayOfWeek-1],months[month-1],day,year);
1800 }
1801 if (includeTime == DateTimeType::DateTime) sdate += " ";
1802 if (includeTime == DateTimeType::DateTime || includeTime == DateTimeType::Time)
1803 {
1804 QCString stime;
1805 stime.sprintf("%.2d:%.2d:%.2d",hour,minutes,seconds);
1806 sdate+=stime;
1807 }
1808 return sdate;
1809 }
1810 QCString trDayOfWeek(int dayOfWeek, bool, bool full) override
1811 {
1812 static const char *days_short[] = { "월", "화", "수", "목", "금", "토", "일" };
1813 static const char *days_full[] = { "월요일", "화요일", "수요일", "목요일", "금요일", "토요일", "일요일" };
1814 QCString text = full? days_full[dayOfWeek-1] : days_short[dayOfWeek-1];
1815 return text;
1816 }
1817 QCString trMonth(int month, bool, bool full) override
1818 {
1819 static const char *months_short[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12" };
1820 static const char *months_full[] = { "1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월" };
1821 QCString text = full? months_full[month-1] : months_short[month-1];
1822 return text;
1823 }
1824 QCString trDayPeriod(bool period) override
1825 {
1826 static const char *dayPeriod[] = { "오전", "오후" };
1827 return dayPeriod[period?1:0];
1828 }
1829
1830//////////////////////////////////////////////////////////////////////////
1831// new since 1.7.5
1832//////////////////////////////////////////////////////////////////////////
1833
1834 /*! Header for the page with bibliographic citations */
1836 { return "참고 문헌"; }
1837
1838 /*! Text for copyright paragraph */
1840 { return "Copyright"; }
1841
1842 /*! Header for the graph showing the directory dependencies */
1843 QCString trDirDepGraph(const QCString &name) override
1844 { return name + QCString("에 대한 디렉토리 의존성 그래프:"); }
1845
1846//////////////////////////////////////////////////////////////////////////
1847// new since 1.8.0
1848//////////////////////////////////////////////////////////////////////////
1849
1850 /*! Detail level selector shown for hierarchical indices */
1852 { return "상세 단계"; }
1853
1854 /*! Section header for list of template parameters */
1856 { return "템플릿 파라메터"; }
1857
1858 /*! Used in dot graph when UML_LOOK is enabled and there are many fields */
1859 QCString trAndMore(const QCString &number) override
1860 { return QCString("그리고 ")+number+"개 더..."; }
1861
1862 /*! Used file list for a Java enum */
1863 QCString trEnumGeneratedFromFiles(bool /*single*/) override
1864 { QCString result = "이 열거형에 대한 문서가 다음 파일(들)로부터 생성되었습니다.:";
1865 return result;
1866 }
1867
1868 /*! Header of a Java enum page (Java enums are represented as classes). */
1869 QCString trEnumReference(const QCString &name) override
1870 { return name+" Enum Reference"; }
1871
1872 /*! Used for a section containing inherited members */
1873 QCString trInheritedFrom(const QCString &members,const QCString &what) override
1874 { return what + QCString("(으)로부터 상속된 ") + members; }
1875
1876 /*! Header of the sections with inherited members specific for the
1877 * base class(es)
1878 */
1880 { return "추가로 상속된 멤버들"; }
1881
1882//////////////////////////////////////////////////////////////////////////
1883// new since 1.8.2
1884//////////////////////////////////////////////////////////////////////////
1885
1886 /*! Used as a tooltip for the toggle button that appears in the
1887 * navigation tree in the HTML output when GENERATE_TREEVIEW is
1888 * enabled. This tooltip explains the meaning of the button.
1889 */
1891 {
1892 QCString opt = enable ? "활성화" : "비활성화";
1893 return "패널 동기화를 "+opt+"하기 위해 클릭하십시오";
1894 }
1895
1896 /*! Used in a method of an Objective-C class that is declared in a
1897 * a category. Note that the @1 marker is required and is replaced
1898 * by a link.
1899 */
1901 {
1902 return "카테고리 @0에 의해 제공됨.";
1903 }
1904
1905 /*! Used in a method of an Objective-C category that extends a class.
1906 * Note that the @1 marker is required and is replaced by a link to
1907 * the class method.
1908 */
1910 {
1911 return "클래스 @0 확장.";
1912 }
1913
1914 /*! Used as the header of a list of class methods in Objective-C.
1915 * These are similar to static public member functions in C++.
1916 */
1918 {
1919 return "클래스 메소드들";
1920 }
1921
1922 /*! Used as the header of a list of instance methods in Objective-C.
1923 * These are similar to public member functions in C++.
1924 */
1926 {
1927 return "인스턴스 메소드들";
1928 }
1929
1930 /*! Used as the header of the member functions of an Objective-C class.
1931 */
1933 {
1934 return "메소드 문서화";
1935 }
1936
1937//////////////////////////////////////////////////////////////////////////
1938// new since 1.8.4
1939//////////////////////////////////////////////////////////////////////////
1940
1941 /** old style UNO IDL services: implemented interfaces */
1943 { return "익스포트된 인터페이스들"; }
1944
1945 /** old style UNO IDL services: inherited services */
1947 { return "포함된 서비스들"; }
1948
1949 /** UNO IDL constant groups */
1951 { return "상수 그룹들"; }
1952
1953 /** UNO IDL constant groups */
1954 QCString trConstantGroupReference(const QCString &namespaceName) override
1955 {
1956 QCString result=namespaceName;
1957 result+=" 상수 그룹 레퍼런스";
1958 return result;
1959 }
1960 /** UNO IDL service page title */
1961 QCString trServiceReference(const QCString &sName) override
1962 {
1963 QCString result=sName;
1964 result+=" 서비스 레퍼런스";
1965 return result;
1966 }
1967 /** UNO IDL singleton page title */
1969 {
1970 QCString result=sName;
1971 result+=" 싱글톤 레퍼런스";
1972 return result;
1973 }
1974 /** UNO IDL service page */
1976 {
1977 // single is true implies a single file
1978 QCString result="이 서비스에 대한 문서화는 다음의 파일";
1979 if (!single) result+="들";
1980 result+="로부터 생성되었습니다.:";
1981 return result;
1982 }
1983 /** UNO IDL singleton page */
1985 {
1986 // single is true implies a single file
1987 QCString result="이 싱글톤에 대한 문서화는 다음의 파일";
1988 if (!single) result+="들";
1989 result+="로부터 생성되었습니다.:";
1990 return result;
1991 }
1992
1993//////////////////////////////////////////////////////////////////////////
1994// new since 1.8.15
1995//////////////////////////////////////////////////////////////////////////
1996
1997 /** VHDL type or entity names */
1998 QCString trVhdlType(VhdlSpecifier type,bool single) override
1999 {
2000 switch(type)
2001 {
2003 if (single) return "라이브러리";
2004 else return "라이브러리들";
2006 if (single) return "패키지";
2007 else return "패키지들";
2009 if (single) return "시그널";
2010 else return "시그널들";
2012 if (single) return "컴포넌트";
2013 else return "컴포넌트들";
2015 if (single) return "상수";
2016 else return "상수들";
2018 if (single) return "엔티티";
2019 else return "엔티티들";
2021 if (single) return "타입";
2022 else return "타입들";
2024 if (single) return "서브타입";
2025 else return "서브타입들";
2027 if (single) return "함수";
2028 else return "함수들";
2030 if (single) return "레코드";
2031 else return "레코드들";
2033 if (single) return "프로시저";
2034 else return "프로시저들";
2036 if (single) return "아키텍처";
2037 else return "아키텍처들";
2039 if (single) return "속성";
2040 else return "속성들";
2042 if (single) return "프로세스";
2043 else return "프로세스들";
2045 if (single) return "포트";
2046 else return "포트들";
2047 case VhdlSpecifier::USE:
2048 if (single) return "사용 절";
2049 else return "사용 절들";
2051 if (single) return "제네릭";
2052 else return "제네릭들";
2054 return "패키지 바디";
2056 return "유닛들";
2058 if (single) return "공유 변수";
2059 else return "공유 변수들";
2061 if (single) return "파일";
2062 else return "파일들";
2064 if (single) return "그룹";
2065 else return "그룹들";
2067 if (single) return "인스턴스화";
2068 else return "인스턴스화들";
2070 if (single) return "별칭";
2071 else return "별칭들";
2073 if (single) return "설정";
2074 else return "설정들";
2076 return "기타";
2078 return "제약";
2079 default:
2080 return "클래스";
2081 }
2082 }
2083
2085 { return "설계 유닛 문서화"; }
2086
2088 { return "설계 유닛 계층도"; }
2089
2091 { return "설계 유닛 색인"; }
2092
2094 { return "설계 유닛 목록"; }
2095
2097 {
2098 return "다음은 모든 설계 유닛 멤버들의 목록이며, 각 항목에는 해당 멤버가 속한 엔티티의 링크가 포함되어 있습니다:";
2099 }
2100
2102 { return "설계 유닛 멤버들"; }
2103
2105 { return "설계 유닛"; }
2106
2108 { return "함수/프로시저/프로세스"; }
2109
2111 { return "순서도:"; }
2112
2113//////////////////////////////////////////////////////////////////////////
2114// new since 1.8.19 (Slice support)
2115//////////////////////////////////////////////////////////////////////////
2116
2118 { return "패키지 목록"; }
2119
2121 { return "인터페이스"; }
2122
2124 { return "인터페이스 색인"; }
2125
2127 { return "인터페이스 목록"; }
2128
2130 { return "다음은 간략한 설명과 함께 인터페이스들의 목록입니다.:"; }
2131
2133 { return "인터페이스 계층도"; }
2134
2136 { return "이 상속 목록은 완전하진 않지만 알파벳순으로 대략적으로 정렬되어있습니다.:"; }
2137
2139 { return "인터페이스 문서화"; }
2140
2142 { return "예외 색인"; }
2143
2145 { return "예외 목록"; }
2146
2148 { return "다음은 간략한 설명과 함께 예외들의 목록입니다.:"; }
2149
2151 { return "예외 계층도"; }
2152
2154 { return "이 상속 목록은 완전하진 않지만 알파벳순으로 대략적으로 정렬되어있습니다.:"; }
2155
2157 { return "예외 문서화"; }
2158
2159 QCString trCompoundReferenceSlice(const QCString &clName, ClassDef::CompoundType compType, bool isLocal) override
2160 {
2161 QCString result=clName;
2162 if (isLocal) result+=" 로컬";
2163 switch(compType)
2164 {
2165 case ClassDef::Class: result+=" 클래스"; break;
2166 case ClassDef::Struct: result+=" 구조체"; break;
2167 case ClassDef::Union: result+=" 공용체"; break;
2168 case ClassDef::Interface: result+=" 인터페이스"; break;
2169 case ClassDef::Protocol: result+=" 프로토콜"; break;
2170 case ClassDef::Category: result+=" 카테고리"; break;
2171 case ClassDef::Exception: result+=" 예외"; break;
2172 default: break;
2173 }
2174 result+=" 참조";
2175 return result;
2176 }
2177
2179 {
2180 QCString result;
2181 switch(compType)
2182 {
2183 case ClassDef::Class:
2184 if (lang == SrcLangExt::Fortran) result=trType(true,true);
2185 else result=trClass(true,true);
2186 break;
2187 case ClassDef::Struct: result="구조체"; break;
2188 case ClassDef::Union: result="공용체"; break;
2189 case ClassDef::Interface: result="인터페이스"; break;
2190 case ClassDef::Protocol: result="프로토콜"; break;
2191 case ClassDef::Category: result="카테고리"; break;
2192 case ClassDef::Exception: result="예외"; break;
2193 case ClassDef::Service: result="서비스"; break;
2194 case ClassDef::Singleton: result="싱글톤"; break;
2195 default: break;
2196 }
2197 return result;
2198 }
2199
2201 { return "구조체"; }
2202
2204 { return "구조체 색인"; }
2205
2207 { return "구조체 목록"; }
2208
2210 { return "다음은 간략한 설명과 함께 구조체들의 목록입니다.:"; }
2211
2213 { return "구조체 문서화"; }
2214
2216 { return "시퀀스"; }
2217
2219 { return "시퀀스 문서화"; }
2220
2222 { return "딕셔너리"; }
2223
2225 { return "딕셔너리 문서화"; }
2226
2228 { return "상수"; }
2229
2231 { return "상수 문서화"; }
2232
2234 { return "연산"; }
2235
2237 { return "연산 문서화"; }
2238
2240 { return "데이터 멤버"; }
2241
2243 { return "데이터 멤버 문서화"; }
2244
2245//////////////////////////////////////////////////////////////////////////
2246// new since 1.9.2
2247//////////////////////////////////////////////////////////////////////////
2248
2250 {
2251 bool extractAll = Config_getBool(EXTRACT_ALL);
2252 QCString result="다음은 ";
2253 if (!extractAll)
2254 {
2255 result+="문서화된 ";
2256 }
2257
2258 switch (hl)
2259 {
2261 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
2262 {
2263 result+="모든 구조체와 공용체의 필드들";
2264 }
2265 else
2266 {
2267 result+="모든 클래스 멤버들";
2268 }
2269 break;
2271 result+="모든 함수들";
2272 break;
2274 result+="모든 변수들";
2275 break;
2277 result+="모든 타입정의들";
2278 break;
2280 result+="모든 열거형들";
2281 break;
2283 result+="모든 열거형 값들";
2284 break;
2286 result+="모든 속성들";
2287 break;
2289 result+="모든 이벤트들";
2290 break;
2292 result+="모든 관련 심볼들";
2293 break;
2294 case ClassMemberHighlight::Total: // for completeness
2295 break;
2296 }
2297 result+="의 목록입니다. ";
2298 if (!extractAll)
2299 {
2300 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
2301 {
2302 result+="각 필드들은 해당 필드에 대한 구조체/공용체의 "
2303 "문서화 페이지의 링크를 가지고 있습니다.:";
2304 }
2305 else
2306 {
2307 result+="각 멤버들은 해당 멤버에 대한 클래스의 "
2308 "문서화 페이지의 링크를 가지고 있습니다.:";
2309 }
2310 }
2311 else
2312 {
2313 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
2314 {
2315 result+="각 필드들은 해당 필드가 속해 있는 구조체/공용체에 "
2316 "대한 링크를 가지고 있습니다.:";
2317 }
2318 else
2319 {
2320 result+="각 멤버들은 해당 멤버가 속해 있는 클래스에 "
2321 "대한 링크를 가지고 있습니다.:";
2322 }
2323 }
2324 return result;
2325 }
2326
2328 {
2329 bool extractAll = Config_getBool(EXTRACT_ALL);
2330 QCString result="다음은 ";
2331 if (!extractAll) result+="문서화된 ";
2332
2333 switch (hl)
2334 {
2336 if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
2337 {
2338 result+="모든 함수, 변수, 매크로, 열거형 및 타입정의들";
2339 }
2340 else
2341 {
2342 result+="모든 파일 멤버들";
2343 }
2344 break;
2346 result+="모든 함수들";
2347 break;
2349 result+="모든 변수들";
2350 break;
2352 result+="모든 타입정의들";
2353 break;
2355 result+="모든 시퀀스들";
2356 break;
2358 result+="모든 딕셔너리들";
2359 break;
2361 result+="모든 열거형들";
2362 break;
2364 result+="모든 열거형 값들";
2365 break;
2367 result+="모든 매크로들";
2368 break;
2369 case FileMemberHighlight::Total: // for completeness
2370 break;
2371 }
2372 result+="의 목록입니다. ";
2373 if (extractAll)
2374 result+="각 항목은 해당 항목이 속한 파일 페이지의 링크를 가지고 있습니다.:";
2375 else
2376 result+="각 항목은 그에 대한 문서화 페이지의 링크를 가지고 있습니다.:";
2377 return result;
2378 }
2379
2381 {
2382 bool extractAll = Config_getBool(EXTRACT_ALL);
2383 QCString result="다음은 ";
2384 if (!extractAll) result+="문서화된 ";
2385 result+="모든 네임스페이스 ";
2386 switch (hl)
2387 {
2389 result+="멤버들";
2390 break;
2392 result+="함수들";
2393 break;
2395 result+="변수들";
2396 break;
2398 result+="타입정의들";
2399 break;
2401 result+="시퀀스들";
2402 break;
2404 result+="딕셔너리들";
2405 break;
2407 result+="열거형들";
2408 break;
2410 result+="열거형 값들";
2411 break;
2412 case NamespaceMemberHighlight::Total: // for completeness
2413 break;
2414 }
2415 result+="의 목록입니다. ";
2416 if (extractAll)
2417 result+="각 항목은 해당 항목의 네임스페이스 문서화 페이지의 링크를 가지고 있습니다.:";
2418 else
2419 result+="각 항목은 그들이 속한 네임스페이스 페이지의 링크를 가지고 있습니다.:";
2420 return result;
2421 }
2422
2423//////////////////////////////////////////////////////////////////////////
2424// new since 1.9.4
2425//////////////////////////////////////////////////////////////////////////
2426
2428 { return "관련 심볼"; }
2429
2431 { return "(멤버 심볼이 아닙니다. 주의하십시오.)"; }
2432
2434 { return "Friend 및 관련 심볼 문서화"; }
2435
2436//////////////////////////////////////////////////////////////////////////
2437// new since 1.9.5
2438//////////////////////////////////////////////////////////////////////////
2439
2441 { return "선언"; }
2442
2444 { return "정의"; }
2445
2446//////////////////////////////////////////////////////////////////////////
2447// new since 1.9.6
2448//////////////////////////////////////////////////////////////////////////
2449
2450 QCString trConcept(bool first_capital, bool singular) override
2451 {
2452 return createNoun(first_capital, singular, "개념", "들");
2453 }
2454
2456 { return "개념 정의"; }
2457
2459 { return "개념 문서화"; }
2460
2462 { return "개념 색인"; }
2463
2465 { return "개념 목록"; }
2466
2467 QCString trConceptListDescription(bool extractAll) override
2468 {
2469 QCString result="다음은 ";
2470 if (!extractAll) result+="문서화된 ";
2471 result+="모든 개념들의 목록입니다. (간략한 설명만을 보여줍니다):";
2472 return result;
2473 }
2474
2475 QCString trConceptReference(const QCString &conceptName) override
2476 {
2477 QCString result=conceptName;
2478 result+=" 개념 참조";
2479 return result;
2480 }
2481
2483 {
2484 bool extractAll = Config_getBool(EXTRACT_ALL);
2485 QCString result="다음은 ";
2486 if (!extractAll) result+="문서화된 ";
2487 result+="모든 모듈 ";
2488 QCString pluralResult = "";
2489 switch (hl)
2490 {
2492 pluralResult="멤버들";
2493 break;
2495 pluralResult="함수들";
2496 break;
2498 pluralResult="변수들";
2499 break;
2501 pluralResult="타입정의들";
2502 break;
2504 pluralResult="열거형들";
2505 break;
2507 pluralResult="열거형 값들";
2508 break;
2509 case ModuleMemberHighlight::Total: // for completeness
2510 break;
2511 }
2512 result+=pluralResult;
2513 result+="의 목록입니다. ";
2514 if (extractAll)
2515 result+="각 항목은 해당 멤버의 모듈 문서화 페이지의 링크를 가지고 있습니다.:";
2516 else
2517 result+="각 항목은 그들이 속한 모듈의 링크를 가지고 있습니다.:";
2518 return result;
2519 }
2520
2522 { return "내보낸 모듈"; }
2523
2524//////////////////////////////////////////////////////////////////////////
2525// new since 1.9.8
2526//////////////////////////////////////////////////////////////////////////
2527
2529 { return "토픽"; }
2530
2532 { return "토픽 문서화"; }
2533
2535 { return "토픽 색인"; }
2536
2538 { return "토픽 목록"; }
2539
2541 { return "다음은 모든 토픽들의 목록입니다. (간략한 설명만을 보여줍니다):"; }
2542
2544 { return name+" 참조"; }
2545
2546//////////////////////////////////////////////////////////////////////////
2547// new since 1.10.0
2548//////////////////////////////////////////////////////////////////////////
2549
2551 { return "클립보드에 복사"; }
2552
2553//////////////////////////////////////////////////////////////////////////
2554// new since 1.11.0
2555//////////////////////////////////////////////////////////////////////////
2556
2558 { return "중요"; }
2559
2560//////////////////////////////////////////////////////////////////////////
2561// new since 1.16.0 (requirements)
2562//////////////////////////////////////////////////////////////////////////
2563
2565 { return "요구사항"; }
2566
2568 { return "ID"; }
2569
2570 QCString trSatisfies(bool singular) override
2571 {
2572 return createNoun(true, singular, "요구사항 충족", "");
2573 }
2574
2575 QCString trSatisfiedBy(const QCString &list) override
2576 {
2577 return list+"에 의해 충족됨.";
2578 }
2579
2581 { return "충족되지 않은 요구사항"; }
2582
2583 QCString trUnsatisfiedRequirementsText(bool /*singular*/,const QCString &list) override
2584 {
2585 return "요구사항 "+list+"에 '충족' 관계가 없습니다.";
2586 }
2587
2588 QCString trVerifies(bool singular) override
2589 {
2590 return createNoun(true, singular, "요구사항 검증", "");
2591 }
2592
2593 QCString trVerifiedBy(const QCString &list) override
2594 {
2595 return list+"에 의해 검증됨.";
2596 }
2597
2599 { return "검증되지 않은 요구사항"; }
2600
2601 QCString trUnverifiedRequirementsText(bool /*singular*/,const QCString &list) override
2602 {
2603 return "요구사항 "+list+"에 '검증' 관계가 없습니다.";
2604 }
2605
2606};
2607
2608#endif
CompoundType
The various compound types.
Definition classdef.h:109
@ Singleton
Definition classdef.h:117
@ Interface
Definition classdef.h:112
@ Exception
Definition classdef.h:115
This is an alternative implementation of QCString.
Definition qcstring.h:103
bool isEmpty() const
Returns TRUE iff the string is empty.
Definition qcstring.h:167
QCString & sprintf(const char *format,...)
Definition qcstring.cpp:29
Abstract base class for all translatable text fragments.
Definition translator.h:29
QCString createNoun(bool first_capital, bool singular, const QCString &base, const QCString &plurSuffix, const QCString &singSuffix="")
Definition translator.h:801
QCString p_latexCommandName(const QCString &latexCmd)
Definition translator.h:788
QCString trTopicDocumentation() override
QCString trPageIndex() override
QCString trFileMembersDescriptionTotal(FileMemberHighlight::Enum hl) 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 trConceptList() override
QCString trUnverifiedRequirements() override
QCString trFlowchart() override
QCString trCustomReference(const QCString &name) override
QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType, bool single) override
QCString trConstants() override
bool needsPunctuation() override
add punctuation at the end of a brief description when needed and supported by the language
QCString latexLanguageSupportCommand() override
QCString trInterfaceHierarchy() override
QCString trConceptDefinition() override
QCString trEnumName() override
QCString trEnumerationValueDocumentation() override
QCString trDeclaration() override
QCString trNamespace(bool, bool singular) override
QCString trStaticPrivateMembers() override
QCString trGeneratedBy() override
QCString trDataMembers() override
QCString trRTFCharSet() override
QCString trPrivateTypes() override
QCString trTypeDocumentation() override
QCString trRelatedSymbols() override
QCString trDate() override
QCString trDesignUnitIndex() override
QCString trModuleIndex() override
QCString trProtectedSlots() override
QCString trAttention() override
QCString trWarning() override
QCString trLegend() override
QCString trFunctionAndProc() override
QCString trDataTypes() override
QCString trCopyToClipboard() override
QCString trExceptionHierarchy() override
QCString trCiteReferences() override
QCString trStructList() 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 trInterfaceDocumentation() override
QCString trNoMatches() override
QCString trExceptionList() override
QCString trSingletonReference(const QCString &sName) override
UNO IDL singleton page title.
QCString trTopicListDescription() override
QCString trSingletonGeneratedFromFiles(bool single) override
UNO IDL singleton page.
QCString trExceptionHierarchyDescription() override
QCString trDeprecatedList() override
QCString getLanguageString() override
language codes for Html help
QCString trVhdlType(VhdlSpecifier type, bool single) override
VHDL type or entity names.
QCString trInclDepGraph(const QCString &fName) override
QCString trExamplesDescription() override
QCString trInterfaceList() override
QCString trPackageTypes() override
QCString trPublicTypes() override
QCString trPrivateAttribs() override
QCString trClassDocumentation() override
QCString trExportedModules() 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 trExceptionListDescription() override
QCString trPackageListDescription() override
QCString trSequenceDocumentation() override
QCString trCompoundReferenceFortran(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate) override
QCString trTypedefs() override
QCString trModuleDocumentation() override
QCString trRequirementID() override
QCString trClasses() override
QCString trRequirements() 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 trSliceInterfaces() override
QCString trDefineDocumentation() override
QCString trDirDocumentation() override
QCString trModuleReference(const QCString &namespaceName) override
QCString trCompoundListFortran() override
QCString trPrecondition() override
QCString trPackageAttribs() override
QCString trTopicList() 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 trVerifiedBy(const QCString &list) override
QCString trReimplementedInList(int numEntries) override
QCString trGotoSourceCode() override
QCString trVerifies(bool singular) override
QCString trNamespaceDocumentation() override
QCString trEnumerationTypeDocumentation() override
QCString trMemberFunctionDocumentationFortran() override
QCString trNamespaceMembersDescriptionTotal(NamespaceMemberHighlight::Enum hl) override
QCString trType(bool, bool singular) override
QCString trIncludingInheritedMembers() override
QCString trConceptReference(const QCString &conceptName) override
QCString trBug() override
QCString trExceptionIndex() override
QCString trEnumerations() override
QCString trStructs() override
QCString trCallerGraph() override
QCString trMemberList() override
QCString trSequences() override
QCString trDefineValue() override
QCString trDirReference(const QCString &dirName) override
QCString trDesignUnitMembers() 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 trOperations() 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 trImportant() override
QCString trInterfaces() override
old style UNO IDL services: implemented interfaces
QCString trPublicSlots() override
QCString trUnsatisfiedRequirementsText(bool, const QCString &list) override
QCString trStructDocumentation() override
QCString trStructListDescription() 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 trDesignUnitDocumentation() override
QCString trReferenceManual() override
QCString trISOLang() override
QCString trTodoList() override
QCString trDirIndex() override
QCString trOperationDocumentation() override
QCString trDayOfWeek(int dayOfWeek, bool, bool full) override
QCString trSatisfies(bool singular) override
QCString trSearchResults(int numDocuments) override
QCString trNamespaceMembers() override
QCString trPackageList() override
QCString trConcept(bool first_capital, bool singular) override
QCString trModuleMembersDescriptionTotal(ModuleMemberHighlight::Enum hl) override
QCString trClassMethods() override
QCString trInterfaceHierarchyDescription() 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 trStructIndex() 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 trRelatedSymbolsSubscript() override
QCString trDefinition() 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 trConceptIndex() override
QCString trCompoundReferenceSlice(const QCString &clName, ClassDef::CompoundType compType, bool isLocal) 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 trConceptDocumentation() override
QCString trDictionaries() override
QCString trTopicIndex() override
QCString trInterfaceListDescription() override
QCString trMore() override
QCString trExceptionDocumentation() override
QCString trCompoundType(ClassDef::CompoundType compType, SrcLangExt lang) override
QCString trMemberTypedefDocumentation() override
QCString trListOfAllMembers() override
QCString trFile(bool, bool singular) override
QCString trEventDocumentation() override
QCString trDataMemberDocumentation() override
QCString trDocumentation(const QCString &projName) override
QCString trDictionaryDocumentation() override
QCString trDesignUnitListDescription() 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 trSatisfiedBy(const QCString &list) override
QCString trMemberDataDocumentation() override
QCString trConstantGroups() override
UNO IDL constant groups.
QCString trConceptListDescription(bool extractAll) override
QCString trDesignUnitList() override
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 trDesignUnitHierarchy() override
QCString trFileIn(const QCString &name) override
QCString trCompoundList() override
QCString trStaticPrivateAttribs() override
QCString trUnsatisfiedRequirements() 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 trDesignUnits() override
QCString trSeeAlso() override
QCString trInterfaceIndex() override
QCString trPropertyDocumentation() override
QCString trSearching() override
QCString trDefinedIn() override
QCString trTopics() 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 trCompoundMembersDescriptionTotal(ClassMemberHighlight::Enum hl) 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 trRelatedSymbolDocumentation() override
QCString trEnumerationValues() override
QCString trClassHierarchyDescription() override
QCString trUnverifiedRequirementsText(bool, const QCString &list) 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 trConstantDocumentation() override
QCString trStaticPackageFunctions() override
QCString trRTFGeneralIndex() override
#define Config_getBool(name)
Definition config.h:33
DateTimeType
Definition datetime.h:38
SrcLangExt
Definition types.h:207
VhdlSpecifier
Definition types.h:770
@ INSTANTIATION
Definition types.h:791
@ MISCELLANEOUS
Definition types.h:797
@ SHAREDVARIABLE
Definition types.h:794
QCString generateMarker(int id)
Definition util.cpp:279
QCString getDotImageExtension()
Definition util.cpp:6307