This repository was archived by the owner on Oct 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 807
Expand file tree
/
Copy pathStringResources.kr.resx
More file actions
6260 lines (6242 loc) · 299 KB
/
StringResources.kr.resx
File metadata and controls
6260 lines (6242 loc) · 299 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="_Internal.Bogus.Translation.Test1" xml:space="preserve">
<value>ちょっとくらいのわがままは、大目に見てね。</value>
</data>
<data name="AddInManager.About" xml:space="preserve">
<value>정보</value>
</data>
<data name="AddInManager.ActionCancelDeinstallation" xml:space="preserve">
<value>제거한 것 무르기</value>
</data>
<data name="AddInManager.ActionCancelInstallation" xml:space="preserve">
<value>설치한 것 무르기</value>
</data>
<data name="AddInManager.ActionCancelUpdate" xml:space="preserve">
<value>업데이트 무르기</value>
</data>
<data name="AddInManager.ActionDisable" xml:space="preserve">
<value>비활성화</value>
</data>
<data name="AddInManager.ActionEnable" xml:space="preserve">
<value>활성화</value>
</data>
<data name="AddInManager.ActionInstall" xml:space="preserve">
<value>설치</value>
</data>
<data name="AddInManager.ActionUninstall" xml:space="preserve">
<value>제거</value>
</data>
<data name="AddInManager.ActionUpdate" xml:space="preserve">
<value>업데이트</value>
</data>
<data name="AddInManager.AddInDependencyFailed" xml:space="preserve">
<value>이 추가 기능에 필요한 파일이 없습니다. 이 추가기능을 사용하려면 이것을 설치하십시오.</value>
</data>
<data name="AddInManager.AddInDisabled" xml:space="preserve">
<value>비활성화됨</value>
</data>
<data name="AddInManager.AddInEnabled" xml:space="preserve">
<value>SharpDevelop을 다시 시작하면 추가 기능이 활성화됩니다.</value>
</data>
<data name="AddInManager.AddInInstalled" xml:space="preserve">
<value>SharpDevelop을 다시 시작하면 추가 기능이 설치됩니다.</value>
</data>
<data name="AddInManager.AddInInstalledTwice" xml:space="preserve">
<value>이 추가 기능은 두 번 설치되었습니다. 하나를 제거하십시오.</value>
</data>
<data name="AddInManager.AddInMustHaveIdentity" xml:space="preserve">
<value>추가 기능은 <Identity>를 가지고 있어야 추가 기능 관리자에서 사용할 수 있습니다.</value>
</data>
<data name="AddInManager.AddInRemoved" xml:space="preserve">
<value>추가 기능은 SharpDevelop을 다시 시작하고 나서 제거됩니다.</value>
</data>
<data name="AddInManager.AddInUpdated" xml:space="preserve">
<value>추가 기능은 SharpDevelop을 다시 시작하면 갱신됩니다.</value>
</data>
<data name="AddInManager.AddInWillBeDisabled" xml:space="preserve">
<value>추가 기능은 SharpDevelop을 다시 시작하고 나서 비활성화됩니다.</value>
</data>
<data name="AddInManager.CannotDisableAddInManager" xml:space="preserve">
<value>추가 기능을 다시 활성화할 때 필요하기 때문에 추가 기능 관리자를 비활성화할 수 없습니다!</value>
</data>
<data name="AddInManager.CannotInstallIntoApplicationDirectory" xml:space="preserve">
<value>${ProductName} 디렉터리 안에 추가 기능을 설치할 수 없습니다. 이 추가 기능들은 미리 설치된 추가 기능처럼 자동으로 선택될 것입니다.</value>
</data>
<data name="AddInManager.DescriptionCancelDeinstallation" xml:space="preserve">
<value>선택한 추가 기능을 제거하는 작업을 중단합니다.</value>
</data>
<data name="AddInManager.DescriptionCancelInstall" xml:space="preserve">
<value>선택한 추가 기능을 설치하는 작업을 중단합니다.</value>
</data>
<data name="AddInManager.DescriptionCancelUpdate" xml:space="preserve">
<value>선택한 추가 기능을 업데이트하는 작업을 중단합니다.</value>
</data>
<data name="AddInManager.DescriptionDisable" xml:space="preserve">
<value>선택한 추가 기능을 비활성화합니다.</value>
</data>
<data name="AddInManager.DescriptionEnable" xml:space="preserve">
<value>선택된 추가 기능을 활성화합니다.</value>
</data>
<data name="AddInManager.DescriptionInconsistentSelection" xml:space="preserve">
<value>선택 내용이 일관적이지 않습니다. 같은 상태를 가진 추가 기능만 선택하십시오.</value>
</data>
<data name="AddInManager.FileAssociation" xml:space="preserve">
<value>추가 기능 설치 패키지</value>
</data>
<data name="AddInManager.FileFilter" xml:space="preserve">
<value>SharpDevelop 추가 기능|*.addin;*.sdaddin|모든 파일|*.*</value>
</data>
<data name="AddInManager.InstallButton" xml:space="preserve">
<value>추가 기능 설치(&I)</value>
</data>
<data name="AddInManager.NoAddInsInstalled" xml:space="preserve">
<value>추가 기능이 하나도 설치되어 있지 않습니다.
인터넷에서 추가기능을 다운로드하고 나서, "추가기능 설치" 버튼을 누르고 다운로드한 파일을 선택해서 설치하십시오.</value>
</data>
<data name="AddInManager.OpenWebsite" xml:space="preserve">
<value>웹사이트 열기</value>
</data>
<data name="AddInManager.Options" xml:space="preserve">
<value>옵션</value>
</data>
<data name="AddInManager.RequiredBy" xml:space="preserve">
<value>이 추가 기능을 필요로 하는 것:</value>
</data>
<data name="AddInManager.RequiredDependencies" xml:space="preserve">
<value>필요한 의존 파일:</value>
</data>
<data name="AddInManager.ShowPreinstalledAddIns" xml:space="preserve">
<value>기본으로 설치된 추가 기능 보이기</value>
</data>
<data name="AddInManager.Title" xml:space="preserve">
<value>추가 기능 관리자</value>
</data>
<data name="AddInManager.UnknownFileFormat" xml:space="preserve">
<value>알 수 없는 파일 형식:</value>
</data>
<data name="AddIns.HexEditor.SizeToFit" xml:space="preserve">
<value>현재 너비로 맞추기</value>
</data>
<data name="AddIns.HtmlHelp2.Back" xml:space="preserve">
<value>뒤로</value>
</data>
<data name="AddIns.HtmlHelp2.Contents" xml:space="preserve">
<value>목차</value>
</data>
<data name="AddIns.HtmlHelp2.EnterURL" xml:space="preserve">
<value>URL 입력</value>
</data>
<data name="AddIns.HtmlHelp2.Forward" xml:space="preserve">
<value>앞으로</value>
</data>
<data name="AddIns.HtmlHelp2.Homepage" xml:space="preserve">
<value>홈페이지</value>
</data>
<data name="AddIns.HtmlHelp2.Location" xml:space="preserve">
<value>위치</value>
</data>
<data name="AddIns.HtmlHelp2.NewWindow" xml:space="preserve">
<value>새 창</value>
</data>
<data name="AddIns.HtmlHelp2.Search" xml:space="preserve">
<value>검색</value>
</data>
<data name="AddIns.HtmlHelp2.Stop" xml:space="preserve">
<value>정지</value>
</data>
<data name="AddIns.HtmlHelp2.Title" xml:space="preserve">
<value>제목</value>
</data>
<data name="AddIns.Profiler.Commands.FindCallsOfSelected.TabTitle" xml:space="preserve">
<value>결과</value>
</data>
<data name="AddIns.SearchReplace.SearchProgressTitle" xml:space="preserve">
<value>검색...</value>
</data>
<data name="AddIns.SharpRefactoring.ExtractMethod" xml:space="preserve">
<value>메서드 추출하기</value>
</data>
<data name="AddIns.SharpRefactoring.ExtractMethodNotSupported" xml:space="preserve">
<value>{0}에서 메서드를 추출하는 것은 현재 지원되지 않습니다!</value>
</data>
<data name="AddIns.Subversion.AddToIgnoreList" xml:space="preserve">
<value>무시 목록에 더하기</value>
</data>
<data name="AddIns.Subversion.Blame" xml:space="preserve">
<value>비난</value>
</data>
<data name="AddIns.Subversion.BranchOrTag" xml:space="preserve">
<value>비난/태그</value>
</data>
<data name="AddIns.Subversion.CheckForModifications" xml:space="preserve">
<value>바뀐 부분 검사</value>
</data>
<data name="AddIns.Subversion.Checkout" xml:space="preserve">
<value>체크아웃</value>
</data>
<data name="AddIns.Subversion.CleanUp" xml:space="preserve">
<value>정리</value>
</data>
<data name="AddIns.Subversion.Commit" xml:space="preserve">
<value>시행</value>
</data>
<data name="AddIns.Subversion.CreatePatch" xml:space="preserve">
<value>패치 만들기</value>
</data>
<data name="AddIns.Subversion.Diff" xml:space="preserve">
<value>차이</value>
</data>
<data name="AddIns.Subversion.EditConflicts" xml:space="preserve">
<value>충돌 내용 편집</value>
</data>
<data name="AddIns.Subversion.Export" xml:space="preserve">
<value>내보내기</value>
</data>
<data name="AddIns.Subversion.History" xml:space="preserve">
<value>이력</value>
</data>
<data name="AddIns.Subversion.MarkConflictsAsResolved" xml:space="preserve">
<value>충돌 부분을 해결된 것으로 표시</value>
</data>
<data name="AddIns.Subversion.Merge" xml:space="preserve">
<value>합치기</value>
</data>
<data name="AddIns.Subversion.Options.AutoAdd" xml:space="preserve">
<value>새 파일 자동으로 더하기(&A)</value>
</data>
<data name="AddIns.Subversion.Options.AutoDelete" xml:space="preserve">
<value>지워진 파일 자동 삭제(&D)</value>
</data>
<data name="AddIns.Subversion.Options.ReloadProjectAfterChanges" xml:space="preserve">
<value>프로젝트 파일에 변경이 있은 후 프로젝트 다시 로드(&R)</value>
</data>
<data name="AddIns.Subversion.Options.RenameInsideSubversion" xml:space="preserve">
<value>버전 관리 안의 파일 이름 바꾸기 (변경 기록 유지)(&R)</value>
</data>
<data name="AddIns.Subversion.Options.Title" xml:space="preserve">
<value>버전 관리 옵션</value>
</data>
<data name="AddIns.Subversion.Options.UseHistoryDisplayBinding" xml:space="preserve">
<value>버전 관리되는 파일에 대해 이력 탭 표시(&H)</value>
</data>
<data name="AddIns.Subversion.Relocate" xml:space="preserve">
<value>위치 변경</value>
</data>
<data name="AddIns.Subversion.RemoveFromIgnoreList" xml:space="preserve">
<value>무시 목록에서 제거</value>
</data>
<data name="AddIns.Subversion.RepositoryBrowser" xml:space="preserve">
<value>저장소 브라우저</value>
</data>
<data name="AddIns.Subversion.Revert" xml:space="preserve">
<value>되돌리기</value>
</data>
<data name="AddIns.Subversion.RevisionGraph" xml:space="preserve">
<value>개정 버전 그래프</value>
</data>
<data name="AddIns.Subversion.ShowLog" xml:space="preserve">
<value>기록 보이기</value>
</data>
<data name="AddIns.Subversion.Switch" xml:space="preserve">
<value>전환</value>
</data>
<data name="AddIns.Subversion.TortoiseSVNRequired" xml:space="preserve">
<value>이 작업을 하려면 TortoiseSVN이 설치되어 있어야 합니다.</value>
</data>
<data name="AddIns.Subversion.Update" xml:space="preserve">
<value>새로 고치기</value>
</data>
<data name="AddIns.Subversion.UpdateToRevision" xml:space="preserve">
<value>특정 개정 버전으로 새로 고치기</value>
</data>
<data name="BackendBindings.ExecutionManager.CantExecuteDLLError" xml:space="preserve">
<value>프로젝트가 dll로 설정되었으나 실행 명령을 지정하지 않았습니다. 프로젝트 옵션에서 실행 명령을 지정하실 수 있습니다.</value>
</data>
<data name="BackendBindings.ExecutionManager.NoSingleFileCompilation" xml:space="preserve">
<value>파일 하나를 컴파일하는 것은 지원되지 않습니다. 프로젝트를 만드십시오!</value>
</data>
<data name="CompilerResultView.DescriptionText" xml:space="preserve">
<value>설명</value>
</data>
<data name="CompilerResultView.FileText" xml:space="preserve">
<value>파일</value>
</data>
<data name="ComponentInspector.AboutDialog.Title" xml:space="preserve">
<value>정보</value>
</data>
<data name="ComponentInspector.AboutDialog.VersionLabel" xml:space="preserve">
<value>버전:</value>
</data>
<data name="ComponentInspector.ActionMenu.CastMenuItem" xml:space="preserve">
<value>형식 변환</value>
</data>
<data name="ComponentInspector.ActionMenu.CopyObjectMenuItem" xml:space="preserve">
<value>개체 복사(&C)</value>
</data>
<data name="ComponentInspector.ActionMenu.CopyTextMenuItem" xml:space="preserve">
<value>텍스트 복사(&E)</value>
</data>
<data name="ComponentInspector.ActionMenu.CopyValueTextMenuItem" xml:space="preserve">
<value>값 텍스트 복사(&V)</value>
</data>
<data name="ComponentInspector.ActionMenu.CutObjectMenuItem" xml:space="preserve">
<value>개체 잘라내기(&T)</value>
</data>
<data name="ComponentInspector.ActionMenu.EventLoggingMenuItem" xml:space="preserve">
<value>이벤트 기록 작성(&E)</value>
</data>
<data name="ComponentInspector.ActionMenu.OnDesignSurfaceMenuItem" xml:space="preserve">
<value>디자인 표면에</value>
</data>
<data name="ComponentInspector.ActionMenu.PasteObjectMenuItem" xml:space="preserve">
<value>개체 붙여넣기(&P)</value>
</data>
<data name="ComponentInspector.ActionMenu.RefreshRunningComObjectsMenuItem" xml:space="preserve">
<value>COM 실행 중 개체 새로 고침</value>
</data>
<data name="ComponentInspector.ActionMenu.RegisterTypeLibMenuItem" xml:space="preserve">
<value>형식 라이브러리 등록하기</value>
</data>
<data name="ComponentInspector.ActionMenu.RemoveFromFavouritesMenuItem" xml:space="preserve">
<value>자주 찾는 항목에서 지우기</value>
</data>
<data name="ComponentInspector.ActionMenu.UnregisterTypeLibMenuItem" xml:space="preserve">
<value>형식 라이브러리 등록 해제하기</value>
</data>
<data name="ComponentInspector.AssemblyTreeNode.Text" xml:space="preserve">
<value>열린 어셈블리</value>
</data>
<data name="ComponentInspector.AttachDialog.AttachFailedMessage" xml:space="preserve">
<value>{0} 프로세스에 연결하는 데 오류가 있습니다.</value>
</data>
<data name="ComponentInspector.AttachDialog.ProcessLabel" xml:space="preserve">
<value>프로세스</value>
</data>
<data name="ComponentInspector.AttachDialog.Title" xml:space="preserve">
<value>연결</value>
</data>
<data name="ComponentInspector.CastDialog.CannotFindType" xml:space="preserve">
<value>형을 발견할 수 없습니다</value>
</data>
<data name="ComponentInspector.CastDialog.CannotFindTypeInAssembliesMessage" xml:space="preserve">
<value>현재 열려진 어셈블리에서 {0} 형식을 찾을 수 없습니다.</value>
</data>
<data name="ComponentInspector.CastDialog.CastForTitle" xml:space="preserve">
<value>형식 변환</value>
</data>
<data name="ComponentInspector.CastDialog.CastTitle" xml:space="preserve">
<value>형식 변환</value>
</data>
<data name="ComponentInspector.CastDialog.CastToLabel" xml:space="preserve">
<value>다음 형으로 변환</value>
</data>
<data name="ComponentInspector.CastDialog.DetermineTypeOfCastFailedMessage" xml:space="preserve">
<value>형식 변환을 위해 형식을 결정하는 중 오류가 발생했습니다.</value>
</data>
<data name="ComponentInspector.CastDialog.RememberCastCheckBox" xml:space="preserve">
<value>형식 변환을 세션이 끝나도 기억하도록 하시겠습니까?</value>
</data>
<data name="ComponentInspector.CastDialog.TypeIncompatibleMessage" xml:space="preserve">
<value>변환하려는 형식이 개체의 형식과 호환되지 않습니다.</value>
</data>
<data name="ComponentInspector.ComCategoryRootTreeNode.Text" xml:space="preserve">
<value>구성 요소 범주</value>
</data>
<data name="ComponentInspector.ComClassRootTreeNode.Text" xml:space="preserve">
<value>클래스</value>
</data>
<data name="ComponentInspector.ComInterfaceRootTreeNode.Text" xml:space="preserve">
<value>인터페이스</value>
</data>
<data name="ComponentInspector.ComRunningObjectsTreeNode.Text" xml:space="preserve">
<value>COM 실행 중 개체</value>
</data>
<data name="ComponentInspector.ComTreeNode.Text" xml:space="preserve">
<value>자주 보거나 최근에 액세스한 형식 라이브러리</value>
</data>
<data name="ComponentInspector.ComTypeLibraryRootTreeNode.Text" xml:space="preserve">
<value>형식 라이브러리</value>
</data>
<data name="ComponentInspector.ConstructorDialog.Information" xml:space="preserve">
<value>매개 변수가 있는 생성자를 선택했을 때에는, 확인을 누르고 난 뒤, 매개 변수를 입력하고 나서 선택된 생성자를 이 개체를 생성하고 싶은 곳으로 드래그하십시오.</value>
</data>
<data name="ComponentInspector.ConstructorDialog.Title" xml:space="preserve">
<value>생성자를 선택하십시오</value>
</data>
<data name="ComponentInspector.ControlsTab" xml:space="preserve">
<value>컨트롤</value>
</data>
<data name="ComponentInspector.CreateObjectMenuItem" xml:space="preserve">
<value>개체 만들기(&B)</value>
</data>
<data name="ComponentInspector.CustDirectoriesPanel.ApplicationWorkingFolder" xml:space="preserve">
<value>응용 프로그램 작업 디렉터리</value>
</data>
<data name="ComponentInspector.CustDirectoriesPanel.ConvertedAssembliesFolder" xml:space="preserve">
<value>ActiveX 변환 어셈블리</value>
</data>
<data name="ComponentInspector.CustDirectoriesPanel.Title" xml:space="preserve">
<value>디렉터리</value>
</data>
<data name="ComponentInspector.CustomActiveXPanel.AutomaticallyGetPropertiesCheckBox" xml:space="preserve">
<value>자동으로 COM 속성 얻기</value>
</data>
<data name="ComponentInspector.CustomActiveXPanel.GetRunningComObjectsCheckBox" xml:space="preserve">
<value>시작 시 COM 실행 중 개체 얻기</value>
</data>
<data name="ComponentInspector.CustomObjectPanel.OtherLabel" xml:space="preserve">
<value>기타</value>
</data>
<data name="ComponentInspector.CustomObjectPanel.ShowBaseClassNamesCheckBox" xml:space="preserve">
<value>기본 클래스 이름 보이기</value>
</data>
<data name="ComponentInspector.CustomObjectPanel.ShowLabel" xml:space="preserve">
<value>보이기</value>
</data>
<data name="ComponentInspector.CustomObjectPanel.ShowObjectAsBaseCheckBox" xml:space="preserve">
<value>기본 클래스 범주에 개체 멤버 보이기</value>
</data>
<data name="ComponentInspector.CustomObjectPanel.ShowPublicMembersCheckBox" xml:space="preserve">
<value>Public 멤버만</value>
</data>
<data name="ComponentInspector.ErrorDialog.LessInformationButton" xml:space="preserve">
<value>추가 정보 감추기</value>
</data>
<data name="ComponentInspector.ErrorDialog.MoreInformationButton" xml:space="preserve">
<value>추가 정보</value>
</data>
<data name="ComponentInspector.ErrorDialog.ReportAsBugButton" xml:space="preserve">
<value>버그로 보고</value>
</data>
<data name="ComponentInspector.EventLogList.ClearAllMenuItem" xml:space="preserve">
<value>모두 지우기(&A)</value>
</data>
<data name="ComponentInspector.EventLogList.ClearMenuItem" xml:space="preserve">
<value>지우기(&C)</value>
</data>
<data name="ComponentInspector.EventLogList.EventColumnHeader" xml:space="preserve">
<value>이벤트</value>
</data>
<data name="ComponentInspector.EventLogList.EventsBeingLoggedTab" xml:space="preserve">
<value>기록되고 있는 이벤트</value>
</data>
<data name="ComponentInspector.EventLogList.EventsTab" xml:space="preserve">
<value>이벤트 기록</value>
</data>
<data name="ComponentInspector.EventLogList.IncrementColumnHeader" xml:space="preserve">
<value>증가</value>
</data>
<data name="ComponentInspector.EventLogList.NoEventsBeingLoggedMessage" xml:space="preserve">
<value>아무 이벤트도 기록하고 있지 않습니다.
이벤트 기록을 시작하려면, 개체 패널에서 오브젝트나 이벤트를 선택하고 오른쪽 클릭을 하거나 작업 메뉴를 이용하여 이벤트 기록 작성을 활성화하십시오.</value>
</data>
<data name="ComponentInspector.EventLogList.ParametersColumnHeader" xml:space="preserve">
<value>매개 변수</value>
</data>
<data name="ComponentInspector.EventLogList.StopAllLoggingMenuItem" xml:space="preserve">
<value>모든 기록 중지(&A)</value>
</data>
<data name="ComponentInspector.EventLogList.StopLoggingMenuItem" xml:space="preserve">
<value>기록 중지(&S)</value>
</data>
<data name="ComponentInspector.EventLogList.TimeColumnHeader" xml:space="preserve">
<value>시각</value>
</data>
<data name="ComponentInspector.FindDialog.AllLevelsLabel" xml:space="preserve">
<value>모든 레벨</value>
</data>
<data name="ComponentInspector.FindDialog.AssembliesRadioButton" xml:space="preserve">
<value>어셈블리/형식</value>
</data>
<data name="ComponentInspector.FindDialog.ContainsRadioButton" xml:space="preserve">
<value>포함</value>
</data>
<data name="ComponentInspector.FindDialog.FindButton" xml:space="preserve">
<value>찾기</value>
</data>
<data name="ComponentInspector.FindDialog.FindIn" xml:space="preserve">
<value>찾을 곳</value>
</data>
<data name="ComponentInspector.FindDialog.FindWhatLabel" xml:space="preserve">
<value>찾을 내용:</value>
</data>
<data name="ComponentInspector.FindDialog.FoundListColumnHeader" xml:space="preserve">
<value>항목</value>
</data>
<data name="ComponentInspector.FindDialog.FullNameLabel" xml:space="preserve">
<value>전체 이름</value>
</data>
<data name="ComponentInspector.FindDialog.LevelSelectOnlyDownLabel" xml:space="preserve">
<value>하위 레벨만</value>
</data>
<data name="ComponentInspector.FindDialog.LevelsLabel" xml:space="preserve">
<value>레벨</value>
</data>
<data name="ComponentInspector.FindDialog.LookingAtLabel" xml:space="preserve">
<value>찾을 곳:</value>
</data>
<data name="ComponentInspector.FindDialog.MatchLabel" xml:space="preserve">
<value>일치</value>
</data>
<data name="ComponentInspector.FindDialog.NoItemsFoundMessage" xml:space="preserve">
<value>발견된 항목이 없습니다</value>
</data>
<data name="ComponentInspector.FindDialog.NoTreeNodeSelectedDialogTitle" xml:space="preserve">
<value>트리 노드를 선택하십시오</value>
</data>
<data name="ComponentInspector.FindDialog.NoTreeNodeSelectedMessage" xml:space="preserve">
<value>트리에서 노드를 선택해야 그 노드에서 찾기를 시작합니다.</value>
</data>
<data name="ComponentInspector.FindDialog.ObjectTreeNameCheckBox" xml:space="preserve">
<value>이름</value>
</data>
<data name="ComponentInspector.FindDialog.ObjectTreeRadioButtonText" xml:space="preserve">
<value>개체 트리</value>
</data>
<data name="ComponentInspector.FindDialog.ObjectTreeValueCheckBox" xml:space="preserve">
<value>값</value>
</data>
<data name="ComponentInspector.FindDialog.SelectNameOrValueDialogTitle" xml:space="preserve">
<value>이름/값을 선택하십시오</value>
</data>
<data name="ComponentInspector.FindDialog.SelectNameOrValueMessage" xml:space="preserve">
<value>개체 트리에서 찾을 때에는 이름이가 값 중 하나를 선택하십시오.</value>
</data>
<data name="ComponentInspector.FindDialog.SelectNodeInTreeNameMessage" xml:space="preserve">
<value>{0} 트리에서 노드를 선택해야 그 노드로부터 찾기를 시작합니다.</value>
</data>
<data name="ComponentInspector.FindDialog.ShowItemMenuItem" xml:space="preserve">
<value>항목 보이기</value>
</data>
<data name="ComponentInspector.FindDialog.StartingWithLabel" xml:space="preserve">
<value>시작할 곳:</value>
</data>
<data name="ComponentInspector.FindDialog.StartsWithRadioButton" xml:space="preserve">
<value>다음으로 시작</value>
</data>
<data name="ComponentInspector.FindDialog.Title" xml:space="preserve">
<value>찾기</value>
</data>
<data name="ComponentInspector.GacList.CultureColumn" xml:space="preserve">
<value>컬처</value>
</data>
<data name="ComponentInspector.GacList.GlobalAssemblyNameColumn" xml:space="preserve">
<value>전역 어셈블리 이름</value>
</data>
<data name="ComponentInspector.GacList.OpenMenuItem" xml:space="preserve">
<value>열기(&O)</value>
</data>
<data name="ComponentInspector.GacList.PublicKeyTokenColumn" xml:space="preserve">
<value>공개 키 토큰</value>
</data>
<data name="ComponentInspector.GacList.VersionColumn" xml:space="preserve">
<value>버전</value>
</data>
<data name="ComponentInspector.GeneralOptionsPanel.AutomaticallyGetComPropertiesCheckBox" xml:space="preserve">
<value>자동으로 COM 속성 얻기</value>
</data>
<data name="ComponentInspector.GeneralOptionsPanel.GetRunningComObjectsAtStartupCheckBox" xml:space="preserve">
<value>시작 시 COM 실행 중 개체 얻기</value>
</data>
<data name="ComponentInspector.GeneralOptionsPanel.PanelsGroupBox" xml:space="preserve">
<value>패널</value>
</data>
<data name="ComponentInspector.GeneralOptionsPanel.ShowAssemblyPanelCheckBox" xml:space="preserve">
<value>어셈블리 패널 보이기</value>
</data>
<data name="ComponentInspector.GeneralOptionsPanel.ShowControlsPanelCheckBox" xml:space="preserve">
<value>컨트롤 패널 보이기</value>
</data>
<data name="ComponentInspector.GeneralOptionsPanel.ShowGacPanelCheckBox" xml:space="preserve">
<value>GAC 패널 보이기</value>
</data>
<data name="ComponentInspector.GetPropertyMenuItem" xml:space="preserve">
<value>속성 읽기(&G)</value>
</data>
<data name="ComponentInspector.GettingStartedDialog.Information" xml:space="preserve">
<value>이 관리자는 ActiveX/COM 개체를 보거나 조작할 수 있습니다.
왼쪽에 있는 개체 트리를 이용하여 실행 중인 COM 개체를 찾아보십시오. 메서드를 실행하려면 개체 트리에서 멤버를 오른쪽으로 클릭하십시오.
ActiveX/COM 탭에서 설치된 COM 구성 요소를 찾아보십시오.
열기 메뉴를 이용하여 형식 라이브러리나 컨트롤 파일을 여십시오.
ActiveX/COM 개체를 만들거나 조작하려면, 개체 트리나 디자인 표면으로 형식 라이브러리나 컨트롤에 있는 클래스를 드래그하십시오.</value>
</data>
<data name="ComponentInspector.GettingStartedDialog.ShowThisDialogCheckBox" xml:space="preserve">
<value>대화 상자 보이기</value>
</data>
<data name="ComponentInspector.GettingStartedDialog.Title" xml:space="preserve">
<value>시작하기</value>
</data>
<data name="ComponentInspector.ImagePanel.ControlDesignSurfaceLabel" xml:space="preserve">
<value>컨트롤 디자인 표면</value>
</data>
<data name="ComponentInspector.ImagePanel.DesignModeLabel" xml:space="preserve">
<value>디자인 모드</value>
</data>
<data name="ComponentInspector.InspectorMenu.CloseAssembly" xml:space="preserve">
<value>어셈블리 닫기(&A)...</value>
</data>
<data name="ComponentInspector.InspectorMenu.Find" xml:space="preserve">
<value>찾기(&F)...</value>
</data>
<data name="ComponentInspector.InspectorMenu.ObjectTreeOptionsPanel.Title" xml:space="preserve">
<value>개체 트리</value>
</data>
<data name="ComponentInspector.InspectorMenu.OpenAssembly" xml:space="preserve">
<value>어셈블리 열기(&O)...</value>
</data>
<data name="ComponentInspector.InspectorMenu.TypeHandlerOptionsPanel.Title" xml:space="preserve">
<value>형식 처리자</value>
</data>
<data name="ComponentInspector.InvokeMethodMenuItem" xml:space="preserve">
<value>메서드 실행(&M)</value>
</data>
<data name="ComponentInspector.MainMenu.InspectorMenu" xml:space="preserve">
<value>관리자(&I)</value>
</data>
<data name="ComponentInspector.ObjectBrowser.ObjectsTreePanel" xml:space="preserve">
<value>오브젝트</value>
</data>
<data name="ComponentInspector.ObjectBrowser.OutputTab" xml:space="preserve">
<value>출력</value>
</data>
<data name="ComponentInspector.ObjectBrowser.ParametersPanel" xml:space="preserve">
<value>매개 변수</value>
</data>
<data name="ComponentInspector.ObjectBrowser.TopLevelObjects" xml:space="preserve">
<value>최상위 레벨 개체</value>
</data>
<data name="ComponentInspector.ObjectBrowser.ValueColumnHeader" xml:space="preserve">
<value>값</value>
</data>
<data name="ComponentInspector.ObjectBrowserForm.ActionMenuItem" xml:space="preserve">
<value>작업(&A)</value>
</data>
<data name="ComponentInspector.ObjectBrowserForm.ActiveXFilesFilterName" xml:space="preserve">
<value>ActiveX 파일</value>
</data>
<data name="ComponentInspector.ObjectBrowserForm.AssemblyFilesFilterName" xml:space="preserve">
<value>어셈블리 파일</value>
</data>
<data name="ComponentInspector.ObjectBrowserForm.AttachMenuItem" xml:space="preserve">
<value>추적 중(&T)...</value>
</data>
<data name="ComponentInspector.ObjectBrowserForm.DirectoriesMenuItem" xml:space="preserve">
<value>디렉터리(&D)...</value>
</data>
<data name="ComponentInspector.ObjectBrowserForm.ObjectTreeMenuItem" xml:space="preserve">
<value>개체 트리(&O)...</value>
</data>
<data name="ComponentInspector.ObjectBrowserForm.OpenFileDialogTitle" xml:space="preserve">
<value>열 파일을 고르십시오</value>
</data>
<data name="ComponentInspector.ObjectBrowserForm.OptionsMenuItem" xml:space="preserve">
<value>옵션(&O)</value>
</data>
<data name="ComponentInspector.ObjectBrowserForm.PanelsMenuItem" xml:space="preserve">
<value>패널(&P)...</value>
</data>
<data name="ComponentInspector.ObjectBrowserForm.ShowHelpMenuItem" xml:space="preserve">
<value>도움말(&H)...</value>
</data>
<data name="ComponentInspector.ObjectBrowserForm.TracingMenuItem" xml:space="preserve">
<value>추적 중(&T)...</value>
</data>
<data name="ComponentInspector.ObjectBrowserForm.TypeHandlersMenuItem" xml:space="preserve">
<value>형식 처리자(&T)...</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.CategoriesGroupBox" xml:space="preserve">
<value>범주</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.CategoryCountLabel" xml:space="preserve">
<value>멤버의 수가 다음을 초과할 때</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.DisplayIntegersInHexCheckBox" xml:space="preserve">
<value>정수를 16진수로 표현</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.ShowBaseClassCategoryCheckBox" xml:space="preserve">
<value>기본 클래스 범주 보이기</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.ShowBaseClassMembersCheckBox" xml:space="preserve">
<value>기본 클래스 멤버</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.ShowBaseClassNamesCheckBox" xml:space="preserve">
<value>기본 클래스 이름</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.ShowEventsCheckBox" xml:space="preserve">
<value>이벤트</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.ShowFieldsCheckBox" xml:space="preserve">
<value>필드</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.ShowGroupBox" xml:space="preserve">
<value>보이기</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.ShowMemberCategoriesCheckBox" xml:space="preserve">
<value>멤버 범주 보이기</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.ShowMembersGroupBox" xml:space="preserve">
<value>멤버 보이기</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.ShowMethodsCheckBox" xml:space="preserve">
<value>메서드</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.ShowObjectAsBaseClassCheckBox" xml:space="preserve">
<value>기본 클래스 범주에 개체 멤버 보이기</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.ShowPropertiesCheckBox" xml:space="preserve">
<value>속성</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.ShowPropertyAccessorsMethodsCheckBox" xml:space="preserve">
<value>속성/이벤트 접근 메서드</value>
</data>
<data name="ComponentInspector.ObjectTreeOptionsPanel.ShowPublicMembersOnlyCheckBox" xml:space="preserve">
<value>Public 멤버만</value>
</data>
<data name="ComponentInspector.OutputList.OutputColumnHeader" xml:space="preserve">
<value>출력</value>
</data>
<data name="ComponentInspector.ParamControlInfo.SelectObjectLabel" xml:space="preserve">
<value>개체 선택</value>
</data>
<data name="ComponentInspector.ParamControlInfo.SeparateStringsWithSpaces" xml:space="preserve">
<value>(공백으로 분리된 개별 문자열)</value>
</data>
<data name="ComponentInspector.ParamControlInfo.ValueLabel" xml:space="preserve">
<value>값</value>
</data>
<data name="ComponentInspector.ProgressDialog.AddingRunningComObjectsDialogTitle" xml:space="preserve">
<value>COM 실행 중 개체 더하는 중</value>
</data>
<data name="ComponentInspector.ProgressDialog.AddingRunningComObjectsMessage" xml:space="preserve">
<value>COM 실행 중 개체를 더하는 동안 기다리십시오</value>
</data>
<data name="ComponentInspector.ProgressDialog.GettingInformationDialogTitle" xml:space="preserve">
<value>{0} 정보 얻는 중</value>
</data>
<data name="ComponentInspector.ProgressDialog.GettingInformationMessage" xml:space="preserve">
<value>{0} 정보를 얻는 동안 기다리십시오</value>
</data>
<data name="ComponentInspector.ProgressDialog.LoadingPreviouslyOpenedAssembliesDialogTitle" xml:space="preserve">
<value>기억된 어셈블리 로드 중</value>
</data>
<data name="ComponentInspector.ProgressDialog.LoadingPreviouslyOpenedAssembliesMessage" xml:space="preserve">
<value>이전에 열었던 어셈블리를 여는 동안 기다리십시오.</value>
</data>
<data name="ComponentInspector.Registry.Text" xml:space="preserve">
<value>레지스트리</value>
</data>
<data name="ComponentInspector.SetFieldMenuItem" xml:space="preserve">
<value>필드 쓰기(&F)</value>
</data>
<data name="ComponentInspector.SetPropertyMenuItem" xml:space="preserve">
<value>속성 쓰기(&S)</value>
</data>
<data name="ComponentInspector.ToolsMenu.ShowComponentInspectorMenuItem" xml:space="preserve">
<value>구성 요소 관리자</value>
</data>
<data name="ComponentInspector.TracingDialog.Title" xml:space="preserve">
<value>추적 레벨 설정</value>
</data>
<data name="ComponentInspector.TracingDialog.TraceLevelLabel" xml:space="preserve">
<value>추적 레벨</value>
</data>
<data name="ComponentInspector.TreeListPanel.HeaderPanel" xml:space="preserve">
<value>이름</value>
</data>
<data name="ComponentInspector.TypeHandlerOptionsPanel.InformationLabel" xml:space="preserve">
<value>형식 처리자가 불필요한 세부 정보를 감추어서 아래에 표시된 클래스를 더 보기 좋게 표시합니다.</value>
</data>
<data name="ComponentInspector.WaitingForAppDialog.Information" xml:space="preserve">
<value>응용 프로그램이 시작하기를 기다리는 중입니다. 만약 (더 이상 기다릴 수 없거나) 응용 프로그램이 시작하는 데 실패하면, 무르기를 눌러서 그만 둘 수 있습니다.</value>
</data>
<data name="ComponentInspector.WaitingForAppDialog.Title" xml:space="preserve">
<value>응용 프로그램이 시작하기를 기다리는 중</value>
</data>
<data name="CSharpBinding.GenerateNewHandlerInstructions" xml:space="preserve">
<value>명시적 메서드에 대한 레퍼런스를 넣습니다. 새 메서드 틀을 넣으려면 탭이나 엔터 키를 다시 누르십시오.</value>
</data>
<data name="CSharpBinding.InsertAnonymousMethod" xml:space="preserve">
<value>매개변수 없는 익명 메서드를 넣습니다.</value>
</data>
<data name="CSharpBinding.InsertAnonymousMethodWithParameters" xml:space="preserve">
<value>매개변수를 가진 익명 메서드를 넣습니다.</value>
</data>
<data name="Dialog.About.DialogName" xml:space="preserve">
<value>SharpDevelop 한국어판 정보</value>
</data>
<data name="Dialog.About.label1Text" xml:space="preserve">
<value>버전</value>
</data>
<data name="Dialog.About.label2Text" xml:space="preserve">
<value>빌드</value>
</data>
<data name="Dialog.About.License" xml:space="preserve">
<value>${License} 조건하에 배포됩니다.</value>
</data>
<data name="Dialog.About.VersionInfoTabName" xml:space="preserve">
<value>버전 정보</value>
</data>
<data name="Dialog.About.VersionInfoTabName.CopyButton" xml:space="preserve">
<value>복사(&C)</value>
</data>
<data name="Dialog.About.VersionInfoTabName.VersionColumn" xml:space="preserve">
<value>버전</value>
</data>
<data name="Dialog.Componnents.RichMenuItem.NoRecentFilesString" xml:space="preserve">
<value>최근에 사용한 파일</value>
</data>
<data name="Dialog.Componnents.RichMenuItem.NoRecentProjectsString" xml:space="preserve">
<value>최근에 사용한 프로젝트</value>
</data>
<data name="Dialog.DirtyFiles.DiscardAllButton" xml:space="preserve">
<value>모두 저장하지 않음(&D)</value>
</data>
<data name="Dialog.DirtyFiles.SaveAllButton" xml:space="preserve">
<value>모두 저장(&A)</value>
</data>
<data name="Dialog.DirtyFiles.SaveButton" xml:space="preserve">
<value>저장(&S)</value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.AddProjectConfiguration" xml:space="preserve">
<value>프로젝트 구성 더하기</value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.AddProjectPlatform" xml:space="preserve">
<value>프로젝트 플랫폼 더하기</value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.AddSolutionConfiguration" xml:space="preserve">
<value>솔루션 구성 더하기</value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.AddSolutionPlatform" xml:space="preserve">
<value>솔루션 플랫폼 더하기</value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.CannotDeleteAllConfigurationsOrPlatforms" xml:space="preserve">
<value>구성이나 플랫폼을 모두 지울 수는 없습니다.</value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.ConfirmRemoveConfigurationOrPlatform" xml:space="preserve">
<value>정말 '{0}'을(를) 지우시겠습니까?</value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.CopySettingsFrom" xml:space="preserve">
<value>설정을 복사해 올 곳(&s):</value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.CreateConfigurationInAllProjects" xml:space="preserve">
<value>모든 프로젝트에 이 구성을 만들기(&C)</value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.DuplicateName" xml:space="preserve">
<value>중복된 이름입니다.</value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.EditProjectConfigurations" xml:space="preserve">
<value>프로젝트 구성 편집</value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.EditProjectPlatforms" xml:space="preserve">
<value>프로젝트 플랫폼 편집</value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.EditSolutionConfigurations" xml:space="preserve">
<value>솔루션 구성 편집</value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.EditSolutionPlatforms" xml:space="preserve">
<value>솔루션 플랫폼 편집</value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.EmptyItem" xml:space="preserve">
<value><비어 있음></value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.EnterNewName" xml:space="preserve">
<value>새 이름 입력:</value>
</data>
<data name="Dialog.EditAvailableConfigurationsDialog.InvalidName" xml:space="preserve">
<value>이름이 부적절합니다.</value>
</data>
<data name="Dialog.Goto.DialogName" xml:space="preserve">
<value>줄로 이동</value>
</data>
<data name="Dialog.Goto.GotoLine" xml:space="preserve">
<value>줄로 가기</value>
</data>
<data name="Dialog.Goto.IntroText" xml:space="preserve">
<value>점프할 식을 입력하십시오.
줄 번호, 클래스 이름, 파일 이름을 입력할 수 있습니다.
보기: "120","MainClass","Main.cs, 120".</value>
</data>
<data name="Dialog.HighlightingEditor.ColorDlg.Background" xml:space="preserve">
<value>배경 색상</value>
</data>
<data name="Dialog.HighlightingEditor.ColorDlg.Bold" xml:space="preserve">
<value>굵게</value>
</data>
<data name="Dialog.HighlightingEditor.ColorDlg.Foreground" xml:space="preserve">
<value>전경 색상</value>
</data>
<data name="Dialog.HighlightingEditor.ColorDlg.Italic" xml:space="preserve">
<value>이탤릭</value>
</data>
<data name="Dialog.HighlightingEditor.Properties.Value" xml:space="preserve">
<value>값</value>
</data>
<data name="Dialog.HighlightingEditor.SampleText" xml:space="preserve">
<value>샘플 텍스트</value>
</data>
<data name="Dialog.NewFile.AddToProjectQuestion" xml:space="preserve">