translator_kr.h 58 KB
Newer Older
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1 2
/******************************************************************************
 *
3
 * 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
4
 *
5
 * Copyright (C) 1997-2008 by Dimitri van Heesch.
Dimitri van Heesch's avatar
Dimitri van Heesch committed
6 7
 *
 * Permission to use, copy, modify, and distribute this software and its
8 9
 * documentation under the terms of the GNU General Public License is hereby 
 * granted. No representations are made about the suitability of this software 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
10 11 12 13 14 15 16 17
 * for any purpose. It is provided "as is" without express or implied warranty.
 * See the GNU General Public License for more details.
 *
 * Documents produced by Doxygen are derivative works derived from the
 * input used in their production; they are not affected by this license.
 *
 */

18 19 20
#ifndef TRANSLATOR_KR_H
#define TRANSLATOR_KR_H

21 22

/* Korean translators
23 24
 * doxygen-svn
 *   * fly1004@gmail.com
25 26 27 28 29 30
 * doxygen-1.5.3
 *   * Astromaker(http://ngps.net/)
 *   * gpgiki(http://www.gpgstudy.com/gpgiki/)
 * doxygen-1.2.11
 *   * ryk */

31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
/*! 
 When defining a translator class for the new language, follow
 the description in the documentation.  One of the steps says
 that you should copy the translator_en.h (this) file to your
 translator_xx.h new file.  Your new language should use the
 Translator class as the base class.  This means that you need to
 implement exactly the same (pure virtual) methods as the
 TranslatorEnglish does.  Because of this, it is a good idea to
 start with the copy of TranslatorEnglish and replace the strings
 one by one.

 It is not necessary to include "translator.h" or
 "translator_adapter.h" here.  The files are included in the
 language.cpp correctly.  Not including any of the mentioned
 files frees the maintainer from thinking about whether the
 first, the second, or both files should be included or not, and
 why.  This holds namely for localized translators because their
 base class is changed occasionaly to adapter classes when the
 Translator class changes the interface, or back to the
 Translator class (by the local maintainer) when the localized
 translator is made up-to-date again.
*/
53
class TranslatorKorean : public Translator
Dimitri van Heesch's avatar
Dimitri van Heesch committed
54
{
55 56 57 58
  protected:
    friend class TranslatorAdapterBase;
    virtual ~TranslatorKorean() {}

Dimitri van Heesch's avatar
Dimitri van Heesch committed
59
  public:
60 61

    // --- Language control methods -------------------
62 63 64
    
    /*! Used for identification of the language. The identification 
     * should not be translated. It should be replaced by the name 
65
     * of the language in English using lower-case characters only
66
     * (e.g. "czech", "japanese", "russian", etc.). It should be equal to 
67 68 69
     * the identification used in language.cpp.
     */
    virtual QCString idLanguage()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
70
    { return "korean"; }
71 72
    
    /*! Used to get the LaTeX command(s) for the language support. 
73
     *  This method should return string with commands that switch
74
     *  LaTeX to the desired language.  For example 
75 76 77 78 79 80 81
     *  <pre>"\\usepackage[german]{babel}\n"
     *  </pre>
     *  or
     *  <pre>"\\usepackage{polski}\n"
     *  "\\usepackage[latin2]{inputenc}\n"
     *  "\\usepackage[T1]{fontenc}\n"
     *  </pre>
82
     * 
83 84 85 86 87
     * The English LaTeX does not use such commands.  Because of this
     * the empty string is returned in this implementation.
     */
    virtual QCString latexLanguageSupportCommand()
    {
88 89 90 91
      // I'm not sure what this should be.
      // When I figure it out, I'll update this.
      // see http://www.ktug.or.kr/jsboard/read.php?table=operate&no=4422&page=1
      return "\\usepackage{hfont}\n";
92
    }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
93 94 95 96 97 98 99

    /*! return the language charset. This will be used for the HTML output */
    virtual QCString idLanguageCharset()
    {
      return "euc-kr";
    }

100 101
    // --- Language translation methods -------------------

Dimitri van Heesch's avatar
Dimitri van Heesch committed
102
    /*! used in the compound documentation before a list of related functions. */
103
    virtual QCString trRelatedFunctions()
104
    { return "관련된 함수들"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
105 106

    /*! subscript for the related functions. */
107
    virtual QCString trRelatedSubscript()
108
    { return "(다음은 멤버 함수들이 아닙니다. 주의하십시오.)"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
109 110

    /*! header that is put before the detailed description of files, classes and namespaces. */
111
    virtual QCString trDetailedDescription()
112
    { return "상세한 설명"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
113 114

    /*! header that is put before the list of typedefs. */
115
    virtual QCString trMemberTypedefDocumentation()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
116
    { return "멤버 타입정의 문서화"; }
117
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
118
    /*! header that is put before the list of enumerations. */
119
    virtual QCString trMemberEnumerationDocumentation()
120
    { return "멤버 열거형 문서화"; }
121
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
122
    /*! header that is put before the list of member functions. */
123
    virtual QCString trMemberFunctionDocumentation()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
124
    { return "멤버 함수 문서화"; }
125
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
126
    /*! header that is put before the list of member attributes. */
127
    virtual QCString trMemberDataDocumentation()
128
    { 
129 130
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
131
          return "필드 문서화";
132 133 134
      }
      else
      {
135
          return "멤버 데이타 문서화";
136 137
      }
    }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
138 139

    /*! this is the text of a link put after brief descriptions. */
140 141
    virtual QCString trMore() 
    { return "더 자세히 ..."; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
142 143

    /*! put in the class documentation */
144
    virtual QCString trListOfAllMembers()
145
    { return "모든 멤버 목록"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
146 147

    /*! used as the title of the "list of all members" page of a class */
148
    virtual QCString trMemberList()
149
    { return "멤버 목록"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
150 151

    /*! this is the first part of a sentence that is followed by a class name */
152
    virtual QCString trThisIsTheListOfAllMembers()
153
    { return "다음에 대한 모든 멤버의 목록입니다 : "; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
154 155

    /*! this is the remainder of the sentence after the class name */
156
    virtual QCString trIncludingInheritedMembers()
157 158
    { return " (모든 상속된 멤버들도 포함합니다.)"; }
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
159 160 161
    /*! this is put at the author sections at the bottom of man pages.
     *  parameter s is name of the project name.
     */
162
    virtual QCString trGeneratedAutomatically(const char *s)
163 164 165
    { QCString result="소스 코드로부터 ";
      if (s) result+=s+(QCString)"를 위해 ";
      result+="Doxygen에 의해 자동으로 생성됨."; 
166
      return result;
Dimitri van Heesch's avatar
Dimitri van Heesch committed
167 168 169
    }

    /*! put after an enum name in the list of all members */
170
    virtual QCString trEnumName()
171
    { return "열거형 이름"; }
172
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
173
    /*! put after an enum value in the list of all members */
174
    virtual QCString trEnumValue()
175
    { return "열거형 값"; }
176
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
177
    /*! put after an undocumented member in the list of all members */
178
    virtual QCString trDefinedIn()
179
    { return "다음에서 정의됨 :"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
180 181 182

    // quick reference sections

183
    /*! This is put above each page as a link to the list of all groups of 
184
     *  compounds or files (see the \\group command).
Dimitri van Heesch's avatar
Dimitri van Heesch committed
185
     */
186
    virtual QCString trModules()
187
    { return "모듈"; }
188
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
189
    /*! This is put above each page as a link to the class hierarchy */
190
    virtual QCString trClassHierarchy()
191 192
    { return "클래스 계통도"; }
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
193
    /*! This is put above each page as a link to the list of annotated classes */
194
    virtual QCString trCompoundList()
195 196 197 198 199 200 201 202 203
    { 
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
        return "데이타 구조";
      }
      else
      {
        return "클래스 목록"; 
      }
204
    }
205
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
206
    /*! This is put above each page as a link to the list of documented files */
207
    virtual QCString trFileList()
208
    { return "파일 목록"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
209 210

    /*! This is put above each page as a link to all members of compounds. */
211
    virtual QCString trCompoundMembers()
212 213 214 215 216 217 218 219 220
    { 
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
        return "데이타 필드"; 
      }
      else
      {
        return "클래스 멤버"; 
      }
221
    }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
222 223

    /*! This is put above each page as a link to all members of files. */
224
    virtual QCString trFileMembers()
225 226 227 228 229 230 231 232 233
    { 
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
        return "전역"; 
      }
      else
      {
        return "파일 멤버"; 
      }
234
    }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
235 236

    /*! This is put above each page as a link to all related pages. */
237
    virtual QCString trRelatedPages()
238
    { return "관련된 페이지"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
239 240

    /*! This is put above each page as a link to all examples. */
241
    virtual QCString trExamples()
242
    { return "예제"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
243 244

    /*! This is put above each page as a link to the search engine. */
245
    virtual QCString trSearch()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
246 247 248
    { return "검색"; }

    /*! This is an introduction to the class hierarchy. */
249
    virtual QCString trClassHierarchyDescription()
250 251
    { return "이 상속 목록은 완전하진 않지만 알파벳순으로 대략적으로 정렬되어있습니다.:";
    }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
252 253

    /*! This is an introduction to the list with all files. */
254
    virtual QCString trFileListDescription(bool extractAll)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
255
    {
256
      QCString result="다음은 ";
257
      if (!extractAll) result+="문서화된 ";
258
      result+="모든 파일에 대한 목록입니다. (간략한 설명만을 보여줍니다) :";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
259 260 261 262
      return result;
    }

    /*! This is an introduction to the annotated compound list. */
263
    virtual QCString trCompoundListDescription()
264 265 266 267 268 269 270 271 272 273 274
    { 
      
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
        return "다음은 데이타 구조들입니다. (간략한 설명만을 보여줍니다) :"; 
      }
      else
      {
        return "다음은 클래스, 구조체, 공용체 그리고 인터페이스들입니다. "
               "(간략한 설명만을 보여줍니다) :"; 
      }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
275 276 277
    }

    /*! This is an introduction to the page with all class members. */
278
    virtual QCString trCompoundMembersDescription(bool extractAll)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
279
    {
280
      QCString result="다음은 ";
281 282
      if (!extractAll)
      {
283 284 285 286 287
        result+="문서화된 ";
      }
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
        result+="모든 구조체와 공용체의 필드들";
288
      }
289
      else
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
      {
        result+="모든 클래스 멤버들";
      }
      result+="의 목록입니다. ";

      if (!extractAll) 
      {
        if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
        {
          result+="각 필드들은 해당 필드에 대한 구조체와 공용체의 "
		  "문서화 페이지의 링크를 가지고 있습니다. :";
        }
        else
        {
          result+="각 멤버들은 해당 멤버에 대한 클래스의 문서화 페이지의 "
		  "링크를 가지고 있습니다. :";
        }
      }
      else 
      {
        if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
        {
          result+="각 필드들은 해당 필드가 속해 있는 구조체와 공용체에 "
		  "대한 링크를 가지고 있습니다. :";
        }
        else
        {
          result+="각 멤버들은 해당 멤버가 속해 있는 클래스에 대한 "
		  "링크를 가지고 있습니다. :";
        }
      }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
321 322 323 324
      return result;
    }

    /*! This is an introduction to the page with all file members. */
325
    virtual QCString trFileMembersDescription(bool extractAll)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
326
    {
327 328 329 330 331 332 333
      QCString result="다음은 ";
      if (!extractAll) result+="문서화된  ";
      
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
        result+="모든 함수, 변수, 매크로, 열거형, 타입정의들";
      }
334
      else
335 336 337 338 339 340 341 342 343 344
      {
        result+="파일 멤버들";
      }
      result+="의 목록입니다. ";

      result+="각 항목은 ";
      if (extractAll) 
        result+="그들이 속한 파일 페이지의 링크를 가지고 있습니다. :";
      else 
        result+="그들에 대한 문서화 페이지의 링크를 가지고 있습니다. :";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
345 346 347 348
      return result;
    }

    /*! This is an introduction to the page with the list of all examples */
349
    virtual QCString trExamplesDescription()
350
    { return "다음은 모든 예제들의 목록입니다.:"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
351 352

    /*! This is an introduction to the page with the list of related pages */
353
    virtual QCString trRelatedPagesDescription()
354
    { return "다음은 관련된 모든 문서화 페이지들의 목록입니다.:"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
355 356

    /*! This is an introduction to the page with the list of class/file groups */
357
    virtual QCString trModulesDescription()
358
    { return "다음은 모든 모듈들의 목록입니다.:"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
359

360
    // index titles (the project name is prepended for these) 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
361 362

    /*! This is used in HTML as the title of index.html. */
363
    virtual QCString trDocumentation()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
364 365
    { return "문서화"; }

366
    /*! This is used in LaTeX as the title of the chapter with the 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
367 368
     * index of all groups.
     */
369
    virtual QCString trModuleIndex()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
370 371
    { return "모듈 색인"; }

372
    /*! This is used in LaTeX as the title of the chapter with the 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
373 374
     * class hierarchy.
     */
375
    virtual QCString trHierarchicalIndex()
376
    { return "계통도 색인"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
377

378
    /*! This is used in LaTeX as the title of the chapter with the 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
379 380
     * annotated compound index.
     */
381
    virtual QCString trCompoundIndex()
382 383 384 385 386 387 388 389 390 391
    {
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      { 
        return "데이타 구조 색인";
      }
      else
      {
        return "클래스 색인"; 
      }
    }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
392 393 394 395

    /*! This is used in LaTeX as the title of the chapter with the
     * list of all files.
     */
396
    virtual QCString trFileIndex() 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
397 398 399 400 401
    { return "파일 색인"; }

    /*! This is used in LaTeX as the title of the chapter containing
     *  the documentation of all groups.
     */
402
    virtual QCString trModuleDocumentation()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
403 404 405 406 407
    { return "모듈 문서화"; }

    /*! This is used in LaTeX as the title of the chapter containing
     *  the documentation of all classes, structs and unions.
     */
408
    virtual QCString trClassDocumentation()
409 410 411 412 413 414 415 416 417 418
    { 
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
        return "데이타 구조 문서화"; 
      }
      else
      {
        return "클래스 문서화"; 
      }
    }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
419 420 421 422

    /*! This is used in LaTeX as the title of the chapter containing
     *  the documentation of all files.
     */
423
    virtual QCString trFileDocumentation()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
424 425 426 427 428
    { return "파일 문서화"; }

    /*! This is used in LaTeX as the title of the chapter containing
     *  the documentation of all examples.
     */
429
    virtual QCString trExampleDocumentation()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
430 431 432 433 434
    { return "예제 문서화"; }

    /*! This is used in LaTeX as the title of the chapter containing
     *  the documentation of all related pages.
     */
435
    virtual QCString trPageDocumentation()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
436 437 438
    { return "페이지 문서화"; }

    /*! This is used in LaTeX as the title of the document */
439
    virtual QCString trReferenceManual()
440 441 442
    { return "참조 매뉴얼"; }
    
    /*! This is used in the documentation of a file as a header before the 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
443 444
     *  list of defines
     */
445
    virtual QCString trDefines()
446
    { return "매크로"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
447

448
    /*! This is used in the documentation of a file as a header before the 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
449 450
     *  list of function prototypes
     */
451
    virtual QCString trFuncProtos()
452
    { return "함수 원형"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
453

454
    /*! This is used in the documentation of a file as a header before the 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
455 456
     *  list of typedefs
     */
457
    virtual QCString trTypedefs()
458
    { return "타입정의"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
459

460
    /*! This is used in the documentation of a file as a header before the 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
461 462
     *  list of enumerations
     */
463
    virtual QCString trEnumerations()
464
    { return "열거형 타입"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
465

466
    /*! This is used in the documentation of a file as a header before the 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
467 468
     *  list of (global) functions
     */
469
    virtual QCString trFunctions()
470
    { return "함수"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
471

472
    /*! This is used in the documentation of a file as a header before the 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
473 474
     *  list of (global) variables
     */
475
    virtual QCString trVariables()
476
    { return "변수"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
477

478
    /*! This is used in the documentation of a file as a header before the 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
479 480
     *  list of (global) variables
     */
481
    virtual QCString trEnumerationValues()
482 483
    { return "열거형 멤버"; }
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
484 485 486
    /*! This is used in the documentation of a file before the list of
     *  documentation blocks for defines
     */
487
    virtual QCString trDefineDocumentation()
488
    { return "매크로 문서화"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
489

490
    /*! This is used in the documentation of a file/namespace before the list 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
491 492
     *  of documentation blocks for function prototypes
     */
493
    virtual QCString trFunctionPrototypeDocumentation()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
494 495
    { return "함수 원형 문서화"; }

496
    /*! This is used in the documentation of a file/namespace before the list 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
497 498
     *  of documentation blocks for typedefs
     */
499
    virtual QCString trTypedefDocumentation()
500
    { return "타입정의 문서화"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
501

502
    /*! This is used in the documentation of a file/namespace before the list 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
503 504
     *  of documentation blocks for enumeration types
     */
505
    virtual QCString trEnumerationTypeDocumentation()
506
    { return "열거형 타입 문서화"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
507

508
    /*! This is used in the documentation of a file/namespace before the list 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
509 510
     *  of documentation blocks for functions
     */
511
    virtual QCString trFunctionDocumentation()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
512 513
    { return "함수 문서화"; }

514
    /*! This is used in the documentation of a file/namespace before the list 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
515 516
     *  of documentation blocks for variables
     */
517
    virtual QCString trVariableDocumentation()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
518 519
    { return "변수 문서화"; }

520
    /*! This is used in the documentation of a file/namespace/group before 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
521 522
     *  the list of links to documented compounds
     */
523
    virtual QCString trCompounds()
524 525 526
    { 
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
527
        return "데이타 구조"; 
528 529 530
      }
      else
      {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
531
        return "클래스"; 
532 533
      }
    }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
534

535 536
    /*! This is used in the standard footer of each page and indicates when 
     *  the page was generated 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
537
     */
538
    virtual QCString trGeneratedAt(const char *date,const char *projName)
539 540 541 542
    { 
      QCString result=(QCString)"생성시간 : "+date;
      if (projName) result+=(QCString)", 프로젝트명 : "+projName;
      result+=(QCString)", 생성자 : ";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
543 544 545 546
      return result;
    }
    /*! This is part of the sentence used in the standard footer of each page.
     */
547
    virtual QCString trWrittenBy()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
548
    {
549
      return "작성자 : ";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
550 551 552
    }

    /*! this text is put before a class diagram */
553
    virtual QCString trClassDiagram(const char *clName)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
554
    {
555
      return (QCString)clName+"에 대한 상속 다이어그램 : ";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
556
    }
557
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
558
    /*! this text is generated when the \\internal command is used. */
559
    virtual QCString trForInternalUseOnly()
560
    { return "내부적적으로만 사용하기 위해."; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
561

Dimitri van Heesch's avatar
Dimitri van Heesch committed
562
    /*! this text is generated when the \\warning command is used. */
563
    virtual QCString trWarning()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
564 565
    { return "경고"; }

Dimitri van Heesch's avatar
Dimitri van Heesch committed
566
    /*! this text is generated when the \\version command is used. */
567
    virtual QCString trVersion()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
568 569
    { return "버전"; }

Dimitri van Heesch's avatar
Dimitri van Heesch committed
570
    /*! this text is generated when the \\date command is used. */
571
    virtual QCString trDate()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
572 573
    { return "날짜"; }

Dimitri van Heesch's avatar
Dimitri van Heesch committed
574
    /*! this text is generated when the \\return command is used. */
575
    virtual QCString trReturns()
576
    { return "반환값"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
577

Dimitri van Heesch's avatar
Dimitri van Heesch committed
578
    /*! this text is generated when the \\sa command is used. */
579
    virtual QCString trSeeAlso()
580
    { return "참고"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
581

Dimitri van Heesch's avatar
Dimitri van Heesch committed
582
    /*! this text is generated when the \\param command is used. */
583
    virtual QCString trParameters()
584
    { return "매개변수"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
585

Dimitri van Heesch's avatar
Dimitri van Heesch committed
586
    /*! this text is generated when the \\exception command is used. */
587
    virtual QCString trExceptions()
588
    { return "예외"; }
589
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
590
    /*! this text is used in the title page of a LaTeX document. */
591
    virtual QCString trGeneratedBy()
592
    { return "다음에 의해 생성됨 : "; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
593

594 595 596
//////////////////////////////////////////////////////////////////////////
// new since 0.49-990307
//////////////////////////////////////////////////////////////////////////
597
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
598
    /*! used as the title of page containing all the index of all namespaces. */
599
    virtual QCString trNamespaceList()
600
    { return "네임스페이스 목록"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
601 602

    /*! used as an introduction to the namespace list */
603
    virtual QCString trNamespaceListDescription(bool extractAll)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
604
    {
605
      QCString result="다음은 ";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
606
      if (!extractAll) result+="문서화된 ";
607
      result+="모든 네임스페이스에 대한 목록입니다. (간략한 설명만을 보여줍니다) :";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
608 609 610 611 612 613
      return result;
    }

    /*! used in the class documentation as a header before the list of all
     *  friends of a class
     */
614
    virtual QCString trFriends()
615 616
    { return "Friends"; }
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
617 618 619
//////////////////////////////////////////////////////////////////////////
// new since 0.49-990405
//////////////////////////////////////////////////////////////////////////
620
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
621
    /*! used in the class documentation as a header before the list of all
622
     * related classes 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
623 624
     */
    virtual QCString trRelatedFunctionDocumentation()
625 626
    { return "Friend, 그리고 관련된 함수 문서화"; }
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
627 628 629 630 631
//////////////////////////////////////////////////////////////////////////
// new since 0.49-990425
//////////////////////////////////////////////////////////////////////////

    /*! used as the title of the HTML page of a class/struct/union */
632
    virtual QCString trCompoundReference(const char *clName,
Dimitri van Heesch's avatar
Dimitri van Heesch committed
633 634 635
                                    ClassDef::CompoundType compType,
                                    bool isTemplate)
    {
636
      QCString result=(QCString)clName;
Dimitri van Heesch's avatar
Dimitri van Heesch committed
637 638 639 640 641 642
      switch(compType)
      {
        case ClassDef::Class:      result+=" 클래스"; break;
        case ClassDef::Struct:     result+=" 구조체"; break;
        case ClassDef::Union:      result+=" 공용체"; break;
        case ClassDef::Interface:  result+=" 인터페이스"; break;
Dimitri van Heesch's avatar
Dimitri van Heesch committed
643 644
        case ClassDef::Protocol:   result+=" 프로토콜"; break;
        case ClassDef::Category:   result+=" 카테고리"; break;
Dimitri van Heesch's avatar
Dimitri van Heesch committed
645 646
        case ClassDef::Exception:  result+=" 예외"; break;
      }
647
      if (isTemplate) result+=" 템플릿";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
648 649 650 651 652
      result+=" 참조";
      return result;
    }

    /*! used as the title of the HTML page of a file */
653
    virtual QCString trFileReference(const char *fileName)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
654 655
    {
      QCString result=fileName;
656
      result+=" 파일 참조";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
657 658 659 660
      return result;
    }

    /*! used as the title of the HTML page of a namespace */
661
    virtual QCString trNamespaceReference(const char *namespaceName)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
662 663
    {
      QCString result=namespaceName;
664
      result+=" 네임스페이스 참조";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
665 666
      return result;
    }
667
    
668
    virtual QCString trPublicMembers()
669
    { return "Public 멤버 함수"; }
670
    virtual QCString trPublicSlots()
671
    { return "Public Slots"; }
672
    virtual QCString trSignals()
673
    { return "Signals"; }
674
    virtual QCString trStaticPublicMembers()
675
    { return "정적 Public 멤버 함수"; }
676
    virtual QCString trProtectedMembers()
677
    { return "Protected 멤버 함수"; }
678
    virtual QCString trProtectedSlots()
679
    { return "Protected Slots"; }
680
    virtual QCString trStaticProtectedMembers()
681
    { return "정적 Protected 멤버 함수"; }
682
    virtual QCString trPrivateMembers()
683
    { return "Private 멤버 함수"; }
684
    virtual QCString trPrivateSlots()
685
    { return "Private Slots"; }
686
    virtual QCString trStaticPrivateMembers()
687 688
    { return "정적 Private 멤버 함수"; }
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
689 690 691
    /*! this function is used to produce a comma-separated list of items.
     *  use generateMarker(i) to indicate where item i should be put.
     */
692
    virtual QCString trWriteList(int numEntries)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
693 694 695 696
    {
      QCString result;
      int i;
      // the inherits list contain `numEntries' classes
697
      for (i=0;i<numEntries;i++) 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
698 699
      {
        // use generateMarker to generate placeholders for the class links!
700
        result+=generateMarker(i); // generate marker for entry i in the list 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
701
                                   // (order is left to right)
702
        
Dimitri van Heesch's avatar
Dimitri van Heesch committed
703 704
        if (i!=numEntries-1)  // not the last entry, so we need a separator
        {
705
          if (i<numEntries-2) // not the fore last entry 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
706 707
            result+=", ";
          else                // the fore last entry
708
            result+=", ";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
709 710
        }
      }
711
      return result; 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
712
    }
713
    
Dimitri van Heesch's avatar
Dimitri van Heesch committed
714 715 716
    /*! used in class documentation to produce a list of base classes,
     *  if class diagrams are disabled.
     */
717
    virtual QCString trInheritsList(int numEntries)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
718
    {
719
      return trWriteList(numEntries)+"를(을) 상속했습니다.";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
720 721 722 723 724
    }

    /*! used in class documentation to produce a list of super classes,
     *  if class diagrams are disabled.
     */
725
    virtual QCString trInheritedByList(int numEntries)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
726
    {
727
      return trWriteList(numEntries)+"에 의해 상속되었습니다.";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
728 729
    }

730
    /*! used in member documentation blocks to produce a list of 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
731 732
     *  members that are hidden by this one.
     */
733
    virtual QCString trReimplementedFromList(int numEntries)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
734
    {
735
      return trWriteList(numEntries)+"(으)로부터 재구현되었습니다.";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
736 737 738 739 740
    }

    /*! used in member documentation blocks to produce a list of
     *  all member that overwrite the implementation of this member.
     */
741
    virtual QCString trReimplementedInList(int numEntries)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
742
    {
743
      return trWriteList(numEntries)+"에서 재구현되었습니다.";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
744 745 746
    }

    /*! This is put above each page as a link to all members of namespaces. */
747
    virtual QCString trNamespaceMembers()
748
    { return "네임스페이스 멤버"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
749 750

    /*! This is an introduction to the page with all namespace members */
751
    virtual QCString trNamespaceMemberDescription(bool extractAll)
752 753
    { 
      QCString result="다음은 ";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
754
      if (!extractAll) result+="문서화된 ";
755 756 757 758 759
      result+="모든 네임스페이스 멤버들의 목록입니다. ";
      if (extractAll) 
        result+="각 멤버들은 해당 멤버의 네임스페이스 문서화 페이지의 링크를 가지고 있습니다. :";
      else 
        result+="각 멤버들은 해당 멤버가 속한 네임스페이스 페이지의 링크를 가지고 있습니다. :";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
760 761
      return result;
    }
762
    /*! This is used in LaTeX as the title of the chapter with the 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
763 764
     *  index of all namespaces.
     */
765
    virtual QCString trNamespaceIndex()
766
    { return "네임스페이스 색인"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
767 768 769 770

    /*! This is used in LaTeX as the title of the chapter containing
     *  the documentation of all namespaces.
     */
771
    virtual QCString trNamespaceDocumentation()
772
    { return "네임스페이스 문서화"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
773 774 775 776 777 778 779 780

//////////////////////////////////////////////////////////////////////////
// new since 0.49-990522
//////////////////////////////////////////////////////////////////////////

    /*! This is used in the documentation before the list of all
     *  namespaces in a file.
     */
781
    virtual QCString trNamespaces()
782
    { return "네임스페이스"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
783 784 785 786 787 788 789 790

//////////////////////////////////////////////////////////////////////////
// new since 0.49-990728
//////////////////////////////////////////////////////////////////////////

    /*! This is put at the bottom of a class documentation page and is
     *  followed by a list of files that were used to generate the page.
     */
791
    virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType,
Dimitri van Heesch's avatar
Dimitri van Heesch committed
792 793 794 795 796 797 798 799 800 801
        bool single)
    { // here s is one of " Class", " Struct" or " Union"
      // single is true implies a single file
      QCString result=(QCString)"이 ";
      switch(compType)
      {
        case ClassDef::Class:      result+="클래스"; break;
        case ClassDef::Struct:     result+="구조체"; break;
        case ClassDef::Union:      result+="공용체"; break;
        case ClassDef::Interface:  result+="인터페이스"; break;
802 803
        case ClassDef::Protocol:   result+="프로토콜"; break;
        case ClassDef::Category:   result+="카테고리"; break;
Dimitri van Heesch's avatar
Dimitri van Heesch committed
804 805
        case ClassDef::Exception:  result+="예외"; break;
      }
806
      result+="에 대한 문서화 페이지는 다음의 파일";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
807
      if (!single) result+="들";
808
      result+="로부터 생성되었습니다.:";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
809 810 811 812 813 814
      return result;
    }

    /*! This is in the (quick) index as a link to the alphabetical compound
     * list.
     */
815
    virtual QCString trAlphabeticalList()
816
    { return "알파벳순 목록"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
817 818 819 820 821 822

//////////////////////////////////////////////////////////////////////////
// new since 0.49-990901
//////////////////////////////////////////////////////////////////////////

    /*! This is used as the heading text for the retval command. */
823
    virtual QCString trReturnValues()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
824 825 826 827
    { return "반환값"; }

    /*! This is in the (quick) index as a link to the main page (index.html)
     */
828
    virtual QCString trMainPage()
829
    { return "메인 페이지"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
830

831
    /*! This is used in references to page that are put in the LaTeX 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
832 833
     *  documentation. It should be an abbreviation of the word page.
     */
834
    virtual QCString trPageAbbreviation()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
835 836 837 838 839 840
    { return "페이지"; }

//////////////////////////////////////////////////////////////////////////
// new since 0.49-991003
//////////////////////////////////////////////////////////////////////////

841
    virtual QCString trDefinedAtLineInSourceFile()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
842
    {
843
      return "@1 파일의 @0 번째 라인에서 정의되었습니다.";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
844
    }
845
    virtual QCString trDefinedInSourceFile()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
846
    {
847
      return "@0 파일에서 정의되었습니다.";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
848 849 850
    }

//////////////////////////////////////////////////////////////////////////
Dimitri van Heesch's avatar
Dimitri van Heesch committed
851
// new since 0.49-991205
Dimitri van Heesch's avatar
Dimitri van Heesch committed
852 853
//////////////////////////////////////////////////////////////////////////

854
    virtual QCString trDeprecated()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
855
    {
856
      return "잘못된 코드";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
857 858 859
    }

//////////////////////////////////////////////////////////////////////////
Dimitri van Heesch's avatar
Dimitri van Heesch committed
860
// new since 1.0.0
Dimitri van Heesch's avatar
Dimitri van Heesch committed
861 862 863
//////////////////////////////////////////////////////////////////////////

    /*! this text is put before a collaboration diagram */
864
    virtual QCString trCollaborationDiagram(const char *clName)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
865
    {
866
      return (QCString)clName+"에 대한 협력 다이어그램:";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
867 868
    }
    /*! this text is put before an include dependency graph */
869
    virtual QCString trInclDepGraph(const char *fName)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
870 871 872 873
    {
      return (QCString)fName+"에 대한 include 의존 그래프";
    }
    /*! header that is put before the list of constructor/destructors. */
874
    virtual QCString trConstructorDocumentation()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
875
    {
876
      return "생성자 & 소멸자 문서화";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
877 878
    }
    /*! Used in the file documentation to point to the corresponding sources. */
879
    virtual QCString trGotoSourceCode()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
880
    {
881
      return "이 파일의 소스 코드 페이지로 가기";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
882 883
    }
    /*! Used in the file sources to point to the corresponding documentation. */
884
    virtual QCString trGotoDocumentation()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
885
    {
886
      return "이 파일의 문서화 페이지로 가기";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
887
    }
888
    /*! Text for the \\pre command */
889
    virtual QCString trPrecondition()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
890
    {
891
      return "전제조건";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
892
    }
893
    /*! Text for the \\post command */
894
    virtual QCString trPostcondition()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
895
    {
896
      return "후미조건";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
897
    }
898
    /*! Text for the \\invariant command */
899
    virtual QCString trInvariant()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
900 901 902 903
    {
      return "변하지 않는";
    }
    /*! Text shown before a multi-line variable/enum initialization */
904
    virtual QCString trInitialValue()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
905
    {
906
      return "초기값:";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
907 908
    }
    /*! Text used the source code in the file index */
909
    virtual QCString trCode()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
910 911 912
    {
      return "코드";
    }
913
    virtual QCString trGraphicalHierarchy()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
914
    {
915
      return "그래픽컬한 클래스 계통도";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
916
    }
917
    virtual QCString trGotoGraphicalHierarchy()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
918
    {
919
      return "그래픽컬한 클래스 계통도 페이지로 가기";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
920
    }
921
    virtual QCString trGotoTextualHierarchy()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
922
    {
923
      return "텍스트 형식의 클래스 계통도 페이지로 가기";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
924
    }
925
    virtual QCString trPageIndex()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
926 927 928
    {
      return "페이지 색인";
    }
929 930 931 932

//////////////////////////////////////////////////////////////////////////
// new since 1.1.0
//////////////////////////////////////////////////////////////////////////
933
    
934 935
    virtual QCString trNote()
    {
936
      return "주의";
937 938 939
    }
    virtual QCString trPublicTypes()
    {
940
      return "Public 타입";
941 942 943 944 945
    }
    virtual QCString trPublicAttribs()
    {
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
946
        return "데이타 필드";
947 948 949
      }
      else
      {
950
        return "Public 속성";
951 952 953 954
      }
    }
    virtual QCString trStaticPublicAttribs()
    {
955
      return "정적 Public 속성";
956 957 958
    }
    virtual QCString trProtectedTypes()
    {
959
      return "Protected 타입";
960 961 962
    }
    virtual QCString trProtectedAttribs()
    {
963
      return "Protected 속성";
964 965 966
    }
    virtual QCString trStaticProtectedAttribs()
    {
967
      return "정적 Protected 속성";
968 969 970
    }
    virtual QCString trPrivateTypes()
    {
971
      return "Private 타입";
972 973 974
    }
    virtual QCString trPrivateAttribs()
    {
975
      return "Private 속성";
976 977 978
    }
    virtual QCString trStaticPrivateAttribs()
    {
979
      return "정적 Private 속성";
980 981 982 983 984 985 986 987 988
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.1.3
//////////////////////////////////////////////////////////////////////////

    /*! Used as a marker that is put before a \\todo item */
    virtual QCString trTodo()
    {
989
      return "할일";
990 991 992 993
    }
    /*! Used as the header of the todo list */
    virtual QCString trTodoList()
    {
994
      return "할일 목록";
995 996 997 998 999 1000 1001 1002
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.1.4
//////////////////////////////////////////////////////////////////////////

    virtual QCString trReferencedBy()
    {
1003
      return "다음에 의해서 참조됨 : ";
1004 1005 1006
    }
    virtual QCString trRemarks()
    {
1007
      return "Remarks";
1008 1009 1010
    }
    virtual QCString trAttention()
    {
1011
        return "주의";
1012 1013 1014
    }
    virtual QCString trInclByDepGraph()
    {
1015
      return "이 그래프는 이 파일을 직/간접적으로 include 하는 파일들을 보여줍니다.:";
1016 1017 1018
    }
    virtual QCString trSince()
    {
1019
      return "Since";
1020
    }
1021
    
1022 1023 1024 1025 1026 1027 1028
//////////////////////////////////////////////////////////////////////////
// new since 1.1.5
//////////////////////////////////////////////////////////////////////////

    /*! title of the graph legend page */
    virtual QCString trLegendTitle()
    {
1029
      return "그래프 범례";
1030
    }
1031
    /*! page explaining how the dot graph's should be interpreted 
1032 1033 1034 1035
     *  The %A in the text below are to prevent link to classes called "A".
     */
    virtual QCString trLegendDocs()
    {
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
      return 
        "이 페이지는 doxygen에 의해 생성된 그래프들을 이해하는 방법을 설명합니다.<p>\n"
        "다음의 예제를 참고하십시오.:\n"
        "\\code\n"
        "/*! 생략되었기 때문에 보이지 않는 클래스 */\n"
        "class Invisible { };\n\n"
        "/*! Truncated 클래스, 상속관계가 숨겨짐 */\n"
        "class Truncated : public Invisible { };\n\n"
        "/* doxygen 주석에 의해서 문서화되지 않는 클래스 */\n"
        "class Undocumented { };\n\n"
        "/*! public 상속을 통해서 상속된 클래스 */\n"
        "class PublicBase : public Truncated { };\n\n"
        "/*! 템플릿 클래스 */\n"
        "template<class T> class Templ { };\n\n"
        "/*! protected 상속을 통해서 상속된 클래스 */\n"
        "class ProtectedBase { };\n\n"
        "/*! private 상속을 통해서 상속된 클래스 */\n"
        "class PrivateBase { };\n\n"
        "/*! 상속되어진 클래스에 의해 (멤버로) 사용되어지는 클래스 */\n"
        "class Used { };\n\n"
        "/*! 다른 클래스들을 상속하는 슈퍼 클래스 */\n"
        "class Inherited : public PublicBase,\n"
        "                  protected ProtectedBase,\n"
        "                  private PrivateBase,\n"
        "                  public Undocumented,\n"
        "                  public Templ<int>\n"
        "{\n"
        "  private:\n"
        "    Used *m_usedClass;\n"
        "};\n"
        "\\endcode\n"
1067
        "다음과 같은 그래프가 출력될 것입니다. :"
1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
        "<p><center><img alt=\"\" src=\"graph_legend."+Config_getEnum("DOT_IMAGE_FORMAT")+"\"></center>\n"
        "<p>\n"
        "위 그래프의 박스들은 다음과 같은 의미를 가집니다. :\n"
        "<ul>\n"
        "<li>%A 회색으로 채워진 박스는 이 그래프를 생성해 낸 구조체나 클래스를 의미합니다.\n"
        "<li>%A 검은색 테두리의 박스는 문서화된 구조체나 클래스를 의미합니다.\n"
        "<li>%A 회색 테두리의 박스는 문서화되지 않은 구조체나 클래스를 의미합니다.\n"
        "<li>%A 빨간색 테두리의 박스는 모든 상속이나 포함관계가 보여지지 않는 "
	"구조체나 클래스를 의미합니다."
        "%A 만약 그래프가 지정된 경계내에 맞지 않으면, 그래프가 잘려집니다.\n"
        "</ul>\n"
        "화살표들은 다음과 같은 의미를 가집니다. :\n"
        "<ul>\n"
        "<li>%A 어두운 파랑색 화살표는 두 클래스들 간에 public 상속이 있음을 의미합니다.\n"
        "<li>%A 어두운 연두색 화살표는 protected 상속이 있음을 의미합니다.\n"
        "<li>%A 어두운 빨간색 화살표는 private 상속이 있음을 의미합니다.\n"
        "<li>%A 보라색 점선 화살표는 다른 클래스에 의해 포함되거나 사용되어짐을 의미합니다. "
	"화살표의 라벨은 화살표가 가리키는 클래스나 구조체로 접근하는 변수명(들)으로 붙습니다.\n"
        "<li>%A 노란색 점선 화살표는 템플릿 인스턴스와 템프릿 클래스에 대한 관계를 의미합니다. "
	"화살표의 라벨은 인스턴스의 템플릿 파라메터로 붙습니다.\n"
        "</ul>\n";
1089 1090 1091
    }
    /*! text for the link to the legend page */
    virtual QCString trLegend()
1092 1093
    {
      return "범례";
1094
    }
1095
    
1096 1097 1098
//////////////////////////////////////////////////////////////////////////
// new since 1.2.0
//////////////////////////////////////////////////////////////////////////
1099
    
1100 1101 1102
    /*! Used as a marker that is put before a test item */
    virtual QCString trTest()
    {
1103
      return "테스트";
1104 1105 1106 1107
    }
    /*! Used as the header of the test list */
    virtual QCString trTestList()
    {
1108
      return "테스트 목록";
1109 1110 1111 1112 1113 1114 1115 1116 1117
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.1
//////////////////////////////////////////////////////////////////////////

    /*! Used as a section header for KDE-2 IDL methods */
    virtual QCString trDCOPMethods()
    {
1118
      return "DCOP 멤버 함수";
1119 1120 1121 1122 1123 1124 1125 1126 1127
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.2
//////////////////////////////////////////////////////////////////////////

    /*! Used as a section header for IDL properties */
    virtual QCString trProperties()
    {
1128
      return "속성";
1129 1130 1131 1132
    }
    /*! Used as a section header for IDL property documentation */
    virtual QCString trPropertyDocumentation()
    {
1133
      return "속성 문서화";
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.4
//////////////////////////////////////////////////////////////////////////

    /*! Used for Java classes in the summary section of Java packages */
    virtual QCString trClasses()
    {
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
1145
        return "데이타 구조";
1146 1147 1148
      }
      else
      {
1149
        return "클래스";
1150 1151 1152 1153 1154
      }
    }
    /*! Used as the title of a Java package */
    virtual QCString trPackage(const char *name)
    {
1155
      return name+(QCString)" 패키지";
1156 1157 1158 1159
    }
    /*! Title of the package index page */
    virtual QCString trPackageList()
    {
1160
      return "패키지 목록";
1161 1162 1163 1164
    }
    /*! The description of the package index page */
    virtual QCString trPackageListDescription()
    {
1165
      return "다음은 패키지들입니다. (가능한한 간략한 설명만을 보여줍니다) :";
1166 1167 1168 1169
    }
    /*! The link name in the Quick links header for each page */
    virtual QCString trPackages()
    {
1170
      return "패키지";
1171 1172 1173 1174
    }
    /*! Text shown before a multi-line define */
    virtual QCString trDefineValue()
    {
1175
      return "값:";
1176
    }
1177
    
1178 1179 1180
//////////////////////////////////////////////////////////////////////////
// new since 1.2.5
//////////////////////////////////////////////////////////////////////////
1181
    
1182 1183 1184
    /*! Used as a marker that is put before a \\bug item */
    virtual QCString trBug()
    {
1185
      return "버그";
1186 1187 1188 1189
    }
    /*! Used as the header of the bug list */
    virtual QCString trBugList()
    {
1190
      return "버그 목록";
1191 1192 1193 1194 1195 1196
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.6
//////////////////////////////////////////////////////////////////////////

1197 1198 1199
    /*! Used as ansicpg for RTF file 
     * 
     * The following table shows the correlation of Charset name, Charset Value and 
1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
     * <pre>
     * Codepage number:
     * Charset Name       Charset Value(hex)  Codepage number
     * ------------------------------------------------------
     * DEFAULT_CHARSET           1 (x01)
     * SYMBOL_CHARSET            2 (x02)
     * OEM_CHARSET             255 (xFF)
     * ANSI_CHARSET              0 (x00)            1252
     * RUSSIAN_CHARSET         204 (xCC)            1251
     * EE_CHARSET              238 (xEE)            1250
     * GREEK_CHARSET           161 (xA1)            1253
     * TURKISH_CHARSET         162 (xA2)            1254
     * BALTIC_CHARSET          186 (xBA)            1257
     * HEBREW_CHARSET          177 (xB1)            1255
     * ARABIC _CHARSET         178 (xB2)            1256
     * SHIFTJIS_CHARSET        128 (x80)             932
     * HANGEUL_CHARSET         129 (x81)             949
     * GB2313_CHARSET          134 (x86)             936
     * CHINESEBIG5_CHARSET     136 (x88)             950
     * </pre>
1220
     * 
1221 1222 1223
     */
    virtual QCString trRTFansicp()
    {
1224
      return "949";
1225
    }
1226
    
1227

1228
    /*! Used as ansicpg for RTF fcharset 
1229 1230 1231 1232
     *  \see trRTFansicp() for a table of possible values.
     */
    virtual QCString trRTFCharSet()
    {
1233
      return "129";
1234 1235 1236 1237 1238
    }

    /*! Used as header RTF general index */
    virtual QCString trRTFGeneralIndex()
    {
1239
      return "색인";
1240
    }
1241
   
1242
    /*! This is used for translation of the word that will possibly
1243
     *  be followed by a single name or by a list of names 
1244 1245
     *  of the category.
     */
1246 1247 1248
    virtual QCString trClass(bool first_capital, bool singular)
    { 
      QCString result((first_capital ? "클래스" : "클래스"));
1249
      if (!singular)  result+="들";
1250
      return result; 
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 1256
     *  of the category.
     */
1257 1258 1259
    virtual QCString trFile(bool first_capital, bool singular)
    { 
      QCString result((first_capital ? "파일" : "파일"));
1260
      if (!singular)  result+="들";
1261
      return result; 
1262 1263 1264
    }

    /*! This is used for translation of the word that will possibly
1265
     *  be followed by a single name or by a list of names 
1266 1267 1268
     *  of the category.
     */
    virtual QCString trNamespace(bool first_capital, bool singular)
1269
    { 
1270 1271 1272
      QCString result((first_capital ? "네임스페이스" : "네임스페이스"));
      if (!singular)  result+="들";
      return result; 
1273 1274 1275
    }

    /*! This is used for translation of the word that will possibly
1276
     *  be followed by a single name or by a list of names 
1277 1278
     *  of the category.
     */
1279 1280 1281
    virtual QCString trGroup(bool first_capital, bool singular)
    { 
      QCString result((first_capital ? "그룹" : "그룹"));
1282
      if (!singular)  result+="들";
1283
      return result; 
1284 1285 1286
    }

    /*! This is used for translation of the word that will possibly
1287
     *  be followed by a single name or by a list of names 
1288 1289
     *  of the category.
     */
1290 1291 1292
    virtual QCString trPage(bool first_capital, bool singular)
    { 
      QCString result((first_capital ? "페이지" : "페이지"));
1293
      if (!singular)  result+="들";
1294
      return result; 
1295 1296 1297
    }

    /*! This is used for translation of the word that will possibly
1298
     *  be followed by a single name or by a list of names 
1299 1300 1301
     *  of the category.
     */
    virtual QCString trMember(bool first_capital, bool singular)
1302
    { 
1303 1304
      QCString result((first_capital ? "멤버" : "멤버"));
      if (!singular)  result+="들";
1305
      return result; 
1306
    }
1307
   
1308
    /*! This is used for translation of the word that will possibly
1309
     *  be followed by a single name or by a list of names 
1310 1311 1312
     *  of the category.
     */
    virtual QCString trGlobal(bool first_capital, bool singular)
1313
    { 
1314 1315 1316
      QCString result((first_capital ? "전역" : "전역"));
      if (!singular)  result+="";
      return result; 
1317 1318 1319 1320 1321 1322 1323 1324
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.7
//////////////////////////////////////////////////////////////////////////

    /*! This text is generated when the \\author command is used and
     *  for the author section in man pages. */
1325 1326 1327
    virtual QCString trAuthor(bool first_capital, bool singular)
    {                                                                         
      QCString result((first_capital ? "작성자" : "작성자"));
1328
      if (!singular)  result+="들";
1329
      return result; 
1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.11
//////////////////////////////////////////////////////////////////////////

    /*! This text is put before the list of members referenced by a member
     */
    virtual QCString trReferences()
    {
1340
      return "다음을 참조함 : ";
1341 1342 1343 1344 1345 1346
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.13
//////////////////////////////////////////////////////////////////////////

1347
    /*! used in member documentation blocks to produce a list of 
1348 1349 1350 1351
     *  members that are implemented by this one.
     */
    virtual QCString trImplementedFromList(int numEntries)
    {
1352
      return trWriteList(numEntries)+"를 구현.";
1353 1354 1355 1356 1357 1358 1359
    }

    /*! used in member documentation blocks to produce a list of
     *  all members that implement this abstract member.
     */
    virtual QCString trImplementedInList(int numEntries)
    {
1360
      return trWriteList(numEntries)+"에서 구현되었습니다.";
1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.16
//////////////////////////////////////////////////////////////////////////

    /*! used in RTF documentation as a heading for the Table
     *  of Contents.
     */
    virtual QCString trRTFTableOfContents()
    {
      return "목차";
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.17
//////////////////////////////////////////////////////////////////////////

1379 1380
    /*! Used as the header of the list of item that have been 
     *  flagged deprecated 
1381 1382 1383
     */
    virtual QCString trDeprecatedList()
    {
1384
      return "잘못된 코드 목록";
1385 1386 1387 1388 1389 1390
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.18
//////////////////////////////////////////////////////////////////////////

1391
    /*! Used as a header for declaration section of the events found in 
1392 1393 1394 1395 1396 1397 1398 1399 1400 1401
     * a C# program
     */
    virtual QCString trEvents()
    {
      return "이벤트";
    }
    /*! Header used for the documentation section of a class' events. */
    virtual QCString trEventDocumentation()
    {
      return "이벤트 문서화";
1402 1403
    }

1404 1405 1406 1407 1408
//////////////////////////////////////////////////////////////////////////
// new since 1.3
//////////////////////////////////////////////////////////////////////////

    /*! Used as a heading for a list of Java class types with package scope.
1409
     */
1410
    virtual QCString trPackageTypes()
1411 1412
    { 
      return "패키지 타입";
1413
    }
1414 1415 1416
    /*! Used as a heading for a list of Java class functions with package 
     * scope. 
     */
1417
    virtual QCString trPackageMembers()
1418 1419
    { 
      return "패키지 함수";
1420
    }
1421 1422 1423
    /*! Used as a heading for a list of static Java class functions with 
     *  package scope.
     */
1424
    virtual QCString trStaticPackageMembers()
1425 1426
    { 
      return "정적 패키지 함수";
1427
    }
1428 1429 1430
    /*! Used as a heading for a list of Java class variables with package 
     * scope.
     */
1431
    virtual QCString trPackageAttribs()
1432 1433
    { 
      return "패키지 속성";
1434
    }
1435 1436 1437
    /*! Used as a heading for a list of static Java class variables with 
     * package scope.
     */
1438
    virtual QCString trStaticPackageAttribs()
1439 1440
    { 
      return "정적 패키지 속성";
1441
    }
1442
    
1443 1444 1445 1446
//////////////////////////////////////////////////////////////////////////
// new since 1.3.1
//////////////////////////////////////////////////////////////////////////

1447 1448 1449
    /*! Used in the quick index of a class/file/namespace member list page 
     *  to link to the unfiltered list of all members.
     */
1450 1451
    virtual QCString trAll()
    {
1452
      return "모두";
1453 1454 1455 1456
    }
    /*! Put in front of the call graph for a function. */
    virtual QCString trCallGraph()
    {
1457
      return "이 함수 내부에서 호출하는 함수들에 대한 그래프입니다.:";
1458
    }
1459

1460 1461 1462
//////////////////////////////////////////////////////////////////////////
// new since 1.3.3
//////////////////////////////////////////////////////////////////////////
1463

1464 1465 1466 1467
    /*! When the search engine is enabled this text is put in the header 
     *  of each page before the field where one can enter the text to search 
     *  for. 
     */
1468 1469
    virtual QCString trSearchForIndex()
    {
1470
      return "검색";
1471 1472
    }
    /*! This string is used as the title for the page listing the search
1473 1474
     *  results.
     */
1475 1476
    virtual QCString trSearchResultsTitle()
    {
1477
      return "검색 결과";
1478 1479
    }
    /*! This string is put just before listing the search results. The
1480 1481 1482 1483 1484 1485 1486
     *  text can be different depending on the number of documents found.
     *  Inside the text you can put the special marker $num to insert
     *  the number representing the actual number of search results.
     *  The @a numDocuments parameter can be either 0, 1 or 2, where the 
     *  value 2 represents 2 or more matches. HTML markup is allowed inside
     *  the returned string.
     */
1487 1488
    virtual QCString trSearchResults(int numDocuments)
    {
1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501
      if (numDocuments==0)
      {
        return "죄송합니다. 질의에 일치하는 문서가 없습니다.";
      }
      else if (numDocuments==1)
      {
        return "질의에 일치하는 <b>1</b> 개의 문서를 찾았습니다.";
      }
      else 
      {
        return "질의에 일치하는 <b>$num</b> 개의 문서를 찾았습니다. "
               "가장 많이 일치하는 문서를 가장 먼저 보여줍니다.";
      }
1502
    }
1503 1504 1505
    /*! This string is put before the list of matched words, for each search 
     *  result. What follows is the list of words that matched the query.
     */
1506 1507
    virtual QCString trSearchMatches()
    {
1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529
      return "결과:";
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.3.8
//////////////////////////////////////////////////////////////////////////

    /*! This is used in HTML as the title of page with source code for file filename
     */
    virtual QCString trSourceFile(QCString& filename)
    {
      return filename + " 소스 파일";
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.3.9
//////////////////////////////////////////////////////////////////////////

    /*! This is used as the name of the chapter containing the directory
     *  hierarchy.
     */
    virtual QCString trDirIndex()
1530
    { return "디렉토리 계통도"; }
1531 1532 1533 1534 1535

    /*! This is used as the name of the chapter containing the documentation
     *  of the directories.
     */
    virtual QCString trDirDocumentation()
1536
    { return "디렉토리 문서화"; }
1537 1538

    /*! This is used as the title of the directory index and also in the
1539
     *  Quick links of an HTML page, to link to the directory hierarchy.
1540 1541 1542 1543 1544 1545 1546 1547
     */
    virtual QCString trDirectories()
    { return "디렉토리"; }

    /*! This returns a sentences that introduces the directory hierarchy. 
     *  and the fact that it is sorted alphabetically per level
     */
    virtual QCString trDirDescription()
1548
    { return "이 디렉토리 목록은 완전하진 않지만, (대략적으로) 알파벳순으로 정렬되어있습니다.:";
1549
    }
1550 1551 1552 1553 1554 1555 1556 1557 1558 1559

    /*! This returns the title of a directory page. The name of the
     *  directory is passed via \a dirName.
     */
    virtual QCString trDirReference(const char *dirName)
    { QCString result=dirName; result+=" 디렉토리 참조"; return result; }

    /*! This returns the word directory with or without starting capital
     *  (\a first_capital) and in sigular or plural form (\a singular).
     */
1560
    virtual QCString trDir(bool first_capital, bool singular)
1561
    { 
1562 1563 1564
      QCString result((first_capital ? "디렉토리" : "디렉토리"));
      if (singular) result+=""; else result+="들";
      return result; 
1565 1566
    }

1567 1568 1569 1570 1571 1572 1573 1574 1575
//////////////////////////////////////////////////////////////////////////
// new since 1.4.1
//////////////////////////////////////////////////////////////////////////

    /*! This text is added to the documentation when the \\overload command
     *  is used for a overloaded function.
     */
    virtual QCString trOverloadText()
    {
1576
       return "이 함수는 편의를 제공하기 위해 오버로드된 멤버 함수입니다. "
1577 1578 1579 1580 1581 1582
              "위의 함수와 틀린 점은 단지 받아들이는 아규먼트(argument)가 다르다는 것입니다.";
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.4.6
//////////////////////////////////////////////////////////////////////////
1583

1584 1585 1586 1587
    /*! This is used to introduce a caller (or called-by) graph */
    virtual QCString trCallerGraph()
    {
      return "이 함수를 호출하는 함수들에 대한 그래프입니다.:";
1588 1589
    }

1590 1591 1592 1593 1594 1595
    /*! This is used in the documentation of a file/namespace before the list 
     *  of documentation blocks for enumeration values
     */
    virtual QCString trEnumerationValueDocumentation()
    { return "열거형 문서화"; }

1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618
//////////////////////////////////////////////////////////////////////////
// new since 1.5.4 (mainly for Fortran)
//////////////////////////////////////////////////////////////////////////
    
    /*! header that is put before the list of member subprograms (Fortran). */
    virtual QCString trMemberFunctionDocumentationFortran()
    { return "멤버 함수/서브루틴 문서화"; }

    /*! This is put above each page as a link to the list of annotated data types (Fortran). */    
    virtual QCString trCompoundListFortran()
    { return "데이타 타입 목록"; }

    /*! This is put above each page as a link to all members of compounds (Fortran). */
    virtual QCString trCompoundMembersFortran()
    { return "데이타 필드"; }

    /*! This is an introduction to the annotated compound list (Fortran). */
    virtual QCString trCompoundListDescriptionFortran()
    { return "대략적인 설명과 함께 데이타 타입들의 목록입니다.:"; }

    /*! This is an introduction to the page with all data types (Fortran). */
    virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
    {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1619
      QCString result="다음은 ";
1620 1621
      if (!extractAll)
      {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1622
        result+="문서화된 ";
1623
      }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1624 1625 1626
      result+="모든 데이타 타입 멤버들의 목록입니다. ";

      result+="각 항목은 ";
1627 1628
      if (!extractAll) 
      {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1629
         result+="각 멤버에 대한 데이타 구조 문서화 페이지의 링크를 가지고 있습니다.";
1630 1631 1632
      }
      else 
      {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1633
         result+="그들이 속한 데이타 타입의 링크를 가지고 있습니다. :";
1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790
      }
      return result;
    }

    /*! This is used in LaTeX as the title of the chapter with the 
     * annotated compound index (Fortran).
     */
    virtual QCString trCompoundIndexFortran()
    { return "데이타 타입 색인"; }

    /*! This is used in LaTeX as the title of the chapter containing
     *  the documentation of all data types (Fortran).
     */
    virtual QCString trTypeDocumentation()
    { return "데이타 타입 문서화"; }

    /*! This is used in the documentation of a file as a header before the 
     *  list of (global) subprograms (Fortran).
     */
    virtual QCString trSubprograms()
    { return "함수/서브루틴"; }

    /*! This is used in the documentation of a file/namespace before the list 
     *  of documentation blocks for subprograms (Fortran)
     */
    virtual QCString trSubprogramDocumentation()
    { return "함수/서브루틴 문서화"; }

    /*! This is used in the documentation of a file/namespace/group before 
     *  the list of links to documented compounds (Fortran)
     */
     virtual QCString trDataTypes()
    { return "데이타 타입들"; }
    
    /*! used as the title of page containing all the index of all modules (Fortran). */
    virtual QCString trModulesList()
    { return "모듈 목록"; }

    /*! used as an introduction to the modules list (Fortran) */
    virtual QCString trModulesListDescription(bool extractAll)
    {
      QCString result="다음은 ";
      if (!extractAll) result+="문서화된 ";
      result+="모든 모듈에 대한 목록입니다. (간략한 설명만을 보여줍니다) :";
      return result;
    }

    /*! used as the title of the HTML page of a module/type (Fortran) */
    virtual QCString trCompoundReferenceFortran(const char *clName,
                                    ClassDef::CompoundType compType,
                                    bool isTemplate)
    {
      QCString result=(QCString)clName;
      switch(compType)
      {
        case ClassDef::Class:      result+=" 모듈"; break;
        case ClassDef::Struct:     result+=" 타입"; break;
        case ClassDef::Union:      result+=" 공용체"; break;
        case ClassDef::Interface:  result+=" 인터페이스"; break;
        case ClassDef::Protocol:   result+=" 프로토콜"; break;
        case ClassDef::Category:   result+=" 카테고리"; break;
        case ClassDef::Exception:  result+=" 예외"; break;
      }
      if (isTemplate) result+=" 템플릿";
      result+=" 참조";
      return result;
    }
    /*! used as the title of the HTML page of a module (Fortran) */
    virtual QCString trModuleReference(const char *namespaceName)
    {
      QCString result=namespaceName;
      result+=" 모듈 참조";        
      return result;
    }
    
    /*! This is put above each page as a link to all members of modules. (Fortran) */
    virtual QCString trModulesMembers()
    { return "모듈 멤버들"; }

    /*! This is an introduction to the page with all modules members (Fortran) */
    virtual QCString trModulesMemberDescription(bool extractAll)
    { 
      QCString result="다음은 ";
      if (!extractAll) result+="문서화된 ";
      result+="모든 모듈 멤버의 목록입니다. ";
      if (extractAll) 
      {
        result+="각 항목은 각 멤버의 모듈 문서화 페이지의 링크를 가지고 있습니다. :";
      }
      else 
      {
        result+="각 항목은 그들이 속한 모듈의 링크를 가지고 있습니다. :";
      }
      return result;
    }

    /*! This is used in LaTeX as the title of the chapter with the 
     *  index of all modules (Fortran).
     */
    virtual QCString trModulesIndex()
    { return "모듈 색인"; }
    
    /*! This is used for translation of the word that will possibly
     *  be followed by a single name or by a list of names 
     *  of the category.
     */
    virtual QCString trModule(bool first_capital, bool singular)
    {       
      QCString result((first_capital ? "모듈" : "모듈"));
      if (!singular)  result+="들";
      return result; 
    }
    /*! This is put at the bottom of a module documentation page and is
     *  followed by a list of files that were used to generate the page.
     */
    virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType,
        bool single)
    { // here s is one of " Module", " Struct" or " Union"
      // single is true implies a single file
      QCString result=(QCString)"다음 파일";
      if (single) result+=""; else result+="들";
      result+="로부터 생성된 ";
      result+="이 ";
      switch(compType)
      {
        case ClassDef::Class:      result+="모듈"; break;
        case ClassDef::Struct:     result+="타입"; break;
        case ClassDef::Union:      result+="공용체"; break;
        case ClassDef::Interface:  result+="인터페이스"; break;
        case ClassDef::Protocol:   result+="프로토콜"; break;
        case ClassDef::Category:   result+="카테고리"; break;
        case ClassDef::Exception:  result+="예외"; break;
      }
      result+="의 문서화 페이지:";
      return result;
    }
    /*! This is used for translation of the word that will possibly
     *  be followed by a single name or by a list of names 
     *  of the category.
     */
    virtual QCString trType(bool first_capital, bool singular)
    { 
      QCString result((first_capital ? "타입" : "타입"));
      if (!singular)  result+="들";
      return result; 
    }
    /*! This is used for translation of the word that will possibly
     *  be followed by a single name or by a list of names 
     *  of the category.
     */
    virtual QCString trSubprogram(bool first_capital, bool singular)
    { 
      QCString result((first_capital ? "서브프로그램" : "서브프로그램"));
      if (!singular)  result+="들";
      return result; 
    }

1791
    /*! C# Type Constraint list */
1792 1793 1794 1795
    virtual QCString trTypeConstraints()
    {
      return "타입 한정자들";
    }
1796

Dimitri van Heesch's avatar
Dimitri van Heesch committed
1797 1798 1799
};

#endif