-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathwinget.resw
More file actions
3373 lines (3362 loc) · 197 KB
/
Copy pathwinget.resw
File metadata and controls
3373 lines (3362 loc) · 197 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="AdjoinedNotFlagError" xml:space="preserve">
<value>근접한 별칭이 플래그가 아님: '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides an adjoined alias that is not a flag argument. {0} is a placeholder replaced by the user input argument (e.g. '-ab').</comment>
</data>
<data name="AdjoinedNotFoundError" xml:space="preserve">
<value>근접한 플래그 별칭 찾을 수 없음: '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides an adjoined flag alias argument that was not found. {0} is a placeholder replaced by the user input argument (e.g. '-ab').</comment>
</data>
<data name="AvailableArguments" xml:space="preserve">
<value>다음 인수를 사용할 수 있음</value>
<comment>Message displayed to inform the user about the available command line arguments.</comment>
</data>
<data name="AvailableCommandAliases" xml:space="preserve">
<value>다음 명령 별칭을 사용할 수 있습니다.</value>
<comment>Message displayed to inform the user about the available command line alias arguments.</comment>
</data>
<data name="AvailableCommands" xml:space="preserve">
<value>다음 명령을 사용할 수 있음</value>
<comment>Title displayed to inform the user about the available commands.</comment>
</data>
<data name="AvailableHeader" xml:space="preserve">
<value>사용 가능</value>
<comment>As in "a new version is available to upgrade to".</comment>
</data>
<data name="AvailableOptions" xml:space="preserve">
<value>다음 선택 사항을 사용할 수 있음</value>
<comment>Message displayed to inform the user about the available options.</comment>
</data>
<data name="AvailableSubcommands" xml:space="preserve">
<value>다음 부명령어는 사용 할 수 없음</value>
<comment>Message displayed to inform the user about the available nested commands that run in context of the selected command.</comment>
</data>
<data name="AvailableUpgrades" xml:space="preserve">
<value>{0} 업그레이드를 사용할 수 있습니다.</value>
<comment>{Locked="{0}"} Message displayed to inform the user about available package upgrades. {0} is a placeholder replaced by the number of package upgrades.</comment>
</data>
<data name="ChannelArgumentDescription" xml:space="preserve">
<value>지정된 채널을 사용합니다(기본값은 일반 대상).</value>
</data>
<data name="Command" xml:space="preserve">
<value>명령</value>
<comment>Label displayed for a command to give the software.</comment>
</data>
<data name="CommandArgumentDescription" xml:space="preserve">
<value>명령을 기준으로 결과 필터링</value>
<comment>Description message displayed to inform the user about filtering the search results by a package command.</comment>
</data>
<data name="CommandLineArgumentDescription" xml:space="preserve">
<value>완료에 대한 전체 명령줄</value>
</data>
<data name="CommandRequiresAdmin" xml:space="preserve">
<value>이 명령을 실행하려면 관리자 권한이 필요합니다.</value>
</data>
<data name="CompleteCommandLongDescription" xml:space="preserve">
<value>이 명령은 상황에 맞는 명령줄 완료를 요청하는 데 사용할 수 있습니다. 명령줄, 커서 위치 및 완료 할 단어가 전달됩니다. 출력은 입력을 기반으로 한 잠재적 값의 집합으로 한 줄당 하나의 값이 가능합니다.</value>
</data>
<data name="CompleteCommandShortDescription" xml:space="preserve">
<value>컨텍스트에 중요한 명령줄 완료를 사용합니다.</value>
</data>
<data name="CountArgumentDescription" xml:space="preserve">
<value>지정된 수의 결과만 표시(1~1000 사이)</value>
</data>
<data name="Done" xml:space="preserve">
<value>완료</value>
<comment>Label displayed when an operation completes or is done executing.</comment>
</data>
<data name="ExactArgumentDescription" xml:space="preserve">
<value>정확한 일치를 사용하여 패키지를 찾습니다.</value>
<comment>Description message displayed to inform the user about finding an application package using an exact matching criteria.</comment>
</data>
<data name="ExperimentalArgumentDescription" xml:space="preserve">
<value>데모용 실험 인수</value>
</data>
<data name="ExperimentalCommandLongDescription" xml:space="preserve">
<value>이 명령은 실험적 기능을 구현하는 방법에 대한 예입니다. 'winget settings'으로 이동하여 experimentalCmd 또는 experimentalArg 기능을 사용하려면</value>
<comment>{Locked="winget settings"}</comment>
</data>
<data name="ExperimentalCommandShortDescription" xml:space="preserve">
<value>실험적 기능 예</value>
</data>
<data name="ExtraPositionalError" xml:space="preserve">
<value>필요한 인수가 없을 때 위치 인수를 찾았습니다. '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides an extra positional argument when none was expected. {0} is a placeholder replaced by the user's extra argument input.</comment>
</data>
<data name="FeatureDisabledMessage" xml:space="preserve">
<value>이 기능은 진행 중인 작업이며, 향후 크게 변경되거나 모두 제거될 수 있습니다. 사용하도록 설정하려면 설정('winget settings')을 편집하여 실험적 기능을 포함하세요. '{0}'</value>
<comment>{Locked="winget settings","{0}"}. Error message displayed when the user uses an experimental feature that is disabled. {0} is a placeholder replaced by the experimental feature name.</comment>
</data>
<data name="FeaturesCommandLongDescription" xml:space="preserve">
<value>실험적 기능의 상태를 표시합니다. 'winget settings' 통해 실험적 기능을 켤 수 있습니다.</value>
<comment>{Locked="winget settings"}</comment>
</data>
<data name="FeaturesCommandShortDescription" xml:space="preserve">
<value>실험적 기능의 상태 표시</value>
</data>
<data name="FeaturesDisabled" xml:space="preserve">
<value>사용 안 함</value>
</data>
<data name="FeaturesEnabled" xml:space="preserve">
<value>사용</value>
</data>
<data name="FeaturesFeature" xml:space="preserve">
<value>기능</value>
</data>
<data name="FeaturesLink" xml:space="preserve">
<value>링크</value>
</data>
<data name="FeaturesMessage" xml:space="preserve">
<value>다음 실험적 기능이 진행 중입니다.
설정 파일 'winget settings'을 통해 설정을 구성할 수 있습니다.</value>
<comment>{Locked="winget settings"}</comment>
</data>
<data name="FeaturesProperty" xml:space="preserve">
<value>속성</value>
</data>
<data name="FeaturesStatus" xml:space="preserve">
<value>상태</value>
</data>
<data name="FileArgumentDescription" xml:space="preserve">
<value>해시할 파일</value>
</data>
<data name="FlagContainAdjoinedError" xml:space="preserve">
<value>플래그 인수는 근접하는 값을 포함할 수 없음: '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides a flag argument containing an unexpected adjoined value. {0} is a placeholder replaced by the user input.</comment>
</data>
<data name="HashCommandLongDescription" xml:space="preserve">
<value>매니페스트에 삽입하기에 적합한 로컬 파일의 해시를 계산합니다. 또한 MSIX 패키지의 서명 파일의 해시를 계산하여 스트리밍 설치를 사용하도록 할 수도 있습니다.</value>
</data>
<data name="HashCommandShortDescription" xml:space="preserve">
<value>해시 설치 관리자 파일 도우미</value>
</data>
<data name="HelpArgumentDescription" xml:space="preserve">
<value>선택한 명령에 대한 도움말을 표시</value>
</data>
<data name="HelpForDetails" xml:space="preserve">
<value>특정 명령에 대한 자세한 내용을 보려면 도움말 인수에 해당 명령을 전달합니다.</value>
</data>
<data name="HelpLinkPreamble" xml:space="preserve">
<value>자세한 도움말은 다음의 위치에서 찾아볼 수 있음: {0}</value>
<comment>{Locked="{0}"} Message displayed to inform the user about a link where they can learn more about the subject context. {0} is a placeholder replaced by a website address.</comment>
</data>
<data name="IdArgumentDescription" xml:space="preserve">
<value>ID를 기준으로 결과 필터링</value>
</data>
<data name="IgnoreWarningsArgumentDescription" xml:space="preserve">
<value>경고 출력을 표시하지 않습니다.</value>
</data>
<data name="InstallationDisclaimer1" xml:space="preserve">
<value>이 응용 프로그램의 라이선스는 그 소유자가 사용자에게 부여했습니다.</value>
</data>
<data name="InstallationDisclaimer2" xml:space="preserve">
<value>Microsoft는 타사 패키지에 대한 책임을 지지 않고 라이선스를 부여하지도 않습니다.</value>
</data>
<data name="InstallationDisclaimerMSStore" xml:space="preserve">
<value>이 패키지는 Microsoft Store를 통해 제공됩니다. winget은 현재 사용자를 대신하여 Microsoft Store에서 패키지를 가져와야 할 수 있습니다.</value>
<comment>{Locked="winget"}</comment>
</data>
<data name="InstallCommandLongDescription" xml:space="preserve">
<value>구성된 원본을 검색하여 찾거나 매니페스트에서 직접 선택한 패키지를 설치합니다. 기본적으로 쿼리는 대소문자를 구분하지 않고 패키지의 id, 이름 (name) 또는 모니커와 (moniker) 일치해야 합니다. 다른 필드는 적절한 옵션을 전달하여 사용할 수 있습니다. 기본적으로 install 명령은 패키지 설치 상태를 확인하고 해당되는 경우 업그레이드를 시도합니다. 직접 설치를 수행하려면 --force로 재정의하세요.</value>
<comment>{Locked="--force"}; id, name, and moniker are all named values in our context, and may benefit from not being translated. The match must be for any of them, with comparison ignoring case.</comment>
</data>
<data name="InstallCommandShortDescription" xml:space="preserve">
<value>지정된 패키지를 설치합니다.</value>
</data>
<data name="InstallerHashMismatchAdminBlock" xml:space="preserve">
<value>설치 관리자 해시가 일치하지 않습니다. 관리자로 실행할 경우 이 설정을 무시할 수 없습니다.</value>
</data>
<data name="InstallerHashMismatchOverridden" xml:space="preserve">
<value>설치 프로그램 해시가 일치하지 않습니다. --ignore-security-hash로 인한 진행</value>
<comment>{Locked="--ignore-security-hash"}</comment>
</data>
<data name="InstallerHashMismatchOverrideRequired" xml:space="preserve">
<value>설치 프로그램 해시가 일치하지 않습니다. 이 검사를 무시하려면 --ignore-security-hash를 사용하세요.</value>
<comment>{Locked="--ignore-security-hash"}</comment>
</data>
<data name="InstallerHashVerified" xml:space="preserve">
<value>설치 관리자 해시를 확인했습니다.</value>
</data>
<data name="InstallFlowInstallSuccess" xml:space="preserve">
<value>설치 성공</value>
</data>
<data name="InstallFlowStartingPackageInstall" xml:space="preserve">
<value>패키지 설치를 시작하는 중...</value>
</data>
<data name="HashOverrideArgumentDescription" xml:space="preserve">
<value>설치 관리자 해시 확인 실패 무시</value>
</data>
<data name="IgnoreLocalArchiveMalwareScanArgumentDescription" xml:space="preserve">
<value>로컬 매니페스트에서 보관 유형 패키지를 설치하는 동안 수행된 맬웨어 검색 무시</value>
</data>
<data name="InteractiveArgumentDescription" xml:space="preserve">
<value>대화형 설치를 요청합니다(사용자 입력이 필요할 수 있음).</value>
</data>
<data name="InvalidAliasError" xml:space="preserve">
<value>현재 명령에 대해 인수 별칭을 인식할 수 없음: '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides a command line argument alias that was not recognized for a selected command. {0} is a placeholder replaced by the user's argument alias input (e.g. '-a').</comment>
</data>
<data name="InvalidArgumentSpecifierError" xml:space="preserve">
<value>유효하지 않은 인수 특정자: '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides an invalid argument specifier. {0} is a placeholder replaced by an argument specifier (e.g. '-').</comment>
</data>
<data name="InvalidNameError" xml:space="preserve">
<value>현재 명령에 대해 인수 이름을 인식할 수 없음: '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides an unrecognized command line argument name for the selected command. {0} is a placeholder replaced by the user's argument name input (e.g. '--example').</comment>
</data>
<data name="KeyDirectoriesHeader" xml:space="preserve">
<value>Winget 디렉터리</value>
<comment>Header for a table detailing the directories Winget uses for key operations like logging and portable installs</comment>
</data>
<data name="LocaleArgumentDescription" xml:space="preserve">
<value>사용할 로캘(BCP47 형식)</value>
<comment>{Locked="BCP47"}</comment>
</data>
<data name="LicenseAgreement" xml:space="preserve">
<value>라이선스 계약</value>
</data>
<data name="Links" xml:space="preserve">
<value>링크</value>
<comment>Links to different webpages</comment>
</data>
<data name="ListCommandLongDescription" xml:space="preserve">
<value>list 명령은 시스템에 설치된 패키지를 표시하거나 업그레이드를 사용할 수 있는지 여부를 표시합니다. search 명령과 같이 출력을 필터링하는 데 추가 옵션을 제공할 수 도 있습니다.</value>
<comment>{Locked="list","search"}</comment>
</data>
<data name="ListCommandShortDescription" xml:space="preserve">
<value>설치된 패키지 표시</value>
</data>
<data name="LocationArgumentDescription" xml:space="preserve">
<value>설치할 위치(지원되는 경우)</value>
</data>
<data name="LogArgumentDescription" xml:space="preserve">
<value>로그 위치(지원되는 경우)</value>
</data>
<data name="MainCopyrightNotice" xml:space="preserve">
<value>Copyright (c) Microsoft Corporation. All rights reserved.</value>
</data>
<data name="MainHomepage" xml:space="preserve">
<value>홈페이지</value>
<comment>The primary webpage for the software</comment>
</data>
<data name="ManifestArgumentDescription" xml:space="preserve">
<value>패키지의 매니페스트 경로</value>
</data>
<data name="ManifestValidationFail" xml:space="preserve">
<value>매니페스트 유효성 검사에 실패했습니다.</value>
</data>
<data name="ManifestValidationSuccess" xml:space="preserve">
<value>매니페스트 유효성 검사에 성공했습니다.</value>
</data>
<data name="ManifestValidationWarning" xml:space="preserve">
<value>매니페스트 유효성 검사에 성공했으나 경고가 발생했습니다.</value>
</data>
<data name="MissingArgumentError" xml:space="preserve">
<value>인수 값이 필수이지만 아무것도 찾지 못했음: '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user does not provide a required command line argument value. {0} is a placeholder replaced by the argument name.</comment>
</data>
<data name="MonikerArgumentDescription" xml:space="preserve">
<value>결과를 모니커로 필터링합니다.</value>
</data>
<data name="MsixArgumentDescription" xml:space="preserve">
<value>입력 파일이 msix로 처리됩니다. (서명된 경우 서명 해시가 제공됨)</value>
</data>
<data name="MsixSignatureHashFailed" xml:space="preserve">
<value>MSIX 서명 해시를 계산하지 못했습니다.</value>
</data>
<data name="MSStoreAppBlocked" xml:space="preserve">
<value>정책에 의해 특정 앱이 차단되어 Microsoft Store 패키지를 설치하거나 업그레이드하지 못했습니다.</value>
</data>
<data name="MSStoreInstallOrUpdateFailed" xml:space="preserve">
<value>Microsoft Store 패키지를 설치하거나 업그레이드하지 못했습니다. 오류 코드: {0}</value>
<comment>{Locked="{0}"} Error message displayed when a Microsoft Store application package fails to install or upgrade. {0} is a placeholder replaced by an error code.</comment>
</data>
<data name="MSStoreStoreClientBlocked" xml:space="preserve">
<value>Microsoft Store 클라이언트가 정책에 의해 차단되어 Microsoft Store 패키지를 설치 또는 업그레이드하지 못했습니다.</value>
</data>
<data name="MSStoreInstallTryGetEntitlement" xml:space="preserve">
<value>패키지 획득을 확인/요청하는 중..</value>
</data>
<data name="MultipleInstalledPackagesFound" xml:space="preserve">
<value>입력 기준과 일치하는 여러 개의 패키지를 찾았습니다. 입력을 구체화하십시오.</value>
</data>
<data name="MultiplePackagesFound" xml:space="preserve">
<value>입력 조건과 일치하는 패키지가 여러 개 있습니다. 입력을 구체화하십시오.</value>
</data>
<data name="NameArgumentDescription" xml:space="preserve">
<value>이름을 기준으로 결과 필터링</value>
</data>
<data name="NoApplicableInstallers" xml:space="preserve">
<value>적용 가능한 설치 관리자를 찾을 수 없습니다. 자세한 내용은 로그를 참조하십시오.</value>
</data>
<data name="NoExperimentalFeaturesMessage" xml:space="preserve">
<value>현재 사용 가능한 실험적 기능이 없습니다. </value>
</data>
<data name="NoInstalledPackageFound" xml:space="preserve">
<value>입력 조건과 일치하는 설치된 패키지를 찾을 수 없습니다.</value>
</data>
<data name="NoPackageFound" xml:space="preserve">
<value>입력 조건과 일치하는 패키지를 찾을 수 없습니다.</value>
</data>
<data name="NoVTArgumentDescription" xml:space="preserve">
<value>VirtualTerminal 표시를 사용 안 함</value>
<comment>{Locked="VirtualTerminal"}</comment>
</data>
<data name="OpenLogsArgumentDescription" xml:space="preserve">
<value>기본 로그 위치 열기</value>
</data>
<data name="Options" xml:space="preserve">
<value>옵션</value>
<comment>Options to change how a command works</comment>
</data>
<data name="OverrideArgumentDescription" xml:space="preserve">
<value>설치 관리자에 전달할 인수 재정의</value>
</data>
<data name="Package" xml:space="preserve">
<value>패키지: {0}</value>
<comment>{Locked="{0}"} Label displayed for a software package. {0} is a placeholder replaced by the software package name.</comment>
</data>
<data name="PendingWorkError" xml:space="preserve">
<value>죄송합니다 .작업 수행을 하지 못했습니다.</value>
</data>
<data name="PositionArgumentDescription" xml:space="preserve">
<value>명령줄 내의 커서 위치</value>
</data>
<data name="PrivacyStatement" xml:space="preserve">
<value>개인정보처리방침</value>
</data>
<data name="QueryArgumentDescription" xml:space="preserve">
<value>패키지를 검색하는 데 사용되는 쿼리</value>
</data>
<data name="RainbowArgumentDescription" xml:space="preserve">
<value>여러 가지 무지개의 색깔로 진행률 표시</value>
</data>
<data name="RequiredArgError" xml:space="preserve">
<value>필수 인수가 제공 되지 않음: '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user does not provide a required command line argument. {0} is a placeholder replaced by an argument name.</comment>
</data>
<data name="RetroArgumentDescription" xml:space="preserve">
<value>기본 색깔로 진행률 표시</value>
</data>
<data name="SearchCommandLongDescription" xml:space="preserve">
<value>구성된 원본에서 패키지를 검색합니다.</value>
</data>
<data name="SearchCommandShortDescription" xml:space="preserve">
<value>패키지의 기본 정보를 찾아 표시</value>
</data>
<data name="SearchId" xml:space="preserve">
<value>장치 Id</value>
<comment>Abbreviation of Identifier.</comment>
</data>
<data name="SearchMatch" xml:space="preserve">
<value>일치</value>
</data>
<data name="SearchName" xml:space="preserve">
<value>이름</value>
</data>
<data name="SearchSource" xml:space="preserve">
<value>원본</value>
</data>
<data name="SearchTruncated" xml:space="preserve">
<value>결과 한도로 잘렸습니다.</value>
</data>
<data name="SearchVersion" xml:space="preserve">
<value>버전</value>
</data>
<data name="SettingLoadFailure" xml:space="preserve">
<value>설정의 유효성을 확인하는 동안 다음 오류가 발견되었습니다.</value>
</data>
<data name="SettingsCommandLongDescription" xml:space="preserve">
<value>기본 json 텍스트 편집기에서 설정을 엽니다. 편집기를 구성하지 않은 경우 메모장에서 설정을 엽니다. 사용 가능한 설정은 https://aka.ms/winget-settings를 참조하세요. 이 명령은 --enable 또는 --disable 함 인수를 제공하여 관리자 설정을 설정하는 데도 사용할 수 있습니다.</value>
<comment>{Locked="--enable"} {Locked="--disable"}</comment>
</data>
<data name="SettingsCommandShortDescription" xml:space="preserve">
<value>설정 열기 또는 관리자 설정 설정</value>
</data>
<data name="SettingsWarnings" xml:space="preserve">
<value>설정을 로드하는 동안 예기치 않은 오류가 발생했습니다. 'settings' 명령을 실행하여 설정을 확인하세요.</value>
<comment>{Locked="'settings'"}</comment>
</data>
<data name="ShowChannel" xml:space="preserve">
<value>채널</value>
</data>
<data name="ShowCommandLongDescription" xml:space="preserve">
<value>특정 패키지에 대한 정보를 표시합니다. 기본적으로 쿼리는 패키지의 ID, 이름 또는 모양과 대/소문자를 구분하지 않는 다섯 번이 어려져야 합니다. 적절한 옵션을 전달하여 다른 필드를 사용할 수 있습니다.</value>
<comment>id, name, and moniker are all named values in our context, and may benefit from not being translated. The match must be for any of them, with comparison ignoring case.</comment>
</data>
<data name="ShowCommandShortDescription" xml:space="preserve">
<value>패키지에 대한 정보 표시</value>
</data>
<data name="ShowVersion" xml:space="preserve">
<value>버전</value>
</data>
<data name="SilentArgumentDescription" xml:space="preserve">
<value>무인 설치 요청</value>
</data>
<data name="SingleCharAfterDashError" xml:space="preserve">
<value>단일 문자 별칭만이 단일- 후에 나타남: '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides more than a single character command line alias argument after an alias argument specifier '-'. {0} is a placeholder replaced by the user's argument input.</comment>
</data>
<data name="SourceAddAlreadyExistsDifferentArg" xml:space="preserve">
<value>지정한 이름의 원본이 이미 있으며 다른 위치를 참조합니다.</value>
</data>
<data name="SourceAddAlreadyExistsDifferentName" xml:space="preserve">
<value>원본이 다른 이름의 위치를 이미 참조합니다.</value>
</data>
<data name="SourceAddAlreadyExistsMatch" xml:space="preserve">
<value>지정한 이름의 소스가 이미 있으며 다음과 같이 동일한 위치를 참조합니다.</value>
</data>
<data name="SourceAddBegin" xml:space="preserve">
<value>원본을 추가하는 중:</value>
</data>
<data name="SourceAddCommandLongDescription" xml:space="preserve">
<value>새 원본을 추가합니다. 원본은 패키지를 검색하고 설치할 수 있는 데이터를 제공합니다. 새 원본을 보안 위치로 신뢰하는 경우에만 새 원본을 추가합니다.</value>
</data>
<data name="SourceAddCommandShortDescription" xml:space="preserve">
<value>새 원본 추가</value>
</data>
<data name="SourceArgArgumentDescription" xml:space="preserve">
<value>원본에 지정된 인수</value>
</data>
<data name="SourceArgumentDescription" xml:space="preserve">
<value>지정한 원본을 사용하여 패키지를 찾습니다.</value>
</data>
<data name="SourceCommandLongDescription" xml:space="preserve">
<value>하위 명령을 사용하여 원본을 관리합니다. 원본은 패키지를 검색하고 설치할 수 있는 데이터를 제공합니다. 새 원본을 보안 위치로 신뢰하는 경우에만 새 원본을 추가합니다.</value>
</data>
<data name="SourceCommandShortDescription" xml:space="preserve">
<value>패키지 원본 관리</value>
</data>
<data name="SourceListArg" xml:space="preserve">
<value>인수</value>
<comment>Value given to source.</comment>
</data>
<data name="SourceListCommandLongDescription" xml:space="preserve">
<value>현재의 모든 원본 또는 특정 원본의 전체 세부 정보를 목록에 추가합니다.</value>
</data>
<data name="SourceListCommandShortDescription" xml:space="preserve">
<value>현재의 원본을 목록에 추가</value>
</data>
<data name="SourceListData" xml:space="preserve">
<value>데이터</value>
<comment>Data stored by the source.</comment>
</data>
<data name="SourceListField" xml:space="preserve">
<value>필드</value>
<comment>The name of a piece of information about a source.</comment>
</data>
<data name="SourceListName" xml:space="preserve">
<value>이름</value>
<comment>The name of the source.</comment>
</data>
<data name="SourceListIdentifier" xml:space="preserve">
<value>식별자</value>
<comment>The source's unique identifier.</comment>
</data>
<data name="SourceListNoneFound" xml:space="preserve">
<value>다음 이름의 원본을 찾지 못함: {0}</value>
<comment>Error message displayed when the user provides a repository source name that was not found. {0} is a placeholder replaced by the user input.</comment>
</data>
<data name="SourceListNoSources" xml:space="preserve">
<value>구성된 원본이 없습니다.</value>
</data>
<data name="SourceListType" xml:space="preserve">
<value>유형</value>
<comment>The kind of source.</comment>
</data>
<data name="SourceListUpdated" xml:space="preserve">
<value>업데이트됨</value>
<comment>The last time the source was updated.</comment>
</data>
<data name="SourceListUpdatedNever" xml:space="preserve">
<value>사용 안 함</value>
<comment>The source has never been updated.</comment>
</data>
<data name="SourceListValue" xml:space="preserve">
<value>값</value>
<comment>The value of information about a source.</comment>
</data>
<data name="SourceNameArgumentDescription" xml:space="preserve">
<value>원본의 이름</value>
</data>
<data name="SourceOpenFailedSuggestion" xml:space="preserve">
<value>소스를 열 때 실패했습니다. 문제가 계속되면 'source reset' 명령을 사용해 보십시오.</value>
<comment>{Locked="source reset"}</comment>
</data>
<data name="SourceOpenPredefinedFailedSuggestion" xml:space="preserve">
<value>미리 정의된 출처를 열지 못했습니다. 유지 관리 winget 신고하세요.</value>
<comment>{Locked="winget"}</comment>
</data>
<data name="SourceRemoveAll" xml:space="preserve">
<value>모든 원본을 제거하는 중...</value>
</data>
<data name="SourceRemoveCommandLongDescription" xml:space="preserve">
<value>특정 원본을 제거합니다.</value>
</data>
<data name="SourceRemoveCommandShortDescription" xml:space="preserve">
<value>현재의 원본 제거</value>
</data>
<data name="SourceRemoveOne" xml:space="preserve">
<value>출처를 제거하는 중: {0}...</value>
<comment>{Locked="{0}"} Message displayed to inform the user about a registered repository source that is currently being removed. {0} is a placeholder replaced by the repository source name.</comment>
</data>
<data name="SourceResetAll" xml:space="preserve">
<value>모든 원본... 다시 설정</value>
</data>
<data name="SourceResetCommandLongDescription" xml:space="preserve">
<value>이 명령은 기존 원본을 삭제하고, 잠정적으로 로컬 데이터는 그대로 둡니다. 인수가 없으면 모든 원본이 삭제되고 기본값이 추가됩니다. 명명된 원본이 제공되는 경우, 해당 원본만 삭제됩니다.</value>
</data>
<data name="SourceResetCommandShortDescription" xml:space="preserve">
<value>원본 재설정</value>
</data>
<data name="SourceResetForceArgumentDescription" xml:space="preserve">
<value>원본을 강제로 초기화</value>
</data>
<data name="SourceResetListAndOverridePreamble" xml:space="preserve">
<value>--force 옵션을 지정하면 다음 원본이 다시 설정됩니다.</value>
<comment>{Locked="--force"}</comment>
</data>
<data name="SourceResetOne" xml:space="preserve">
<value>원본을 다시 설정하는 중: {0}...</value>
<comment>{Locked="{0}"} Message displayed to inform the user about a repository source that is currently being reset. {0} is a placeholder replaced by the repository source name.</comment>
</data>
<data name="SourceTypeArgumentDescription" xml:space="preserve">
<value>원본의 형식</value>
</data>
<data name="SourceUpdateAll" xml:space="preserve">
<value>모든 원본을 업데이트 중...</value>
</data>
<data name="SourceUpdateCommandLongDescription" xml:space="preserve">
<value>모든 원본 또는 특정 원본만을 업데이트합니다.</value>
</data>
<data name="SourceUpdateCommandShortDescription" xml:space="preserve">
<value>현재의 원본을 업데이트</value>
</data>
<data name="SourceUpdateOne" xml:space="preserve">
<value>원본 업데이트 중: {0}...</value>
<comment>{Locked="{0}"} Message displayed to inform the user about a registered repository source that is currently being updated. {0} is a placeholder replaced by the repository source name.</comment>
</data>
<data name="TagArgumentDescription" xml:space="preserve">
<value>태그를 기준으로 결과 필터링</value>
</data>
<data name="ThankYou" xml:space="preserve">
<value>위젯을 이용해 주셔서 감사합니다</value>
</data>
<data name="ThirdPartSoftwareNotices" xml:space="preserve">
<value>타사 통지 사항</value>
</data>
<data name="ToolDescription" xml:space="preserve">
<value>원넷 명령줄 유틸리티를 사용하면 명령줄에서 응용 프로그램 및 기타 패키지를 설치할 수 있습니다.</value>
</data>
<data name="ToolInfoArgumentDescription" xml:space="preserve">
<value>도구의 일반 정보를 표시</value>
</data>
<data name="ToolVersionArgumentDescription" xml:space="preserve">
<value>도구의 버전을 표시</value>
</data>
<data name="TooManyArgError" xml:space="preserve">
<value>인수가 허용 되는 횟수보다 더 많이 제공 됨: '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides a command line argument more times than it is allowed. {0} is a placeholder replaced by the user's argument name input.</comment>
</data>
<data name="TooManyBehaviorsError" xml:space="preserve">
<value>둘 이상의 실행 동작 인수가 제공되었습니다. '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides more than one execution behavior argument when installing an application package. {0} is a placeholder replaced by the user specified execution behaviors (e.g. 'silent|interactive').</comment>
</data>
<data name="UnexpectedErrorExecutingCommand" xml:space="preserve">
<value>명령을 실행하는 동안 예기치 않은 오류가 발생했습니다.</value>
</data>
<data name="UninstallPreviousArgumentDescription" xml:space="preserve">
<value>업그레이드하는 동안 이전 버전의 패키지 제거</value>
</data>
<data name="UnrecognizedCommand" xml:space="preserve">
<value>인식할 수 없는 명령임: '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides an unrecognized command. {0} is a placeholder replaced by the user input.</comment>
</data>
<data name="UpdateAllArgumentDescription" xml:space="preserve">
<value>설치된 모든 패키지를 사용 가능한 경우 최신 패키지로 업그레이드</value>
</data>
<data name="UpdateNotApplicable" xml:space="preserve">
<value>적용 가능한 업그레이드를 찾을 수 없습니다.</value>
</data>
<data name="UpdateNotApplicableReason" xml:space="preserve">
<value>구성된 원본에서 최신 패키지 버전을 사용할 수 있지만 시스템 또는 요구 사항에는 적용되지 않습니다.</value>
</data>
<data name="UpdateNoPackagesFound" xml:space="preserve">
<value>사용 가능한 업그레이드를 찾을 수 없습니다.</value>
</data>
<data name="UpdateNoPackagesFoundReason" xml:space="preserve">
<value>구성된 원본에서 사용할 수 있는 최신 패키지 버전이 없습니다.</value>
</data>
<data name="UpgradeCommandLongDescription" xml:space="preserve">
<value>설치된 패키지 목록을 검색하거나 매니페스트에서 직접 찾은 선택한 패키지를 업그레이드합니다. 기본적으로 쿼리는 패키지의 ID, 이름 또는 모니커와 대/소문자를 구분하지 않아야 합니다. 다른 필드는 적절한 옵션을 전달하여 사용할 수 있습니다. 인수가 지정되지 않은 경우 업그레이드를 사용할 수 있는 패키지가 표시됩니다.</value>
<comment>id, name, and moniker are all named values in our context, and may benefit from not being translated. The match must be for any of them, with comparison ignoring case.</comment>
</data>
<data name="UpgradeCommandShortDescription" xml:space="preserve">
<value>사용 가능한 업그레이드를 표시하고 수행합니다.</value>
</data>
<data name="Usage" xml:space="preserve">
<value>사용 현황: {0} {1}</value>
<comment>{Locked="{0} {1}"} Message displayed to provide the user with instructions on how to use a command. {0} is a placeholder replaced by the program name (e.g. 'winget'). {1} is a placeholder replaced by the pattern for using the selected command.</comment>
</data>
<data name="ValidateCommandLongDescription" xml:space="preserve">
<value>엄격한 지침의 집합을 사용하여 매니페스트의 유효성을 검사합니다. 이 기능은 리포지토리를 제출하기 전에 매니페스트를 확인할 수 있도록 하기 위한 목적을 가지고 있습니다.</value>
</data>
<data name="ValidateCommandShortDescription" xml:space="preserve">
<value>매니페스트 파일의 유효성 검사</value>
</data>
<data name="ValidateManifestArgumentDescription" xml:space="preserve">
<value>유효성을 검사할 매니페스트로의 경로</value>
</data>
<data name="VerboseLogsArgumentDescription" xml:space="preserve">
<value>WinGet에 대해 자세한 로깅을 설정합니다.</value>
</data>
<data name="VerifyFileSignedMsix" xml:space="preserve">
<value>입력 파일이 올바른 MSIX인지 확인하십시오.</value>
</data>
<data name="VersionArgumentDescription" xml:space="preserve">
<value>지정된 버전을 사용합니다. 기본값은 최신 버전입니다.</value>
</data>
<data name="VersionsArgumentDescription" xml:space="preserve">
<value>패키지의 사용 가능한 버전을 표시합니다.</value>
</data>
<data name="WordArgumentDescription" xml:space="preserve">
<value>완료되기 전에 제공한 값이 요청되었습니다.</value>
</data>
<data name="GetManifestResultVersionNotFound" xml:space="preserve">
<value>일치하는 버전을 찾을 수 없는 경우: {0}</value>
<comment>{Locked="{0}"} Error message displayed when the user attempts to upgrade an application package to a version that was not found. {0} is a placeholder replaced by the user's provided upgrade package version.</comment>
</data>
<data name="OpenSourceFailedNoMatch" xml:space="preserve">
<value>지정된 값과 일치하는 원본이 없는 경우: {0}</value>
<comment>{Locked="{0}"} Error message displayed when the user attempts to install or upgrade an application package from a repository source that was not found. {0} is a placeholder replaced by the user's repository source name input.</comment>
</data>
<data name="OpenSourceFailedNoMatchHelp" xml:space="preserve">
<value>구성된 원본은 다음과 같습니다.</value>
</data>
<data name="OpenSourceFailedNoSourceDefined" xml:space="preserve">
<value>정의된 원본이 없습니다. 'source add'를 사용해 추가하거나 'source reset'을 사용하여 기본값으로 다시 설정</value>
<comment>{Locked="source add","source reset"}</comment>
</data>
<data name="ReportIdentityFound" xml:space="preserve">
<value>찾음</value>
</data>
<data name="VerifyFileFailedIsDirectory" xml:space="preserve">
<value>경로가 디렉터리임: {0}</value>
<comment>{Locked="{0}"} Error message displayed when the user provides a system path that is a directory. {0} is a placeholder replaced by the provided directory path.</comment>
</data>
<data name="VerifyFileFailedNotExist" xml:space="preserve">
<value>파일이 없음: {0}</value>
<comment>{Locked="{0}"} Error message displayed when the user provides a system file that does not exist. {0} is a placeholder replaced by the provided file path.</comment>
</data>
<data name="BothManifestAndSearchQueryProvided" xml:space="preserve">
<value>로컬 매니페스트 및 검색 쿼리 인수가 모두 제공되었습니다.</value>
</data>
<data name="Logs" xml:space="preserve">
<value>로그</value>
<comment>Label displayed for diagnostic files containing information about the application use.</comment>
</data>
<data name="InstallerBlockedByPolicy" xml:space="preserve">
<value>설치 프로그램이 정책에 의해 차단됨</value>
</data>
<data name="InstallerFailedSecurityCheck" xml:space="preserve">
<value>설치 관리자가 보안 검사를 하지 못했습니다</value>
</data>
<data name="InstallerFailedVirusScan" xml:space="preserve">
<value>바이러스 백신 제품이 설치 관리자의 감염을 보고합니다.</value>
</data>
<data name="SourceOpenWithFailedUpdate" xml:space="preserve">
<value>원본을 업데이트하지 못했습니다. {0}</value>
<comment>{Locked="{0}"} Error message displayed when an attempt to update the repository source fails. {0} is a placeholder replaced by the repository source name.</comment>
</data>
<data name="UninstallCommandLongDescription" xml:space="preserve">
<value>설치된 패키지 목록을 검색하거나 매니페스트에서 직접 찾은 선택한 패키지를 제거합니다. 기본적으로 쿼리는 패키지의 ID, 이름 또는 모양과 대/소문자를 구분하지 않는 것이 어떻게 되아야 합니다. 적절한 옵션을 전달하여 다른 필드를 사용할 수 있습니다.</value>
<comment>id, name, and moniker are all named values in our context, and may benefit from not being translated. The match must be for any of them, with comparison ignoring case.</comment>
</data>
<data name="UninstallCommandShortDescription" xml:space="preserve">
<value>지정된 패키지를 제거</value>
</data>
<data name="UninstallFlowStartingPackageUninstall" xml:space="preserve">
<value>패키지 제거를 시작하는 중...</value>
</data>
<data name="UninstallFlowUninstallSuccess" xml:space="preserve">
<value>성공적으로 제거됨</value>
</data>
<data name="NoUninstallInfoFound" xml:space="preserve">
<value>winget 이 패키지에 대한 제거 명령을 찾을 수 없습니다. 지원을 위해 패키지 게시자에게 문의하세요.</value>
<comment>{Locked="winget"}</comment>
</data>
<data name="UninstallAbandoned" xml:space="preserve">
<value>제거가 중단됨</value>
</data>
<data name="UninstallFailedWithCode" xml:space="preserve">
<value>설치 종료 코드로 인해 제거하지 못함: {0}</value>
<comment>{Locked="{0}"} Error message displayed when an attempt to uninstall an application package fails. {0} is a placeholder replaced by an error code.</comment>
</data>
<data name="ExportCommandShortDescription" xml:space="preserve">
<value>설치된 패키지 목록 내보내기</value>
</data>
<data name="ImportCommandLongDescription" xml:space="preserve">
<value>파일에 나열된 모든 패키지를 설치합니다.</value>
</data>
<data name="ImportCommandShortDescription" xml:space="preserve">
<value>파일에 있는 모든 패키지를 설치합니다.</value>
</data>
<data name="OutputFileArgumentDescription" xml:space="preserve">
<value>결과를 기록할 파일</value>
</data>
<data name="ImportFileArgumentDescription" xml:space="preserve">
<value>설치할 패키지를 설명하는 파일</value>
</data>
<data name="ExportSourceArgumentDescription" xml:space="preserve">
<value>지정한 원본에서 패키지 내보내기</value>
</data>
<data name="ExportCommandLongDescription" xml:space="preserve">
<value>설치된 패키지 목록을 파일에 기록합니다. 그런 다음 패키지를 import 명령과 함께 설치할 수 있습니다.</value>
<comment>{Locked="import"}</comment>
</data>
<data name="ImportInstallFailed" xml:space="preserve">
<value>가져온 패키지를 하나 이상 설치하지 못했습니다.</value>
</data>
<data name="ImportSourceNotInstalled" xml:space="preserve">
<value>가져오기에 필요한 원본이 설치되어 있지 않습니다. {0}</value>
<comment>{Locked="{0}"} Error message displayed when the user attempts to import application package(s) from a repository source that is not installed. {0} is a placeholder replaced by the repository source name.</comment>
</data>
<data name="InstalledPackageNotAvailable" xml:space="preserve">
<value>어떤 원본에서도 설치된 패키지를 사용할 수 없음: {0}</value>
<comment>{Locked="{0}"} Warning message displayed when the user attempts to export an installed application package that is not available from any repository source. {0} is a placeholder replaced by the installed package name.</comment>
</data>
<data name="InstalledPackageVersionNotAvailable" xml:space="preserve">
<value>어떤 원본에서도 설치된 패키지 버전을 사용할 수 없음: {0} {1} {2}</value>
<comment>{Locked="{0} {1} {2}"} Warning message displayed when the user attempts to export an installed application package with a version that is not available from any repository source. {0} is a placeholder replaced by the installed package identifier. {1} is a placeholder replaced by the installed package version. {2} is a placeholder replaced by the installed package channel.</comment>
</data>
<data name="NoPackagesInImportFile" xml:space="preserve">
<value>가져오기 파일에 패키지가 없습니다.</value>
</data>
<data name="InvalidJsonFile" xml:space="preserve">
<value>JSON 파일이 잘못되었습니다.</value>
</data>
<data name="MultiQueryPackageAlreadyInstalled" xml:space="preserve">
<value>패키지가 이미 설치되어 있음: {0}</value>
<comment>{Locked="{0}"} Message displayed to inform the user that an application package is already installed. {0} is a placeholder replaced by the package identifier or search query.</comment>
</data>
<data name="ImportIgnoreUnavailableArgumentDescription" xml:space="preserve">
<value>사용할 수 없는 패키지 무시</value>
</data>
<data name="ExportIncludeVersionsArgumentDescription" xml:space="preserve">
<value>내보내기 파일에 패키지 버전 포함</value>
</data>
<data name="ImportIgnoreVersionsArgumentDescription" xml:space="preserve">
<value>가져오기 파일에서 패키지 버전 무시</value>
</data>
<data name="VerifyPathFailedNotExist" xml:space="preserve">
<value>경로가 존재하지 않음: {0}</value>
<comment>{Locked="{0}"} Error message displayed when the user provides a system path argument value that does not exist. {0} is a placeholder replaced by the user's provided path.</comment>
</data>
<data name="ImportFileHasInvalidSchema" xml:space="preserve">
<value>JSON 파일에서 인식되는 스키마를 지정하지 않습니다.</value>
</data>
<data name="InstallScopeDescription" xml:space="preserve">
<value>설치 범위 선택(user 또는 machine)</value>
<comment>{Locked="user","machine"} This argument allows the user to select between installing for just the user or for the entire machine.</comment>
</data>
<data name="InvalidArgumentValueError" xml:space="preserve">
<value>'{0}' 인수에 제공된 값이 잘못되었습니다. 유효한 값: {1}</value>
<comment>{Locked="{0}","{1}"} Error message displayed when the user provides an invalid command line argument value. {0} is a placeholder replaced by the argument name. {1} is a placeholder replaced by a list of valid options.</comment>
</data>
<data name="DisabledByGroupPolicy" xml:space="preserve">
<value>그룹 정책 이 작업을 사용하지 않도록 설정했습니다. {0}</value>
<comment>{Locked="{0}"} Error message displayed when the user performs a command operation that is disabled by a group policy. {0} is a placeholder replaced by a group policy description.</comment>
</data>
<data name="PolicyAdditionalSources" xml:space="preserve">
<value>추가 Windows 앱 설치 관리자 원본 사용</value>
</data>
<data name="PolicyAllowedSources" xml:space="preserve">
<value>Windows 앱 설치 관리자 허용된 원본 사용</value>
</data>
<data name="PolicyEnableDefaultSource" xml:space="preserve">
<value>Windows 앱 설치 관리자 기본 원본 사용</value>
</data>
<data name="PolicyEnableExperimentalFeatures" xml:space="preserve">
<value>Windows 앱 설치 관리자 실험적 기능 사용</value>
</data>
<data name="PolicyEnableMSStoreSource" xml:space="preserve">
<value>Windows 앱 설치 관리자 Microsoft Store 소스 사용</value>
</data>
<data name="PolicyEnableWinGetSettings" xml:space="preserve">
<value>Windows 패키지 관리자 설정 사용</value>
</data>
<data name="PolicyEnableWinGet" xml:space="preserve">
<value>Windows 패키지 관리자 사용</value>
</data>
<data name="PolicyEnableWindowsPackageManagerCommandLineInterfaces" xml:space="preserve">
<value>Windows 패키지 관리자 명령줄 인터페이스 활성화</value>
</data>
<data name="PolicySourceAutoUpdateInterval" xml:space="preserve">
<value>Windows 패키지 관리자 원본 자동 업데이트 간격(분) 설정</value>
</data>
<data name="PoliciesPolicy" xml:space="preserve">
<value>그룹 정책</value>
<comment>Header for a table listing active Group Policies</comment>
</data>
<data name="PolicyEnableLocalManifests" xml:space="preserve">
<value>Windows 앱 설치 관리자 로컬 매니페스트 파일 사용</value>
</data>
<data name="PolicyEnableBypassCertificatePinningForMicrosoftStore" xml:space="preserve">
<value>Windows 앱 설치 관리자 Microsoft Store 원본 고정 인증서 바이패스 사용</value>
</data>
<data name="PolicyEnableLocalArchiveMalwareScanOverride" xml:space="preserve">
<value>Windows 앱 설치 관리자 로컬 보관 맬웨어 검사 재정의 사용</value>
</data>
<data name="SettingsWarningField" xml:space="preserve">
<value>필드: {0}</value>
<comment>{Locked="{0}"} Warning message displayed when a user setting field has invalid syntax or semantics. {0} is a placeholder replaced by the setting field path.</comment>
</data>
<data name="SettingsWarningInvalidFieldFormat" xml:space="preserve">
<value>잘못된 필드 형식입니다.</value>
</data>
<data name="SettingsWarningInvalidFieldValue" xml:space="preserve">
<value>잘못된 필드 값</value>
</data>
<data name="SettingsWarningInvalidValueFromPolicy" xml:space="preserve">
<value>그룹 정책에서 잘못된 설정</value>
</data>
<data name="SettingsWarningLoadedBackupSettings" xml:space="preserve">
<value>백업 파일의 설정이 로드된 경우</value>
</data>
<data name="SettingsWarningParseError" xml:space="preserve">
<value>오류 구문 분석 파일:</value>
</data>
<data name="SettingsWarningValue" xml:space="preserve">
<value>값: {0}</value>
<comment>{Locked="{0}"} Warning message displayed when a user setting value has invalid syntax or semantics. {0} is a placeholder replaced by the setting data value.</comment>
</data>
<data name="FeaturesMessageDisabledByPolicy" xml:space="preserve">
<value>다음 실험적 기능이 진행 중입니다.
그룹 정책으로 인해 구성을 사용할 수 없습니다.</value>
</data>
<data name="InstallerHashMismatchError" xml:space="preserve">
<value>설치 관리자 해시가 일치하지 않습니다.</value>
</data>
<data name="PolicyEnableHashOverride" xml:space="preserve">
<value>Windows 앱 설치 관리자 해시 재정의 사용</value>
</data>
<data name="SourceExportCommandLongDescription" xml:space="preserve">
<value>현재 원본을 그룹 정책에 대한 JSON으로 내보냅니다.</value>
</data>
<data name="SourceExportCommandShortDescription" xml:space="preserve">
<value>현재 원본 내보내기</value>
</data>
<data name="SourceListAdditionalSource" xml:space="preserve">
<value>추가 원본</value>
<comment>An additional source required by policy.</comment>
</data>
<data name="SourceListAllowedSource" xml:space="preserve">
<value>허용된 원본</value>
<comment>A source that the user is allowed to add.</comment>
</data>
<data name="InvalidArgumentValueErrorWithoutValidValues" xml:space="preserve">
<value>'{0}' 인수에 제공된 값이 잘못되었습니다.</value>
<comment>{Locked="{0}"} Error message displayed when the user provides an invalid command line argument value. {0} is a placeholder replaced by the argument name.</comment>
</data>
<data name="Cancelled" xml:space="preserve">
<value>취소됨</value>
</data>
<data name="ExternalDependencies" xml:space="preserve">
<value>외부</value>
</data>
<data name="ImportCommandReportDependencies" xml:space="preserve">
<value>이 가져오기에서 찾은 패키지에는 다음과 같은 종속성이 있습니다.</value>
<comment>Import command sentence showed before reporting dependencies</comment>
</data>
<data name="PackageRequiresDependencies" xml:space="preserve">
<value>이 패키지에는 다음 종속성이 필요합니다.</value>
<comment>Message shown before reporting dependencies</comment>
</data>
<data name="DependenciesFlowInstall" xml:space="preserve">
<value>종속성 설치 중:</value>
</data>
<data name="DependenciesFlowSourceNotFound" xml:space="preserve">
<value>종속성 원본을 찾을 수 없음</value>
</data>
<data name="DependenciesFlowSourceTooManyMatches" xml:space="preserve">
<value>패키지 검색 결과 두 개 이상 생성: {0}</value>