-
Notifications
You must be signed in to change notification settings - Fork 748
Expand file tree
/
Copy pathNuGetCommand.ko.xlf
More file actions
1345 lines (1259 loc) · 84.3 KB
/
NuGetCommand.ko.xlf
File metadata and controls
1345 lines (1259 loc) · 84.3 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"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="ko" original="../NuGetCommand.resx">
<body>
<trans-unit id="AddCommandDescription">
<source>Adds the given package to a hierarchical source. http sources are not supported. For more info, goto https://docs.nuget.org/consume/command-line-reference#add-command.</source>
<target state="translated">지정된 패키지를 계층적 원본에 추가합니다. http 원본은 지원되지 않습니다. 자세한 내용을 확인하려면 https://docs.nuget.org/consume/command-line-reference#add-command으로 이동하세요.</target>
<note />
</trans-unit>
<trans-unit id="AddCommandSourceDescription">
<source>Specifies the package source, which is a folder or UNC share, to which the nupkg will be added. Http sources are not supported.</source>
<target state="translated">nupkg를 추가할 폴더 또는 UNC 공유인 패키지 원본을 지정합니다. Http 원본은 지원되지 않습니다.</target>
<note />
</trans-unit>
<trans-unit id="AddCommandUsageDescription">
<source>Specifies the path to the package to be added and the package source, which is a folder or UNC share, to which the nupkg will be added. Http sources are not supported.</source>
<target state="translated">추가할 패키지의 경로와 nupkg가 추가될 폴더 또는 UNC 공유인 패키지 원본을 지정합니다. Http 원본은 지원되지 않습니다.</target>
<note />
</trans-unit>
<trans-unit id="AddCommandUsageExamples">
<source>nuget add foo.nupkg -Source c:\bar\
nuget add foo.nupkg -Source \\bar\packages\</source>
<target state="translated">nuget add foo.nupkg -Source c:\bar\
nuget add foo.nupkg -Source \\bar\packages\</target>
<note />
</trans-unit>
<trans-unit id="AddCommandUsageSummary">
<source><packagePath> -Source <folderBasedPackageSource> [options]</source>
<target state="translated"><packagePath> -원본 <folderBasedPackageSource> [옵션]</target>
<note />
</trans-unit>
<trans-unit id="ClientCertificatesCommandFilePathDescription">
<source>Path to certificate file.</source>
<target state="translated">인증서 파일의 경로.</target>
<note />
</trans-unit>
<trans-unit id="ClientCertificatesCommandFindByDescription">
<source>Search method to find certificate in certificate store (see docs).</source>
<target state="translated">인증서 저장소에서 인증서를 찾을 수 있는 검색 방법(문서 참조).</target>
<note />
</trans-unit>
<trans-unit id="ClientCertificatesCommandFindValueDescription">
<source>Search the certificate store for the supplied value. Used with FindValue (see docs).</source>
<target state="translated">인증서 저장소에서 제공된 값을 검색합니다. FindValue와 함께 사용합니다(문서 참조).</target>
<note>Don't translate FindValue</note>
</trans-unit>
<trans-unit id="ClientCertificatesCommandForceDescription">
<source>Skip certificate validation.</source>
<target state="translated">인증서 유효성 검사를 건너뜁니다.</target>
<note />
</trans-unit>
<trans-unit id="ClientCertificatesCommandPackageSourceDescription">
<source>Package source name.</source>
<target state="translated">패키지 원본 이름.</target>
<note />
</trans-unit>
<trans-unit id="ClientCertificatesCommandPasswordDescription">
<source>Password for the certificate, if needed.</source>
<target state="translated">인증서 암호(필요한 경우).</target>
<note />
</trans-unit>
<trans-unit id="ClientCertificatesCommandStoreLocationDescription">
<source>Certificate store location (see docs).</source>
<target state="translated">인증서 저장소 위치(문서 참조).</target>
<note />
</trans-unit>
<trans-unit id="ClientCertificatesCommandStoreNameDescription">
<source>Certificate store name (see docs).</source>
<target state="translated">인증서 저장소 이름(문서 참조).</target>
<note />
</trans-unit>
<trans-unit id="ClientCertificatesCommandStorePasswordInClearTextDescription">
<source>Enables storing portable certificate password by disabling password encryption.</source>
<target state="translated">암호 암호화를 비활성화하여 휴대용 인증서 암호 저장을 활성화합니다.</target>
<note />
</trans-unit>
<trans-unit id="ClientCertificatesCommandUsageExamples">
<source>nuget client-certs Add -PackageSource Foo -Path .\MyCertificate.pfx
nuget client-certs Add -PackageSource Contoso -Path c:\MyCertificate.pfx -Password 42
nuget client-certs Add -PackageSource Foo -FindValue ca4e7b265780fc87f3cb90b6b89c54bf4341e755
nuget client-certs Add -PackageSource Contoso -StoreLocation LocalMachine -StoreName My -FindBy Thumbprint -FindValue ca4e7b265780fc87f3cb90b6b89c54bf4341e755
nuget client-certs Update -PackageSource Foo -FindValue ca4e7b265780fc87f3cb90b6b89c54bf4341e755
nuget client-certs Remove -PackageSource certificateName
nuget client-certs
nuget client-certs List</source>
<target state="translated">nuget client-certs Add -PackageSource Foo -Path .\MyCertificate.pfx
nuget client-certs Add -PackageSource Contoso -Path c:\MyCertificate.pfx -Password 42
nuget client-certs Add -PackageSource Foo -FindValue ca4e7b265780fc87f3cb90b6b89c54bf4341e755
nuget client-certs Add -PackageSource Contoso -StoreLocation LocalMachine -StoreName My -FindBy Thumbprint -FindValue ca4e7b265780fc87f3cb90b6b89c54bf4341e755
nuget client-certs Update -PackageSource Foo -FindValue ca4e7b265780fc87f3cb90b6b89c54bf4341e755
nuget client-certs Remove -PackageSource certificateName
nuget client-certs
nuget client-certs List</target>
<note />
</trans-unit>
<trans-unit id="ClientCertificatesCommandUsageSummary">
<source><List|Add|Update|Remove> [options]</source>
<target state="translated"><List|Add|Update|Remove> [옵션]</target>
<note />
</trans-unit>
<trans-unit id="ClientCertificatesDescription">
<source>Provides the ability to manage list of client certificates located in NuGet.config files</source>
<target state="translated">NuGet.config 파일에 있는 클라이언트 인증서 목록을 관리하는 기능을 제공합니다.</target>
<note />
</trans-unit>
<trans-unit id="CommandApiKey">
<source>The API key for the server. If not set, the NUGET_API_KEY environment variable is read.</source>
<target state="translated">서버의 API 키입니다. 설정하지 않으면 NUGET_API_KEY 환경 변수를 사용합니다.</target>
<note />
</trans-unit>
<trans-unit id="CommandDirectDownload">
<source>Download directly without populating any caches with metadata or binaries.</source>
<target state="translated">메타데이터 또는 이진 파일로 캐시를 채우지 않고 직접 다운로드합니다.</target>
<note />
</trans-unit>
<trans-unit id="CommandDisableParallelProcessing">
<source>Disable parallel processing of packages for this command.</source>
<target state="translated">이 명령에 대해 패키지의 병렬 처리를 사용하지 않도록 설정합니다.</target>
<note />
</trans-unit>
<trans-unit id="CommandFallbackSourceDescription">
<source>A list of package sources to use as fallbacks for this command.</source>
<target state="translated">이 명령의 대체로 사용할 패키지 원본 목록입니다.</target>
<note />
</trans-unit>
<trans-unit id="CommandInvalidArgumentException">
<source>Invalid value provided for '{0}'. For a list of accepted values, please visit https://docs.nuget.org/docs/reference/command-line-reference</source>
<target state="translated">'{0}'에 잘못된 값이 제공되었습니다. 허용되는 값 목록은 https://docs.nuget.org/docs/reference/command-line-reference를 참조하세요.</target>
<note>{0} - argument name</note>
</trans-unit>
<trans-unit id="CommandMSBuildPath">
<source>Specifies the path of MSBuild to be used with this command. This command will takes precedence over MSbuildVersion, nuget will always pick MSbuild from this specified path.</source>
<target state="translated">이 명령에 사용할 MSBuild의 경로를 지정합니다. 이 명령은 MSbuildVersion보다 우선합니다. nuget은 항상 지정된 경로에서 MSbuild를 선택합니다.</target>
<note />
</trans-unit>
<trans-unit id="CommandMSBuildVersion">
<source>Specifies the version of MSBuild to be used with this command. Supported values are 4, 12, 14, 15.1, 15.3, 15.4, 15.5, 15.6, 15.7, 15.8, 15.9, 16.0. By default the MSBuild in your path is picked, otherwise it defaults to the highest installed version of MSBuild.</source>
<target state="translated">이 명령과 함께 사용할 MSBuild의 버전을 지정합니다. 지원되는 값은 4, 12, 14, 15.1, 15.3, 15.4, 15.5, 15.6, 15.7, 15.8, 15.9, 16.0입니다. 기본적으로 경로의 MSBuild가 선택되고, 그렇지 않으면 기본적으로 설치된 가장 높은 MSBuild 버전이 사용됩니다.</target>
<note />
</trans-unit>
<trans-unit id="CommandNoCache">
<source>Disable using the machine cache as the first package source.</source>
<target state="translated">컴퓨터 캐시를 첫 번째 패키지 원본으로 사용하지 않도록 설정합니다.</target>
<note />
</trans-unit>
<trans-unit id="CommandNoHttpCache">
<source>Disable the use of the HTTP cache and contact all configured package sources for live information.</source>
<target state="translated">HTTP 캐시 사용을 사용하지 않도록 설정하고 구성된 모든 패키지 원본에 라이브 정보를 문의합니다.</target>
<note />
</trans-unit>
<trans-unit id="CommandNoServiceEndpointDescription">
<source>Does not append "api/v2/packages" to the source URL.</source>
<target state="translated">원본 URL에 "api/v2/packages"를 추가하지 않습니다.</target>
<note />
</trans-unit>
<trans-unit id="CommandPackageSaveMode">
<source>Specifies types of files to save after package installation: nuspec, nupkg, nuspec;nupkg.</source>
<target state="translated">패키지 설치 후 저장할 파일 유형(nuspec, nupkg, nuspec;nupkg)을 지정합니다.</target>
<note />
</trans-unit>
<trans-unit id="CommandSourceDescription">
<source>A list of packages sources to use for this command.</source>
<target state="translated">이 명령에 사용할 패키지 원본 목록입니다.</target>
<note />
</trans-unit>
<trans-unit id="ConfigCommandAsPathDesc">
<source>Returns the config value as a path. This option is ignored when -Set is specified.</source>
<target state="translated">구성 값을 경로로 반환합니다. -Set을 지정하면 이 옵션이 무시됩니다.</target>
<note>Pease don't localize "-Set"</note>
</trans-unit>
<trans-unit id="ConfigCommandDesc">
<source>Gets or sets NuGet config values.</source>
<target state="translated">NuGet 구성 값을 가져오거나 설정합니다.</target>
<note />
</trans-unit>
<trans-unit id="ConfigCommandExamples">
<source>nuget config -Set HTTP_PROXY=http://127.0.0.1 -Set HTTP_PROXY.USER=domain\user
nuget config HTTP_PROXY</source>
<target state="translated">nuget config -Set HTTP_PROXY=http://127.0.0.1 -Set HTTP_PROXY.USER=domain\user
nuget config HTTP_PROXY</target>
<note>Please don't localize this string</note>
</trans-unit>
<trans-unit id="ConfigCommandSetDesc">
<source>One on more key-value pairs to be set in config.</source>
<target state="translated">하나 이상의 키-값 쌍이 config에 설정됩니다.</target>
<note />
</trans-unit>
<trans-unit id="ConfigCommandSummary">
<source><-Set name=value | name></source>
<target state="translated"><-설정 이름=값 | 이름></target>
<note>Please don't localize this string</note>
</trans-unit>
<trans-unit id="DefaultConfigDescription">
<source>NuGet's default configuration is obtained by loading %AppData%\NuGet\NuGet.config, then loading any nuget.config or .nuget\nuget.config starting from root of drive and ending in current directory.</source>
<target state="translated">NuGet의 기본 구성은 %AppData%\NuGet\NuGet.config를 로드한 다음 드라이브 루트에서 시작하여 현재 디렉터리에서 끝나는 모든 nuget.config 또는 .nuget\nuget.config를 로드하여 가져옵니다.</target>
<note>Please don't localize "%AppData%\NuGet\NuGet.config", "nuget.config", ".nuget\nuget.config"</note>
</trans-unit>
<trans-unit id="DeleteCommandDescription">
<source>Deletes a package from the server.</source>
<target state="translated">서버에서 패키지를 삭제합니다.</target>
<note />
</trans-unit>
<trans-unit id="DeleteCommandNoPromptDescription">
<source>Do not prompt when deleting.</source>
<target state="translated">삭제할 때 메시지를 표시하지 않음</target>
<note />
</trans-unit>
<trans-unit id="DeleteCommandSourceDescription">
<source>Package source (URL, UNC/folder path or package source name) to delete from. Defaults to DefaultPushSource if specified in NuGet.Config.</source>
<target state="translated">삭제할 패키지 원본(URL, UNC/폴더 경로 또는 패키지 원본 이름)입니다. NuGet.Config에 지정된 경우 기본값은 DefaultPushSource입니다.</target>
<note />
</trans-unit>
<trans-unit id="DeleteCommandUsageDescription">
<source>Specify the Id and version of the package to delete from the server.</source>
<target state="translated">서버에서 삭제할 패키지의 ID와 버전을 지정합니다.</target>
<note />
</trans-unit>
<trans-unit id="DeleteCommandUsageExamples">
<source>nuget delete MyPackage 1.0
nuget delete MyPackage 1.0 -NoPrompt</source>
<target state="translated">nuget delete MyPackage 1.0
nuget delete MyPackage 1.0 -NoPrompt</target>
<note>Please don't localize this string</note>
</trans-unit>
<trans-unit id="DeleteCommandUsageSummary">
<source><package Id> <package version> [API Key] [options]</source>
<target state="translated"><package Id> <package version> [API 키] [옵션]</target>
<note />
</trans-unit>
<trans-unit id="EulaDescription">
<source>Display NuGet.exe's End User Liscence Agreement (EULA)</source>
<target state="translated">NuGet.exe EULA(최종 사용자 Liscence Agreement) 표시</target>
<note />
</trans-unit>
<trans-unit id="ExpandDescription">
<source>If provided, a package added to offline feed is also expanded.</source>
<target state="translated">제공된 경우 오프라인 피드에 추가된 패키지도 확장됩니다.</target>
<note />
</trans-unit>
<trans-unit id="ForceRestoreCommand">
<source>Forces all dependencies to be resolved even if the last restore was successful. This is equivalent to deleting project.assets.json. (Does not apply to packages.config)</source>
<target state="translated">마지막 복원이 성공한 경우에도 모든 종속성을 강제로 해결합니다. project.assets.json을 삭제하는 것과 같습니다. (packages.config에는 적용되지 않음)</target>
<note />
</trans-unit>
<trans-unit id="HelpCommandAll">
<source>Print detailed help for all available commands.</source>
<target state="translated">사용 가능한 모든 명령에 대한 자세한 도움말을 인쇄합니다.</target>
<note />
</trans-unit>
<trans-unit id="HelpCommandDescription">
<source>Displays general help information and help information about other commands.</source>
<target state="translated">일반 도움말 정보 및 기타 명령에 대한 도움말 정보를 표시합니다.</target>
<note />
</trans-unit>
<trans-unit id="HelpCommandMarkdown">
<source>Print detailed all help in markdown format.</source>
<target state="translated">자세한 모든 도움말을 Markdown 형식으로 인쇄하세요.</target>
<note />
</trans-unit>
<trans-unit id="HelpCommandUsageDescription">
<source>Pass a command name to display help information for that command.</source>
<target state="translated">해당 명령에 대한 도움말 정보를 표시하려면 명령 이름을 전달하세요.</target>
<note />
</trans-unit>
<trans-unit id="HelpCommandUsageExamples">
<source>nuget help
nuget help push
nuget ?
nuget push -?</source>
<target state="translated">nuget 도움말
nuget 도움말 푸시
nuget ?
nuget 푸시 -?</target>
<note>Please don't localize this string</note>
</trans-unit>
<trans-unit id="HelpCommandUsageSummary">
<source>[command]</source>
<target state="translated">[명령]</target>
<note />
</trans-unit>
<trans-unit id="HelpCommand_Alias">
<source>alias: {0}</source>
<target state="translated">별칭: {0}</target>
<note>{0} - short command name (not localizable)</note>
</trans-unit>
<trans-unit id="HelpCommand_AltText">
<source> ({0})</source>
<target state="translated"> ({0})</target>
<note>{0} - command alternative name (not localizable); do not localize this string</note>
</trans-unit>
<trans-unit id="HelpCommand_AvailableCommands">
<source>Available commands:</source>
<target state="translated">사용 가능한 명령:</target>
<note />
</trans-unit>
<trans-unit id="HelpCommand_Examples">
<source>examples:</source>
<target state="translated">예:</target>
<note />
</trans-unit>
<trans-unit id="HelpCommand_Options">
<source>options:</source>
<target state="translated">옵션:</target>
<note />
</trans-unit>
<trans-unit id="HelpCommand_Suggestion">
<source>Type '{0} help <command>' for help on a specific command.</source>
<target state="translated">특정 명령에 대한 도움말을 보려면 '{0} 도움말 <command>'를 입력합니다.</target>
<note>{0} - executable name: nuget.exe; Don't localize text enclosed in single quotes: '{0} help command'</note>
</trans-unit>
<trans-unit id="HelpCommand_Title">
<source>{0} Command</source>
<target state="translated">{0} 명령</target>
<note>{0} - command name (not localizable)</note>
</trans-unit>
<trans-unit id="HelpCommand_Usage">
<source>usage: {0} <command> [args] [options]</source>
<target state="translated">사용법: {0} <command> [args] [options]</target>
<note>{0} - executable name: nuget.exe; Don't localize '<command> [args] [options]'</note>
</trans-unit>
<trans-unit id="HelpCommand_UsageDetail">
<source>usage: {0} {1} {2}</source>
<target state="translated">사용법: {0} {1} {2}</target>
<note>{0} - executable name: nuget.exe; {1} - command name (not localizable); {2} - command summary description</note>
</trans-unit>
<trans-unit id="InitCommandDescription">
<source>Adds all the packages from the <srcPackageSourcePath> to the hierarchical <destPackageSourcePath>. http feeds are not supported. For more info, goto https://docs.nuget.org/consume/command-line-reference#init-command.</source>
<target state="translated"><srcPackageSourcePath>의 모든 패키지를 계층적 <destPackageSourcePath>에 추가합니다. http 피드는 지원되지 않습니다. 자세한 내용을 확인하려면 https://docs.nuget.org/consume/command-line-reference#init-command로 이동하세요.</target>
<note />
</trans-unit>
<trans-unit id="InitCommandUsageDescription">
<source>Specify the path to source package source to be copied from and the path to the destination package source to be copied to.</source>
<target state="translated">복사할 원본 패키지 원본의 경로와 복사할 대상 패키지 원본의 경로를 지정합니다.</target>
<note />
</trans-unit>
<trans-unit id="InitCommandUsageExamples">
<source>nuget init c:\foo c:\bar
nuget init \\foo\packages \\bar\packages</source>
<target state="translated">nuget init c:\foo c:\bar
nuget init \\foo\packages \\bar\packages</target>
<note />
</trans-unit>
<trans-unit id="InitCommandUsageSummary">
<source><srcPackageSourcePath> <destPackageSourcePath> [options]</source>
<target state="translated"><srcPackageSourcePath> <destPackageSourcePath> [옵션]</target>
<note />
</trans-unit>
<trans-unit id="InstallCommandDependencyVersion">
<source>Overrides the default dependency resolution behavior.</source>
<target state="translated">기본 종속성 확인 동작을 재정의합니다.</target>
<note />
</trans-unit>
<trans-unit id="InstallCommandDescription">
<source>Installs a package using the specified sources. If no sources are specified, all sources defined in the NuGet configuration file are used. If the configuration file specifies no sources, uses the default NuGet feed.</source>
<target state="translated">지정된 원본을 사용하여 패키지를 설치합니다. 원본을 지정하지 않으면 NuGet 구성 파일에 정의된 모든 원본이 사용됩니다. 구성 파일이 원본을 지정하지 않으면 기본 NuGet 피드를 사용합니다.</target>
<note />
</trans-unit>
<trans-unit id="InstallCommandExcludeVersionDescription">
<source>If set, the destination folder will contain only the package name, not the version number</source>
<target state="translated">설정하면 대상 폴더에는 버전 번호가 아닌 패키지 이름만 포함됩니다.</target>
<note />
</trans-unit>
<trans-unit id="InstallCommandFrameworkDescription">
<source>Target framework used for selecting dependencies. Defaults to 'Any' if not specified.</source>
<target state="translated">종속성을 선택하는 데 사용되는 대상 프레임워크입니다. 지정하지 않으면 기본값은 '임의'입니다.</target>
<note />
</trans-unit>
<trans-unit id="InstallCommandOutputDirDescription">
<source>Specifies the directory in which packages will be installed. If none specified, uses the current directory.</source>
<target state="translated">패키지가 설치될 디렉터리를 지정합니다. 지정되지 않은 경우 현재 디렉터리를 사용합니다.</target>
<note />
</trans-unit>
<trans-unit id="InstallCommandPrerelease">
<source>Allows prerelease packages to be installed. This flag is not required when restoring packages by installing from packages.config.</source>
<target state="translated">시험판 패키지를 설치할 수 있습니다. packages.config에서 설치하여 패키지를 복원할 때는 이 플래그가 필요하지 않습니다.</target>
<note>Please don't localize "packages.config".</note>
</trans-unit>
<trans-unit id="InstallCommandRequireConsent">
<source>Checks if package restore consent is granted before installing a package.</source>
<target state="translated">패키지를 설치하기 전에 패키지 복원 동의를 받았는지 확인합니다.</target>
<note />
</trans-unit>
<trans-unit id="InstallCommandSolutionDirectory">
<source>Solution root for package restore.</source>
<target state="translated">패키지 복원을 위한 솔루션 루트입니다.</target>
<note />
</trans-unit>
<trans-unit id="InstallCommandUsageDescription">
<source>Specify the id and optionally the version of the package to install. If a path to a packages.config file is used instead of an id, all the packages it contains are installed.</source>
<target state="translated">설치할 패키지의 버전과 ID를 지정합니다. id 대신 packages.config 파일의 경로를 사용하면 여기에 포함된 모든 패키지가 설치됩니다.</target>
<note>Please don't localize "packages.config".</note>
</trans-unit>
<trans-unit id="InstallCommandUsageExamples">
<source>nuget install elmah
nuget install packages.config
nuget install ninject -o c:\foo</source>
<target state="translated">nuget install elmah
nuget install packages.config
nuget install ninject -o c:\foo</target>
<note>Please don't localize this string</note>
</trans-unit>
<trans-unit id="InstallCommandUsageSummary">
<source>packageId|pathToPackagesConfig [options]</source>
<target state="translated">packageId|pathToPackagesConfig [옵션]</target>
<note />
</trans-unit>
<trans-unit id="InstallCommandVersionDescription">
<source>The version of the package to install.</source>
<target state="translated">설치할 패키지의 버전입니다.</target>
<note />
</trans-unit>
<trans-unit id="ListCommandAllVersionsDescription">
<source>List all versions of a package. By default, only the latest package version is displayed.</source>
<target state="translated">패키지의 모든 버전을 나열합니다. 기본적으로 최신 패키지 버전만 표시됩니다.</target>
<note />
</trans-unit>
<trans-unit id="ListCommandDescription">
<source>Displays a list of packages from a given source. If no sources are specified, all sources defined in %AppData%\NuGet\NuGet.config are used. If NuGet.config specifies no sources, uses the default NuGet feed.</source>
<target state="translated">지정된 원본의 패키지 목록을 표시합니다. 원본을 지정하지 않으면 %AppData%\NuGet\NuGet.config에 정의된 모든 원본이 사용됩니다. NuGet.config가 원본을 지정하지 않으면 기본 NuGet 피드를 사용합니다.</target>
<note>Please don't localize "%AppData%\NuGet\NuGet.config", "NuGet.config".</note>
</trans-unit>
<trans-unit id="ListCommandIncludeDelisted">
<source>Allow unlisted packages to be shown.</source>
<target state="translated">목록에 없는 패키지가 표시되도록 허용합니다.</target>
<note />
</trans-unit>
<trans-unit id="ListCommandPrerelease">
<source>Allow prerelease packages to be shown.</source>
<target state="translated">시험판 패키지가 표시되도록 허용합니다.</target>
<note />
</trans-unit>
<trans-unit id="ListCommandSourceDescription">
<source>A list of packages sources to search.</source>
<target state="translated">검색할 패키지 원본 목록입니다.</target>
<note />
</trans-unit>
<trans-unit id="ListCommandUsageDescription">
<source>Specify optional search terms.</source>
<target state="translated">선택적 검색어를 지정합니다.</target>
<note />
</trans-unit>
<trans-unit id="ListCommandUsageExamples">
<source>nuget list
nuget list -verbose -allversions</source>
<target state="translated">nuget list
nuget list -verbose -allversions</target>
<note>Please don't localize this string</note>
</trans-unit>
<trans-unit id="ListCommandUsageSummary">
<source>[search terms] [options]</source>
<target state="translated">[검색어] [옵션]</target>
<note />
</trans-unit>
<trans-unit id="ListCommandVerboseListDescription">
<source>Displays a detailed list of information for each package.</source>
<target state="translated">각 패키지에 대한 세부 정보 목록을 표시합니다.</target>
<note />
</trans-unit>
<trans-unit id="LocalsCommandClearDescription">
<source>Clear the selected local resources or cache location(s).</source>
<target state="translated">선택한 로컬 리소스 또는 캐시 위치를 지웁니다.</target>
<note />
</trans-unit>
<trans-unit id="LocalsCommandDescription">
<source>Clears or lists local NuGet resources such as http requests cache, temp cache or machine-wide global packages folder.</source>
<target state="translated">http 요청 캐시, 임시 캐시 또는 컴퓨터 전체의 전역 패키지 폴더와 같은 로컬 NuGet 리소스를 지우거나 나열합니다.</target>
<note />
</trans-unit>
<trans-unit id="LocalsCommandExamples">
<source>nuget locals all -clear
nuget locals http-cache -clear
nuget locals temp -list
nuget locals global-packages -list</source>
<target state="translated">nuget locals all -clear
nuget locals http-cache -clear
nuget locals temp -list
nuget locals global-packages -list</target>
<note>Please don't localize this string</note>
</trans-unit>
<trans-unit id="LocalsCommandListDescription">
<source>List the selected local resources or cache location(s).</source>
<target state="translated">선택한 로컬 리소스 또는 캐시 위치의 목록입니다.</target>
<note />
</trans-unit>
<trans-unit id="LocalsCommandSummary">
<source><all | http-cache | global-packages | temp | plugins-cache> [-clear | -list]</source>
<target state="translated"><모두 | http 캐시 | 글로벌 패키지 | 온도 | 플러그인 캐시> [-clear | -목록]</target>
<note>Please don't localize this string</note>
</trans-unit>
<trans-unit id="Log_RestoreNoCacheInformation">
<source>NoCache is deprecated and has been renamed to NoHttpCache. Please use NoHttpCache instead.</source>
<target state="translated">NoCache는 더 이상 사용되지 않으며 NoHttpCache로 이름이 바뀌었습니다. 대신 NoHttpCache를 사용하세요.</target>
<note>Do not translate NoCache and NoHttpCache</note>
</trans-unit>
<trans-unit id="Option_ConfigFile">
<source>The NuGet configuration file. If specified, only the settings from this file will be used. If not specified, the hierarchy of configuration files from the current directory will be used. To learn more about NuGet configuration go to https://docs.microsoft.com/en-us/nuget/consume-packages/configuring-nuget-behavior.</source>
<target state="translated">NuGet 구성 파일입니다. 지정한 경우 이 파일의 설정만 사용됩니다. 지정하지 않으면 현재 디렉터리의 구성 파일 계층 구조가 사용됩니다. NuGet 구성에 대한 자세한 정보는 https://docs.microsoft.com/en-us/nuget/consume-packages/configuring-nuget-behavior를 참조하세요.</target>
<note />
</trans-unit>
<trans-unit id="Option_ForceEnglishOutput">
<source>Forces the application to run using an invariant, English-based culture.</source>
<target state="translated">고정 영어 기반 문화권을 사용하여 애플리케이션을 강제로 실행합니다.</target>
<note />
</trans-unit>
<trans-unit id="Option_Help">
<source>Show command help and usage information.</source>
<target state="translated">명령 도움말과 사용 정보를 표시합니다.</target>
<note />
</trans-unit>
<trans-unit id="Option_NonInteractive">
<source>Do not prompt for user input or confirmations.</source>
<target state="translated">사용자 입력을 요청하거나 확인을 묻는 메시지를 표시하지 않습니다.</target>
<note />
</trans-unit>
<trans-unit id="Option_Verbosity">
<source>Display this amount of details in the output: normal, quiet, detailed.</source>
<target state="translated">출력에 이 정도의 세부 정보를 표시합니다. 일반, 조용함, 상세.</target>
<note>Please don't localize "normal", "quiet", "detailed"</note>
</trans-unit>
<trans-unit id="PackCommandUsageExamples">
<source>nuget pack
nuget pack foo.nuspec
nuget pack foo.csproj
nuget pack foo.csproj -Build -Symbols -Properties Configuration=Release
nuget pack foo.nuspec -Version 2.1.0</source>
<target state="translated">nuget pack
nuget pack foo.nuspec
nuget pack foo.csproj
nuget pack foo.csproj -Build -Symbols -Properties Configuration=Release
nuget pack foo.nuspec -Version 2.1.0</target>
<note>Please don't localize this string</note>
</trans-unit>
<trans-unit id="PackageCommandBasePathDescription">
<source>The base path of the files defined in the nuspec file.</source>
<target state="translated">nuspec 파일에 정의된 파일의 기본 경로입니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandBuildDescription">
<source>Determines if the project should be built before building the package.</source>
<target state="translated">패키지를 빌드하기 전에 프로젝트를 빌드해야 하는지 여부를 결정합니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandConfigFile">
<source>Specify the configuration file for the pack command.</source>
<target state="translated">pack 명령에 대한 구성 파일을 지정합니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandDescription">
<source>Creates a NuGet package based on the specified nuspec or project file.</source>
<target state="translated">지정된 nuspec 또는 프로젝트 파일을 기반으로 NuGet 패키지를 만듭니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandDeterministic">
<source>Specify if the command should create a deterministic package. Multiple invocations of the pack command will create the exact same package.</source>
<target state="translated">명령이 결정적 패키지를 생성해야 하는지 여부를 지정합니다. pack 명령을 여러 번 호출하면 정확히 동일한 패키지가 생성됩니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandExcludeDescription">
<source>Specifies one or more wildcard patterns to exclude when creating a package.</source>
<target state="translated">패키지를 만들 때 제외할 와일드카드 패턴을 하나 이상 지정합니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandExcludeEmptyDirectories">
<source>Prevent inclusion of empty directories when building the package.</source>
<target state="translated">패키지를 빌드할 때 빈 디렉터리를 포함하지 않도록 합니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandIncludeReferencedProjects">
<source>Include referenced projects either as dependencies or as part of the package.</source>
<target state="translated">참조된 프로젝트를 종속성 또는 패키지의 일부로 포함합니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandInstallPackageToOutputPath">
<source>Specify if the command should prepare the package output directory to support share as feed.</source>
<target state="translated">명령이 피드로 공유를 지원하기 위해 패키지 출력 디렉터리를 준비해야 하는지 여부를 지정합니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandMinClientVersion">
<source>Set the minClientVersion attribute for the created package.</source>
<target state="translated">만든 패키지의 minClientVersion 특정을 설정합니다.</target>
<note>Please don't localize "minClientVersion"</note>
</trans-unit>
<trans-unit id="PackageCommandNoDefaultExcludes">
<source>Prevent default exclusion of NuGet package files and files and folders starting with a dot e.g. .svn.</source>
<target state="translated">NuGet 패키지 파일과 점으로 시작하는 파일 및 폴더(예: .svn)가 기본적으로 제외되지 않도록 합니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandNoRunAnalysis">
<source>Specify if the command should not run package analysis after building the package.</source>
<target state="translated">패키지를 빌드한 후 명령에서 패키지 분석을 실행하지 않아야 하는지 여부를 지정합니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandOutputDirDescription">
<source>Specifies the directory for the created NuGet package file. If not specified, uses the current directory.</source>
<target state="translated">생성된 NuGet 패키지 파일의 디렉터리를 지정합니다. 지정하지 않으면 현재 디렉터리를 사용합니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandOutputFileNamesWithoutVersion">
<source>Specify if the command should prepare the package output name without the version.</source>
<target state="translated">명령이 버전 없이 패키지 출력 이름을 준비해야 하는지 여부를 지정합니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandPackagesDirectory">
<source>Specifies the packages folder.</source>
<target state="translated">패키지 폴더를 지정합니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandPropertiesDescription">
<source>Provides the ability to specify a semicolon ";" delimited list of properties when creating a package.</source>
<target state="translated">세미콜론 ";"을 지정하는 기능을 제공합니다. 패키지를 만들 때 속성의 구분된 목록입니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandSolutionDirectory">
<source>Specifies the solution directory.</source>
<target state="translated">솔루션 디렉터리를 지정합니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandSuffixDescription">
<source>Appends a pre-release suffix to the internally generated version number.</source>
<target state="translated">내부적으로 생성된 버전 번호에 시험판 접미사를 추가합니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandSymbolPackageFormat">
<source>When creating a symbols package, allows to choose between the 'snupkg' and 'symbols.nupkg' format.</source>
<target state="translated">기호 패키지를 만들 때 'snupkg' 및 'symbols.nupkg' 형식 중에서 선택할 수 있습니다.</target>
<note>Do not localize snupkg and symbols.nupkg</note>
</trans-unit>
<trans-unit id="PackageCommandSymbolsDescription">
<source>Determines if a package containing sources and symbols should be created. When specified with a nuspec, creates a regular NuGet package file and the corresponding symbols package.</source>
<target state="translated">원본 및 기호가 포함된 패키지를 만들지 여부를 결정합니다. nuspec을 사용하여 지정하는 경우 일반 NuGet 패키지 파일 및 해당하는 기호 패키지를 만듭니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandToolDescription">
<source>Determines if the output files of the project should be in the tool folder. </source>
<target state="translated">프로젝트의 출력 파일이 도구 폴더에 있어야 하는지 여부를 결정합니다. </target>
<note />
</trans-unit>
<trans-unit id="PackageCommandUsageDescription">
<source>Specify the location of the nuspec or project file to create a package.</source>
<target state="translated">패키지를 만들기 위해 nuspec 또는 프로젝트 파일의 위치를 지정합니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandUsageSummary">
<source><nuspec | project> [options]</source>
<target state="translated"><nuspec | project> [옵션]</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandVerboseDescription">
<source>Shows verbose output for package building.</source>
<target state="translated">패키지 빌드에 대한 자세한 출력을 표시합니다.</target>
<note />
</trans-unit>
<trans-unit id="PackageCommandVersionDescription">
<source>Overrides the version number from the nuspec file.</source>
<target state="translated">nuspec 파일의 버전 번호를 재정의합니다.</target>
<note />
</trans-unit>
<trans-unit id="PushCommandAllowInsecureConnectionsDescription">
<source>Allows pushing to HTTP sources (insecure).</source>
<target state="translated">HTTP 원본으로 푸시할 수 있습니다(안전하지 않음).</target>
<note />
</trans-unit>
<trans-unit id="PushCommandDescription">
<source>Pushes a package to the server and publishes it.</source>
<target state="translated">패키지를 서버로 푸시하고 게시합니다.</target>
<note />
</trans-unit>
<trans-unit id="PushCommandDisableBufferingDescription">
<source>Disable buffering when pushing to an HTTP(S) server to decrease memory usage. Note that when this option is enabled, integrated windows authentication might not work.</source>
<target state="translated">HTTP(S) 서버로 푸시할 때 버퍼링을 비활성화하여 메모리 사용량을 줄이세요. 이 옵션을 활성화하면 Windows 통합 인증이 작동하지 않을 수 있습니다.</target>
<note />
</trans-unit>
<trans-unit id="PushCommandNoSymbolsDescription">
<source>If a symbols package exists, it will not be pushed to a symbol server.</source>
<target state="translated">기호 패키지가 있으면 기호 서버로 푸시되지 않습니다.</target>
<note />
</trans-unit>
<trans-unit id="PushCommandSkipDuplicateDescription">
<source>If a package and version already exists, skip it and continue with the next package in the push, if any.</source>
<target state="translated">패키지 및 버전이 이미 있는 경우 건너뛴 후 푸시에서 다음 패키지(있는 경우)를 계속합니다.</target>
<note />
</trans-unit>
<trans-unit id="PushCommandSourceDescription">
<source>Package source (URL, UNC/folder path or package source name) to push to. Defaults to DefaultPushSource if specified in NuGet.Config.</source>
<target state="translated">푸시할 패키지 원본(URL, UNC/폴더 경로 또는 패키지 원본 이름)입니다. NuGet.Config에 지정된 경우 기본값은 DefaultPushSource입니다.</target>
<note>Please don't localize "DefaultPushSource"</note>
</trans-unit>
<trans-unit id="PushCommandSymbolSourceDescription">
<source>Symbol server URL to push to.</source>
<target state="translated">푸시할 기호 서버 URL입니다.</target>
<note />
</trans-unit>
<trans-unit id="PushCommandTimeoutDescription">
<source>Timeout for pushing to a server in seconds. Defaults to 300 seconds (5 minutes).</source>
<target state="translated">서버에 푸시하기 위한 시간 제한(초)입니다. 기본값은 300초(5분)로 설정됩니다.</target>
<note />
</trans-unit>
<trans-unit id="PushCommandUsageDescription">
<source>Specify the path to the package and your API key to push the package to the server.</source>
<target state="translated">패키지를 서버로 푸시하기 위해 패키지 및 API 키의 경로를 지정합니다.</target>
<note />
</trans-unit>
<trans-unit id="PushCommandUsageExamples">
<source>nuget push foo.nupkg 4003d786-cc37-4004-bfdf-c4f3e8ef9b3a
nuget push foo.nupkg 4003d786-cc37-4004-bfdf-c4f3e8ef9b3a -src http://customsource/
nuget push foo.nupkg
nuget push foo.nupkg.symbols
nuget push foo.nupkg -Timeout 360</source>
<target state="translated">nuget push foo.nupkg 4003d786-cc37-4004-bfdf-c4f3e8ef9b3a
nuget push foo.nupkg 4003d786-cc37-4004-bfdf-c4f3e8ef9b3a -src http://customsource/
nuget push foo.nupkg
nuget push foo.nupkg.symbols
nuget push foo.nupkg -Timeout 360</target>
<note>Please don't localize this string</note>
</trans-unit>
<trans-unit id="PushCommandUsageSummary">
<source><package path> [API key] [options]</source>
<target state="translated"><package path> [API 키] [옵션]</target>
<note />
</trans-unit>
<trans-unit id="RestoreCommandDescription">
<source>Restores NuGet packages.</source>
<target state="translated">NuGet 패키지를 복원합니다.</target>
<note />
</trans-unit>
<trans-unit id="RestoreCommandForceEvaluate">
<source>Forces restore to reevaluate all dependencies even if a lock file already exists.</source>
<target state="translated">잠금 파일이 이미 존재하는 경우에도 모든 종속성을 다시 평가하기 위해 복원합니다.</target>
<note />
</trans-unit>
<trans-unit id="RestoreCommandLockFilePath">
<source>Output location where project lock file is written. By default, this is 'PROJECT_ROOT\packages.lock.json'.</source>
<target state="translated">프로젝트 잠금 파일이 기록되는 출력 위치입니다. 기본적으로 이는 'PROJECT_ROOT\packages.lock.json'입니다.</target>
<note />
</trans-unit>
<trans-unit id="RestoreCommandLockedMode">
<source>Don't allow updating project lock file.</source>
<target state="translated">프로젝트 잠금 파일 업데이트를 허용하지 않습니다.</target>
<note />
</trans-unit>
<trans-unit id="RestoreCommandP2PTimeOut">
<source>Timeout in seconds for resolving project to project references.</source>
<target state="translated">프로젝트 간 참조를 확인하기 위한 시간 초과(초)입니다.</target>
<note />
</trans-unit>
<trans-unit id="RestoreCommandPackagesDirectory">
<source>Specifies the packages folder.</source>
<target state="translated">패키지 폴더를 지정합니다.</target>
<note />
</trans-unit>
<trans-unit id="RestoreCommandRecursive">
<source>Restore all referenced projects for UWP and NETCore projects. This does not include packages.config projects.</source>
<target state="translated">UWP 및 NETCore 프로젝트에 대해 참조된 모든 프로젝트를 복원합니다. 여기에는 packages.config 프로젝트가 포함되지 않습니다.</target>
<note />
</trans-unit>
<trans-unit id="RestoreCommandRequireConsent">
<source>Checks if package restore consent is granted before installing a package.</source>
<target state="translated">패키지를 설치하기 전에 패키지 복원 동의를 받았는지 확인합니다.</target>
<note />
</trans-unit>
<trans-unit id="RestoreCommandSolutionDirectory">
<source>Specifies the solution directory. Not valid when restoring packages for a solution.</source>
<target state="translated">솔루션 디렉터리를 지정합니다. 솔루션에 대한 패키지를 복원할 때는 유효하지 않습니다.</target>
<note />
</trans-unit>
<trans-unit id="RestoreCommandUsageDescription">
<source>If a solution is specified, this command restores NuGet packages that are installed in the solution and in projects contained in the solution. Otherwise, the command restores packages listed in the specified packages.config file, Microsoft Build project, or project.json file.</source>
<target state="translated">솔루션이 지정된 경우 이 명령은 솔루션 및 솔루션에 포함된 프로젝트에 설치된 NuGet 패키지를 복원합니다. 그렇지 않으면 명령은 지정된 packages.config 파일, Microsoft Build 프로젝트 또는 project.json 파일에 나열된 패키지를 복원합니다.</target>
<note />
</trans-unit>
<trans-unit id="RestoreCommandUsageExamples">
<source>nuget restore MySolution.sln</source>
<target state="translated">너겟 복원 MySolution.sln</target>
<note>command line example, do not localize</note>
</trans-unit>
<trans-unit id="RestoreCommandUsageSummary">
<source>[<solution> | <packages.config file> | <Microsoft Build project>] [options]</source>
<target state="translated">[<solution> | <packages.config file> | <Microsoft Build project>] [옵션]</target>
<note>Please don't localize "packages.config"</note>
</trans-unit>
<trans-unit id="RestoreCommandUseLockFile">
<source>Enables project lock file to be generated and used with restore.</source>
<target state="translated">복원에 사용되고 생성될 프로젝트 잠금 파일을 사용합니다.</target>
<note />
</trans-unit>
<trans-unit id="SearchCommandDescription">
<source>Searches a given source using the query string provided. If no sources are specified, all sources defined in %AppData%\NuGet\NuGet.config are used.</source>
<target state="translated">제공된 쿼리 문자열을 사용하여 주어진 원본을 검색합니다. 원본을 지정하지 않으면 %AppData%\NuGet\NuGet.config에 정의된 모든 원본이 사용됩니다.</target>
<note>Please don't localize "%AppData%\NuGet\NuGet.config", "NuGet.config".</note>
</trans-unit>
<trans-unit id="SearchCommandPreRelease">
<source>Include prerelease packages.</source>
<target state="translated">시험판 패키지를 포함합니다.</target>
<note />
</trans-unit>
<trans-unit id="SearchCommandSourceDescription">
<source>The package source to search. You can pass multiple -Source options to search multiple package sources.</source>
<target state="translated">검색할 패키지 원본입니다. 여러 패키지 원본을 검색하기 위해 여러 -Source 옵션을 전달할 수 있습니다.</target>
<note />
</trans-unit>
<trans-unit id="SearchCommandTake">
<source>The number of results to return. The default value is 20.</source>
<target state="translated">반환할 결과 수입니다. 기본값은 20입니다.</target>
<note />
</trans-unit>
<trans-unit id="SearchCommandUsageDescription">
<source>Specify search terms.</source>
<target state="translated">검색어를 지정합니다.</target>
<note />
</trans-unit>
<trans-unit id="SearchCommandUsageExamples">
<source>nuget search foo
nuget search foo -Verbosity detailed
nuget search foo -PreRelease -Take 5</source>
<target state="translated">nuget search foo
nuget search foo -Verbosity detailed
nuget search foo -PreRelease -Take 5</target>
<note>Please don't localize this string</note>
</trans-unit>
<trans-unit id="SearchCommandUsageSummary">
<source>[search terms] [options]</source>
<target state="translated">[검색어] [옵션]</target>
<note />
</trans-unit>
<trans-unit id="SetApiKeyCommandDescription">
<source>Saves an API key for a given server URL. When no URL is provided API key is saved for the NuGet gallery.</source>
<target state="translated">주어진 서버 URL에 대한 API 키를 저장합니다. URL이 제공되지 않으면 NuGet 갤러리에 대한 API 키가 저장됩니다.</target>
<note />
</trans-unit>
<trans-unit id="SetApiKeyCommandSourceDescription">
<source>Server URL where the API key is valid.</source>
<target state="translated">API 키가 유효한 서버 URL입니다.</target>
<note />
</trans-unit>
<trans-unit id="SetApiKeyCommandUsageDescription">
<source>Specify the API key to save and an optional URL to the server that provided the API key.</source>
<target state="translated">저장할 API 키와 API 키를 제공한 서버에 대한 선택적 URL을 지정하세요.</target>
<note />
</trans-unit>
<trans-unit id="SetApiKeyCommandUsageExamples">
<source>nuget setapikey 4003d786-cc37-4004-bfdf-c4f3e8ef9b3a
nuget setapikey 4003d786-cc37-4004-bfdf-c4f3e8ef9b3a -Source http://example.com/nugetfeed</source>
<target state="translated">nuget setapikey 4003d786-cc37-4004-bfdf-c4f3e8ef9b3a
nuget setapikey 4003d786-cc37-4004-bfdf-c4f3e8ef9feedb3a -Source http://example.com</target>
<note>Please don't localize this string</note>
</trans-unit>
<trans-unit id="SetApiKeyCommandUsageSummary">
<source><API key> [options]</source>
<target state="translated"><API 키> [옵션]</target>
<note />
</trans-unit>
<trans-unit id="SignCommandAllowUntrustedRootDescription">
<source>Allow signing with certificates whose root certificate is not in a trusted root store. The certificate chain is still built and validated for structure, but UntrustedRoot status is treated as a warning.</source>
<target state="translated">루트 인증서가 신뢰할 수 있는 루트 저장소에 없는 인증서로 서명하는 것을 허용합니다. 인증서 체인은 여전히 구조에 대해 빌드되고 유효성이 검사되지만, UntrustedRoot 상태는 경고로 처리됩니다.</target>
<note />
</trans-unit>
<trans-unit id="SignCommandCertificateFingerprintDescription">
<source>SHA-256, SHA-384 or SHA-512 fingerprint of the certificate used to search a local certificate store for the certificate.
The certificate store can be specified by -CertificateStoreName and -CertificateStoreLocation options.</source>
<target state="translated">로컬 인증서 저장소에서 인증서를 검색하는 데 사용되는 인증서의 SHA-256, SHA-384 또는 SHA-512 지문입니다.
인증서 저장소는 -CertificateStoreName 및 -CertificateStoreLocation 옵션으로 지정할 수 있습니다.</target>
<note />
</trans-unit>
<trans-unit id="SignCommandCertificatePasswordDescription">
<source>Password for the certificate, if needed.
This option can be used to specify the password for the certificate. If no password is provided, the command will prompt for a password at run time, unless the -NonInteractive option is passed.</source>
<target state="translated">필요한 경우 인증서의 암호입니다.
이 옵션을 사용하여 인증서의 암호를 지정할 수 있습니다. 암호가 제공되지 않으면 -NonInteractive 옵션이 전달되지 않는 한 명령은 런타임에 암호를 묻는 메시지를 표시합니다.</target>
<note />
</trans-unit>
<trans-unit id="SignCommandCertificatePathDescription">
<source>File path to the certificate to be used while signing the package.</source>
<target state="translated">패키지에 서명하는 동안 사용할 인증서의 파일 경로입니다.</target>
<note />
</trans-unit>
<trans-unit id="SignCommandCertificateStoreLocationDescription">
<source>Name of the X.509 certificate store use to search for the certificate. Defaults to "CurrentUser", the X.509 certificate store used by the current user.
This option should be used when specifying the certificate via -CertificateSubjectName or -CertificateFingerprint options.</source>
<target state="translated">인증서를 검색하는 데 사용하는 X.509 인증서 저장소의 이름입니다. 기본값은 현재 사용자가 사용하는 X.509 인증서 저장소인 "CurrentUser"입니다.
이 옵션은 -CertificateSubjectName 또는 -CertificateFingerprint 옵션을 통해 인증서를 지정할 때 사용해야 합니다.</target>
<note />
</trans-unit>
<trans-unit id="SignCommandCertificateStoreNameDescription">
<source>Name of the X.509 certificate store to use to search for the certificate. Defaults to "My", the X.509 certificate store for personal certificates.
This option should be used when specifying the certificate via -CertificateSubjectName or -CertificateFingerprint options.</source>
<target state="translated">인증서를 검색하는 데 사용할 X.509 인증서 저장소의 이름입니다. 기본값은 개인 인증서용 X.509 인증서 저장소인 "My"입니다.
이 옵션은 -CertificateSubjectName 또는 -CertificateFingerprint 옵션을 통해 인증서를 지정할 때 사용해야 합니다.</target>
<note />
</trans-unit>
<trans-unit id="SignCommandCertificateSubjectNameDescription">
<source>Subject name of the certificate used to search a local certificate store for the certificate.
The search is a case-insensitive string comparison using the supplied value, which will find all certificates with the subject name containing that string, regardless of other subject values.
The certificate store can be specified by -CertificateStoreName and -CertificateStoreLocation options.</source>
<target state="translated">로컬 인증서 저장소에서 인증서를 검색하는 데 사용되는 인증서의 주체 이름입니다.
검색은 제공된 값을 사용하는 대/소문자를 구분하지 않는 문자열 비교로, 다른 주체 값에 관계없이 해당 문자열을 포함하는 주체 이름의 모든 인증서를 찾습니다.
인증서 저장소는 -CertificateStoreName 및 -CertificateStoreLocation 옵션으로 지정할 수 있습니다.</target>
<note />
</trans-unit>
<trans-unit id="SignCommandDescription">
<source>Signs a NuGet package with the specified certificate.</source>
<target state="translated">지정된 인증서로 NuGet 패키지에 서명합니다.</target>
<note />
</trans-unit>
<trans-unit id="SignCommandExamples">
<source>nuget sign MyPackage.nupkg -CertificatePath C:\certificate.pfx
nuget sign MyPackage.nupkg -CertificatePath \\path\to\certificate.pfx
nuget sign MyPackage.nupkg -CertificateFingerprint certificate_fingerprint -OutputDirectory .\signed\</source>
<target state="translated">nuget sign MyPackage.nupkg -CertificatePath C:\certificate.pfx
nuget sign MyPackage.nupkg -CertificatePath \\path\to\certificate.pfx
nuget sign MyPackage.nupkg -CertificateFingerprint certificate_fingerprint -OutputDirectory .\signed\</target>
<note>Please don't localize this string</note>
</trans-unit>
<trans-unit id="SignCommandHashAlgorithmDescription">
<source>Hash algorithm to be used to sign the package. Defaults to SHA256.</source>
<target state="translated">패키지에 서명하는 데 사용할 해시 알고리즘입니다. 기본값은 SHA256입니다.</target>
<note />
</trans-unit>
<trans-unit id="SignCommandInvalidCertificateFingerprint">
<source>{0}: Invalid value for 'CertificateFingerprint' option. The value must be a SHA-256, SHA-384, or SHA-512 certificate fingerprint (in hexadecimal).</source>
<target state="translated">{0}: 'CertificateFingerprint' 옵션의 값이 잘못되었습니다. 값은 SHA-256, SHA-384 또는 SHA-512 인증서 지문(16진수)이어야 합니다.</target>
<note>{0} - error code</note>
</trans-unit>
<trans-unit id="SignCommandMissingArgumentException">
<source>No value provided for '{0}', which is needed when using the '{1}' option. For a list of accepted values, please visit https://docs.nuget.org/docs/reference/command-line-reference</source>
<target state="translated">'{1}' 옵션을 사용할 때 필요한 '{0}'에 대한 값이 제공되지 않았습니다. 허용되는 값 목록을 보려면 https://docs.nuget.org/docs/reference/command-line-reference를 방문하세요.</target>
<note>0 - primary param name
1 - other param name</note>
</trans-unit>
<trans-unit id="SignCommandMultipleCertificateException">
<source>Multiple options were used to specify a certificate. For a list of accepted ways to provide a certificate, please visit https://docs.nuget.org/docs/reference/command-line-reference</source>
<target state="translated">인증서를 지정하는 데 여러 옵션이 사용되었습니다. 인증서를 제공하는 허용되는 방법 목록을 보려면 https://docs.nuget.org/docs/reference/command-line-reference를 방문하세요.</target>
<note />
</trans-unit>
<trans-unit id="SignCommandNoArgumentException">
<source>No value provided for '{0}'. For a list of accepted values, please visit https://docs.nuget.org/docs/reference/command-line-reference</source>
<target state="translated">'{0}'에 대한 값이 제공되지 않았습니다. 허용되는 값 목록을 보려면 https://docs.nuget.org/docs/reference/command-line-reference를 방문하세요.</target>
<note>{0} - argument name</note>
</trans-unit>
<trans-unit id="SignCommandNoCertificateException">
<source>No certificate was provided. For a list of accepted ways to provide a certificate, please visit https://docs.nuget.org/docs/reference/command-line-reference</source>