-
Notifications
You must be signed in to change notification settings - Fork 753
Expand file tree
/
Copy pathStrings.resx
More file actions
1111 lines (1100 loc) · 60.9 KB
/
Strings.resx
File metadata and controls
1111 lines (1100 loc) · 60.9 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="ApiKey_Description" xml:space="preserve">
<value>The API key for the server.</value>
</data>
<data name="App_FullName" xml:space="preserve">
<value>NuGet Command Line</value>
</data>
<data name="ConsoleConfirmMessage" xml:space="preserve">
<value>{0} (y/N)</value>
</data>
<data name="ConsoleConfirmMessageAccept" xml:space="preserve">
<value>y</value>
</data>
<data name="Delete_Description" xml:space="preserve">
<value>Deletes a package from the server.</value>
</data>
<data name="Delete_MissingArguments" xml:space="preserve">
<value>Please provide arguments for package id and package version.</value>
</data>
<data name="Delete_PackageIdAndVersion_Description" xml:space="preserve">
<value>The Package Id and version.</value>
</data>
<data name="DisableBuffering_Description" xml:space="preserve">
<value>Disable buffering when pushing to an HTTP(S) server to decrease memory usage.</value>
</data>
<data name="NoSymbols_Description" xml:space="preserve">
<value>If a symbols package exists, it will not be pushed to a symbols server.</value>
</data>
<data name="NonInteractive_Description" xml:space="preserve">
<value>Do not prompt for user input or confirmations.</value>
</data>
<data name="Push_Description" xml:space="preserve">
<value>Pushes a package to the server and publishes it.</value>
</data>
<data name="Push_MissingArguments" xml:space="preserve">
<value>Please specify the path to the package.</value>
</data>
<data name="Push_Package_ApiKey_Description" xml:space="preserve">
<value>Specify the path to the package and your API key to push the package to the server.</value>
</data>
<data name="Push_Timeout_Description" xml:space="preserve">
<value>Timeout for pushing to a server in seconds. Defaults to 300 seconds (5 minutes).</value>
</data>
<data name="Source_Description" xml:space="preserve">
<value>Package source (URL, UNC/folder path or package source name) to use. Defaults to DefaultPushSource if specified in NuGet.Config.</value>
</data>
<data name="Push_InvalidTimeout" xml:space="preserve">
<value>Invalid timeout parameter value.</value>
</data>
<data name="Push_Timeout_Error" xml:space="preserve">
<value>Pushing took too long. You can change the default timeout of 300 seconds by using the --timeout <seconds> option with the push command.</value>
</data>
<data name="ForceEnglishOutput_Description" xml:space="preserve">
<value>Forces the application to run using an invariant, English-based culture.</value>
</data>
<data name="OutputNuGetVersion" xml:space="preserve">
<value>{0} Version: {1}</value>
<comment>{0}: App full name
{1}: App version</comment>
</data>
<data name="SymbolSource_Description" xml:space="preserve">
<value>Symbol server URL to use.</value>
</data>
<data name="SymbolApiKey_Description" xml:space="preserve">
<value>The API key for the symbol server.</value>
</data>
<data name="LocalsCommand_ArgumentDescription" xml:space="preserve">
<value>Specifies the cache location(s) to list or clear.
<all | http-cache | global-packages | temp></value>
</data>
<data name="LocalsCommand_ClearDescription" xml:space="preserve">
<value>Clear the selected local resources or cache location(s).</value>
</data>
<data name="LocalsCommand_ListDescription" xml:space="preserve">
<value>List the selected local resources or cache location(s).</value>
</data>
<data name="LocalsCommand_Description" xml:space="preserve">
<value>Clears or lists local NuGet resources such as http requests cache, packages folder, plugin operations cache or machine-wide global packages folder.</value>
</data>
<data name="LocalsCommand_MultipleOperations" xml:space="preserve">
<value>Both operations, --list and --clear, are not supported in the same command. Please specify only one operation.
usage: NuGet locals <all | http-cache | global-packages | temp | plugins-cache> [--clear | -c | --list | -l]
For more information, visit https://docs.nuget.org/docs/reference/command-line-reference</value>
</data>
<data name="LocalsCommand_NoArguments" xml:space="preserve">
<value>No Cache Type was specified.
usage: NuGet locals <all | http-cache | global-packages | temp | plugins-cache> [--clear | -c | --list | -l]
For more information, visit https://docs.nuget.org/docs/reference/command-line-reference</value>
</data>
<data name="LocalsCommand_NoOperation" xml:space="preserve">
<value>Please specify an operation i.e. --list or --clear.
usage: NuGet locals <all | http-cache | global-packages | temp | plugins-cache> [--clear | -c | --list | -l]
For more information, visit https://docs.nuget.org/docs/reference/command-line-reference</value>
</data>
<data name="Error_MsBuildUnableToOpenProject" xml:space="preserve">
<value>MsBuild was unable to open Project '{0}'.</value>
<comment>{0} - Project/csproj path</comment>
</data>
<data name="Error_AddPkgIncompatibleWithAllFrameworks" xml:space="preserve">
<value>Package '{0}' is incompatible with '{1}' frameworks in project '{2}'.</value>
<comment>{0} - Package Id
{1} - all / user specified
{2} - Project Path</comment>
</data>
<data name="Info_AddPkgAddingReference" xml:space="preserve">
<value>Adding PackageReference for package '{0}' into project '{1}'.</value>
<comment>{0} - Package Id
{1} - Project Path</comment>
</data>
<data name="Info_AddPkgCompatibleWithAllFrameworks" xml:space="preserve">
<value>Package '{0}' is compatible with all the specified frameworks in project '{1}'.</value>
<comment>{0} - Package Id
{1} - Project Path</comment>
</data>
<data name="Info_AddPkgCompatibleWithSubsetFrameworks" xml:space="preserve">
<value>Package '{0}' is compatible with a subset of the specified frameworks in project '{1}'.</value>
<comment>{0} - Package Id
{1} - Project Path</comment>
</data>
<data name="Warn_AddPkgWithoutRestore" xml:space="preserve">
<value>--no-restore|-n flag was used. No compatibility check will be done and the added package reference will be unconditional.</value>
</data>
<data name="AddPkg_Description" xml:space="preserve">
<value>Adds a package reference to a project.</value>
</data>
<data name="AddPkg_FrameworksDescription" xml:space="preserve">
<value>Frameworks for which the package reference should be added.</value>
</data>
<data name="Error_PkgMissingArgument" xml:space="preserve">
<value>Unable to {0} package. Argument '{1}' not provided.</value>
<comment>{0} - Operation Name
{1} - Argument which was not provided</comment>
</data>
<data name="AddPkg_NoRestoreDescription" xml:space="preserve">
<value>Do not perform restore preview and compatibility check. The added package reference will be unconditional.</value>
</data>
<data name="AddPkg_PackageDirectoryDescription" xml:space="preserve">
<value>Directory to restore packages in.</value>
</data>
<data name="AddPkg_PackageIdDescription" xml:space="preserve">
<value>Id of the package to be added.</value>
</data>
<data name="AddPkg_PackageVersionDescription" xml:space="preserve">
<value>Version of the package to be added.</value>
</data>
<data name="AddPkg_ProjectPathDescription" xml:space="preserve">
<value>Path to the project file.</value>
</data>
<data name="AddPkg_SourcesDescription" xml:space="preserve">
<value>Specifies NuGet package sources to use during the restore.</value>
</data>
<data name="AddPkg_DgFileDescription" xml:space="preserve">
<value>Path to the dependency graph file to be used to restore preview and compatibility check.</value>
</data>
<data name="Error_NoDgSpec" xml:space="preserve">
<value>None or invalid DgSpec was passed to NuGet add package command.</value>
</data>
<data name="Error_AddPkgErrorStringForImportedEdit" xml:space="preserve">
<value>Item '{0}' for '{1}' in Imported file '{2}'.</value>
<comment>{0} - ItemType
{1} - Package Id
{2} - Imported File Path</comment>
</data>
<data name="Error_AddPkgFailOnImportEdit" xml:space="preserve">
<value>Error while performing {0} for package '{1}'. Cannot edit items in imported files - {2}{3}</value>
<comment>{0} - Operation Name
{1} - packageId
{2} - New line (this is just to hold a new line between sentences. does not need any translation)
{3} - Error string</comment>
</data>
<data name="Info_AddPkgAdded" xml:space="preserve">
<value>PackageReference for package '{0}' version '{1}' added to file '{2}'.</value>
<comment>{0} - Package Id
{1} - package version
{2} - project file path</comment>
</data>
<data name="Info_AddPkgUpdated" xml:space="preserve">
<value>PackageReference for package '{0}' version '{1}' updated in file '{2}'.</value>
<comment>{0} - Package Id
{1} - package version
{2} - project file path</comment>
</data>
<data name="AddPkg_All" xml:space="preserve">
<value>all</value>
</data>
<data name="AddPkg_UserSpecified" xml:space="preserve">
<value>user specified</value>
</data>
<data name="Info_RemovePkgRemovingReference" xml:space="preserve">
<value>Removing PackageReference for package '{0}' from project '{1}'.</value>
<comment>{0} - Package Id
{1} - Project Path</comment>
</data>
<data name="RemovePkg_Description" xml:space="preserve">
<value>Removes a package reference from a project.</value>
</data>
<data name="RemovePkg_PackageIdDescription" xml:space="preserve">
<value>Id of the package to be removed.</value>
</data>
<data name="RemovePkg_ProjectPathDescription" xml:space="preserve">
<value>Path to the project file.</value>
</data>
<data name="Error_UpdatePkgNoSuchPackage" xml:space="preserve">
<value>Project '{0}' does not contain any PackageReference '{1}' to {2}.</value>
<comment>{0} - project path
{1} - package id
{2} - operation name</comment>
</data>
<data name="Error_PkgMissingOrInvalidProjectFile" xml:space="preserve">
<value>Unable to {0} package. Missing or Invalid project file '{1}'.</value>
<comment>{0} - Operation Name
{1} - project file path</comment>
</data>
<data name="Error_UnsupportedProject" xml:space="preserve">
<value>Error while adding package '{0}' to project '{1}'. The project does not support adding package references through the add package command.</value>
<comment>{0} - Package Id
{1} - Project path</comment>
</data>
<data name="NoServiceEndpoint_Description" xml:space="preserve">
<value>Does not append "api/v2/package" to the source URL.</value>
</data>
<data name="AddPkg_InteractiveDescription" xml:space="preserve">
<value>Allow the command to block and require manual action for operations like authentication.</value>
</data>
<data name="ListPkg_DeprecatedDescription" xml:space="preserve">
<value>Displays only the packages marked deprecated by the authors.</value>
</data>
<data name="ListPkg_VulnerableDescription" xml:space="preserve">
<value>Displays only the packages flagged as vulnerable.</value>
</data>
<data name="ListPkg_Description" xml:space="preserve">
<value>Lists all the packages used by the current project(s).</value>
</data>
<data name="ListPkg_FrameworkDescription" xml:space="preserve">
<value>Specifies the target framework for which the packages will be listed.</value>
</data>
<data name="ListPkg_OutdatedDescription" xml:space="preserve">
<value>Displays only the packages that need updates with the latest version from the sources.</value>
</data>
<data name="ListPkg_TransitiveDescription" xml:space="preserve">
<value>Includes transitive packages too in the result.</value>
</data>
<data name="ListPkg_PathDescription" xml:space="preserve">
<value>A path to a project, solution file or directory.</value>
</data>
<data name="Error_AssetsFileNotFound" xml:space="preserve">
<value>No assets file was found for `{0}`. Please run restore before running this command.</value>
</data>
<data name="ListPkg_ProjectHeaderLog" xml:space="preserve">
<value>Project '{0}' has the following package references</value>
</data>
<data name="ListPkg_AutoReferenceDescription" xml:space="preserve">
<value>(A) : Auto-referenced package.</value>
</data>
<data name="ListPkg_NoPackagesForFramework" xml:space="preserve">
<value>No packages were found for this framework.</value>
</data>
<data name="ListPkg_NoPackagesFoundForFrameworks" xml:space="preserve">
<value>No packages were found for the project `{0}` given the specified frameworks.</value>
</data>
<data name="ListPkg_ConfigDescription" xml:space="preserve">
<value>A path to a config file to specify sources. Works only with `--outdated`.</value>
</data>
<data name="ListPkg_HighestMinorDescription" xml:space="preserve">
<value>Considers only the versions with matching major. Works only with `--outdated`.</value>
</data>
<data name="ListPkg_HighestPatchDescription" xml:space="preserve">
<value>Considers only the versions with matching minor and major. Works only with `--outdated`.</value>
</data>
<data name="ListPkg_PrereleaseDescription" xml:space="preserve">
<value>Considers prerelease versions when looking for latest. Works only with `--outdated`.</value>
</data>
<data name="ListPkg_SourceDescription" xml:space="preserve">
<value>Sources to lookup for latest versions. Works only with `--outdated`.</value>
</data>
<data name="Error_NotPRProject" xml:space="preserve">
<value>The project `{0}` uses package.config for NuGet packages, while the command works only with package reference projects.</value>
</data>
<data name="ListPkg_ErrorReadingAssetsFile" xml:space="preserve">
<value>Unable to read the assets file `{0}`. Please make sure the file has the write format.</value>
</data>
<data name="ListPkg_ErrorReadingReferenceFromProject" xml:space="preserve">
<value>Unable to read a package reference from the project `{0}`. Please make sure that your project file and project.assets.json file are in sync by running restore.</value>
</data>
<data name="ListPkg_InvalidFramework" xml:space="preserve">
<value>Failed to parse one of the given frameworks. Please make sure the given frameworks are valid.</value>
</data>
<data name="ListPkg_Latest" xml:space="preserve">
<value>Latest</value>
</data>
<data name="ListPkg_NotFoundAtSources" xml:space="preserve">
<value>Not found at the sources</value>
</data>
<data name="ListPkg_Requested" xml:space="preserve">
<value>Requested</value>
</data>
<data name="ListPkg_Resolved" xml:space="preserve">
<value>Resolved</value>
</data>
<data name="ListPkg_TopLevelHeader" xml:space="preserve">
<value>Top-level Package</value>
</data>
<data name="ListPkg_TransitiveHeader" xml:space="preserve">
<value>Transitive Package</value>
</data>
<data name="NuGetXplatCommand_Interactive" xml:space="preserve">
<value>Allow the command to block and require manual action for operations like authentication.</value>
</data>
<data name="ListPkg_ErrorFileNotFound" xml:space="preserve">
<value>The given file `{0}` was not found</value>
</data>
<data name="ListPkg_NoUpdatesForFramework" xml:space="preserve">
<value>No package updates available for this framework.</value>
</data>
<data name="ListPkg_NoUpdatesForProject" xml:space="preserve">
<value>The given project `{0}` has no updates given the current sources.</value>
</data>
<data name="ListPkg_ProjectUpdatesHeaderLog" xml:space="preserve">
<value>Project `{0}` has the following updates to its packages</value>
</data>
<data name="ListPkg_SourcesUsedDescription" xml:space="preserve">
<value>The following sources were used:</value>
</data>
<data name="ListPkg_InvalidOptions" xml:space="preserve">
<value>Options '--outdated', '--deprecated' and '--vulnerable' cannot be combined.</value>
</data>
<data name="ListPkg_NoDeprecatedPackagesForProject" xml:space="preserve">
<value>The given project `{0}` has no deprecated packages given the current sources.</value>
</data>
<data name="ListPkg_NoVulnerablePackagesForProject" xml:space="preserve">
<value>The given project `{0}` has no vulnerable packages given the current sources.</value>
</data>
<data name="ListPkg_VulnerableIgnoredOptions" xml:space="preserve">
<value>The command option(s) '--include-prerelease', '--highest-minor', and '--highest-patch' are ignored by this command.</value>
</data>
<data name="ListPkg_ProjectDeprecationsHeaderLog" xml:space="preserve">
<value>Project `{0}` has the following deprecated packages</value>
</data>
<data name="ListPkg_ProjectVulnerabilitiesHeaderLog" xml:space="preserve">
<value>Project `{0}` has the following vulnerable packages</value>
</data>
<data name="ListPkg_NoDeprecationsForFramework" xml:space="preserve">
<value>No deprecated packages for this framework.</value>
</data>
<data name="ListPkg_NoVulnerabilitiesForFramework" xml:space="preserve">
<value>No vulnerable packages for this framework.</value>
</data>
<data name="ListPkg_DeprecationAlternative" xml:space="preserve">
<value>Alternative</value>
</data>
<data name="ListPkg_DeprecationReasons" xml:space="preserve">
<value>Reason(s)</value>
</data>
<data name="ListPkg_VulnerabilitySeverity" xml:space="preserve">
<value>Severity</value>
</data>
<data name="ListPkg_VulnerabilityAdvisoryUrl" xml:space="preserve">
<value>Advisory URL</value>
</data>
<data name="PushCommandSkipDuplicateDescription" xml:space="preserve">
<value>If a package and version already exists, skip it and continue with the next package in the push, if any.</value>
</data>
<data name="AddSourceCommandDescription" xml:space="preserve">
<value>Add a NuGet source.</value>
</data>
<data name="DisableSourceCommandDescription" xml:space="preserve">
<value>Disable a NuGet source.</value>
</data>
<data name="EnableSourceCommandDescription" xml:space="preserve">
<value>Enable a NuGet source.</value>
</data>
<data name="ListSourceCommandDescription" xml:space="preserve">
<value>Lists all configured NuGet sources.</value>
</data>
<data name="RemoveSourceCommandDescription" xml:space="preserve">
<value>Remove a NuGet source.</value>
</data>
<data name="UpdateSourceCommandDescription" xml:space="preserve">
<value>Update a NuGet source.</value>
</data>
<data name="SourcesCommandNameDescription" xml:space="preserve">
<value>Name of the source.</value>
</data>
<data name="SourcesCommandPasswordDescription" xml:space="preserve">
<value>Password to be used when connecting to an authenticated source.</value>
</data>
<data name="SourcesCommandSourceDescription" xml:space="preserve">
<value>Path to the package source.</value>
</data>
<data name="SourcesCommandFormatDescription" xml:space="preserve">
<value>The format of the list command output: `Detailed` (the default) and `Short`.</value>
</data>
<data name="SourcesCommandUsernameDescription" xml:space="preserve">
<value>Username to be used when connecting to an authenticated source.</value>
</data>
<data name="SourcesCommandStorePasswordInClearTextDescription" xml:space="preserve">
<value>Enables storing portable package source credentials by disabling password encryption.</value>
</data>
<data name="SourcesCommandValidAuthenticationTypesDescription" xml:space="preserve">
<value>Comma-separated list of valid authentication types for this source. Set this to basic if the server advertises NTLM or Negotiate and your credentials must be sent using the Basic mechanism, for instance when using a PAT with on-premises Azure DevOps Server. Other valid values include negotiate, kerberos, ntlm, and digest, but these values are unlikely to be useful.</value>
<comment>Please don't localize "basic, NTLM, Negotiate, kerberos, ntlm, digest"</comment>
</data>
<data name="Option_ConfigFile" xml:space="preserve">
<value>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. For more information, see https://docs.microsoft.com/nuget/consume-packages/configuring-nuget-behavior.</value>
</data>
<data name="Option_PackageSource" xml:space="preserve">
<value>Package source name.</value>
</data>
<data name="Option_Path" xml:space="preserve">
<value>Path to certificate file.</value>
</data>
<data name="Option_Password" xml:space="preserve">
<value>Password for the certificate, if needed.</value>
</data>
<data name="Option_StorePasswordInClearText" xml:space="preserve">
<value>Enables storing password for the certificate by disabling password encryption.</value>
</data>
<data name="Option_StoreLocation" xml:space="preserve">
<value>Certificate store location (see docs).</value>
</data>
<data name="Option_StoreName" xml:space="preserve">
<value>Certificate store name (see docs).</value>
</data>
<data name="Option_FindBy" xml:space="preserve">
<value>Search method to find certificate in certificate store (see docs).</value>
</data>
<data name="Option_FindValue" xml:space="preserve">
<value>Search the certificate store for the supplied value. Used with FindValue (see docs).</value>
<comment>Don't translate FindValue</comment>
</data>
<data name="Option_Force" xml:space="preserve">
<value>Skip certificate validation.</value>
</data>
<data name="Add_Description" xml:space="preserve">
<value>Add a NuGet source.</value>
</data>
<data name="Disable_Description" xml:space="preserve">
<value>Disable a NuGet source.</value>
</data>
<data name="Enable_Description" xml:space="preserve">
<value>Enable a NuGet source.</value>
</data>
<data name="List_Description" xml:space="preserve">
<value>List configured NuGet sources.</value>
</data>
<data name="Remove_Description" xml:space="preserve">
<value>Remove a NuGet source.</value>
</data>
<data name="Update_Description" xml:space="preserve">
<value>Update a NuGet source.</value>
</data>
<data name="Sources_Redirect" xml:space="preserve">
<value>The proper command is '{0}'.</value>
</data>
<data name="ListClientCertCommandDescription" xml:space="preserve">
<value>Lists all the client certificates in the configuration.</value>
</data>
<data name="RemoveClientCertCommandDescription" xml:space="preserve">
<value>Removes the client certificate configuration that matches the given package source name.</value>
</data>
<data name="UpdateClientCertCommandDescription" xml:space="preserve">
<value>Updates the client certificate configuration that matches the given package source name.</value>
</data>
<data name="AddClientCertCommandDescription" xml:space="preserve">
<value>Adds a client certificate configuration that matches the given package source name.</value>
</data>
<data name="Verbosity_Description" xml:space="preserve">
<value>Set the verbosity level of the command. Allowed values are q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic].</value>
<comment>Please don't localize "q[uiet]", "m[inimal]", "n[ormal]", "d[etailed]", or "diag[nostic]"</comment>
</data>
<data name="AddPkg_PackagePrerelease" xml:space="preserve">
<value>Allows prerelease packages to be installed.</value>
</data>
<data name="Error_PrereleaseWhenVersionSpecified" xml:space="preserve">
<value>The --prerelease and --version options are not supported in the same command.</value>
<comment>Please don't localize "prerelease" and "version"</comment>
</data>
<data name="Error_NoVersionsAvailable" xml:space="preserve">
<value>There are no versions available for the package '{0}'.</value>
<comment>{0} - PackageID</comment>
</data>
<data name="PrereleaseVersionsAvailable" xml:space="preserve">
<value>There are no stable versions available, {0} is the best available. Consider adding the --prerelease option</value>
<comment>{0} - Package Version</comment>
</data>
<data name="VerifyCommandAllDescription" xml:space="preserve">
<value>Specifies that all verifications possible should be performed to the package(s).</value>
</data>
<data name="VerifyCommandCertificateFingerprintDescription" xml:space="preserve">
<value>Verify that the signer certificate matches with one of the specified SHA256 fingerprints. A certificate SHA256 fingerprint is a SHA256 hash of the certificate used to identify the certificate. Multiple inputs should be separated by space.</value>
</data>
<data name="VerifyCommandDescription" xml:space="preserve">
<value>Verifies a signed NuGet package.</value>
</data>
<data name="VerifyCommandPackagePathDescription" xml:space="preserve">
<value>Specify the path to the package</value>
</data>
<data name="TrustCommandAlgorithm" xml:space="preserve">
<value>Specifies the hash algorithm used to calculate the certificate fingerprint. Defaults to SHA256. Values supported are SHA256, SHA384 and SHA512.</value>
</data>
<data name="TrustCommandAllowUntrustedRoot" xml:space="preserve">
<value>Specifies if the certificate for the trusted signer should be allowed to chain to an untrusted root. This is not recommended.</value>
</data>
<data name="TrustCommandDescription" xml:space="preserve">
<value>Manage the trusted signers.</value>
</data>
<data name="TrustCommandOwners" xml:space="preserve">
<value>Semi-colon separated list of trusted owners to further restrict the trust of a repository.</value>
</data>
<data name="SignCommandOutputDirectoryDescription" xml:space="preserve">
<value>Directory where the signed package(s) should be saved. By default the original package is overwritten by the signed package.</value>
</data>
<data name="SignCommandCertificateFingerprintDescription" xml:space="preserve">
<value>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 --certificate-store-name and --certificate-store-location options.</value>
<comment>Please don't localize '--certificate-store-name' and '--certificate-store-location'</comment>
</data>
<data name="SignCommandCertificatePasswordDescription" xml:space="preserve">
<value>Password for the certificate, if needed.
This option can be used to specify the password for the certificate. The command will throw an error message if certificate is password protected but password is not provided as input.</value>
</data>
<data name="SignCommandCertificatePathDescription" xml:space="preserve">
<value>File path to the certificate to be used while signing the package.</value>
</data>
<data name="SignCommandCertificateStoreLocationDescription" xml:space="preserve">
<value>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 --certificate-subject-name or --certificate-fingerprint options.</value>
<comment>Please don't localize '--certificate-subject-name' and '--certificate-fingerprint'</comment>
</data>
<data name="SignCommandCertificateStoreNameDescription" xml:space="preserve">
<value>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 --certificate-subject-name or --certificate-fingerprint options.</value>
<comment>Please don't localize '--certificate-subject-name' and '--certificate-fingerprint'</comment>
</data>
<data name="SignCommandCertificateSubjectNameDescription" xml:space="preserve">
<value>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 --certificate-store-name and --certificate-store-location options.</value>
<comment>Please don't localize '--certificate-store-name' and '--certificate-store-location'</comment>
</data>
<data name="SignCommandHashAlgorithmDescription" xml:space="preserve">
<value>Hash algorithm to be used to sign the package. Defaults to SHA256.</value>
</data>
<data name="SignCommandOverwriteDescription" xml:space="preserve">
<value>Switch to indicate if the current signature should be overwritten. By default the command will fail if the package already has a signature.</value>
</data>
<data name="SignCommandPackagePathDescription" xml:space="preserve">
<value>Signs NuGet packages at <package-paths> with the specified certificate.</value>
<comment>Please don't localize '<package-paths>'</comment>
</data>
<data name="SignCommandTimestamperDescription" xml:space="preserve">
<value>URL to an RFC 3161 timestamping server.</value>
</data>
<data name="SignCommandTimestampHashAlgorithmDescription" xml:space="preserve">
<value>Hash algorithm to be used by the RFC 3161 timestamp server. Defaults to SHA256.</value>
</data>
<data name="SignCommandDescription" xml:space="preserve">
<value>Signs NuGet package(s) at <package-paths> with the specified certificate.</value>
<comment>Please don't localize '<package-paths>'</comment>
</data>
<data name="SignCommandNoTimestamperWarning" xml:space="preserve">
<value>The '--timestamper' option was not provided. The signed package will not be timestamped. To learn more about this option, please visit https://docs.microsoft.com/dotnet/core/tools</value>
<comment>Please don't localize '--timestamper'</comment>
</data>
<data name="Err_InvalidValue" xml:space="preserve">
<value>Invalid value provided for '{0}'. The accepted values are {1}.</value>
<comment>{0} - argument name in SignCommand. e.g. certificate storeName, certificate storelocation, hashAlgorithmName {1} - the possible values of the argument.</comment>
</data>
<data name="SignCommandMultipleCertificateException" xml:space="preserve">
<value>Multiple options were used to specify a certificate.</value>
</data>
<data name="SignCommandNoCertificateException" xml:space="preserve">
<value>No certificate was provided.</value>
</data>
<data name="TrustAuthorCommandDescription" xml:space="preserve">
<value>Adds a trusted signer with the given name, based on the author signature of the package.</value>
</data>
<data name="TrustListCommandDescription" xml:space="preserve">
<value>Lists all the trusted signers in the configuration.</value>
</data>
<data name="TrustRemoveCommandDescription" xml:space="preserve">
<value>Removes any trusted signers that match the given name.</value>
</data>
<data name="TrustRepositoryCommandDescription" xml:space="preserve">
<value>Adds a trusted signer with the given name, based on the repository signature or countersignature of a signed package.</value>
</data>
<data name="TrustSyncCommandDescription" xml:space="preserve">
<value>Deletes the current list of certificates and replaces them with an up-to-date list from the repository.</value>
</data>
<data name="TrustCertificateFingerprint" xml:space="preserve">
<value>The fingerprint of the certificate.</value>
</data>
<data name="TrustedCertificateSignerNameToAdd" xml:space="preserve">
<value>The name of the trusted signer to add. If a trusted signer with the given name already exists, the certificate item is added to that signer. Otherwise a trusted author is created with a certificate item from the given certificate information.</value>
</data>
<data name="TrustedSignerNameExists" xml:space="preserve">
<value>The name of the existing trusted signer to sync.</value>
</data>
<data name="TrustedSignerNameToAdd" xml:space="preserve">
<value>The name of the trusted signer to add. If name already exists in the configuration, the signature is appended.</value>
</data>
<data name="TrustedSignerNameToRemove" xml:space="preserve">
<value>The name of the existing trusted signer to remove.</value>
</data>
<data name="TrustLocalSignedNupkgPath" xml:space="preserve">
<value>The given package should be a local path to the signed .nupkg file.</value>
</data>
<data name="TrustSourceCommandDescription" xml:space="preserve">
<value>Adds a trusted signer based on a given package source.</value>
</data>
<data name="TrustSourceSignerName" xml:space="preserve">
<value>"The name of the trusted signer to add. If only <NAME> is provided without --<source-url>, the package source from your NuGet configuration files with the same name is added to the trusted list. If <NAME> already exists in the configuration, the package source is appended to it."</value>
</data>
<data name="TrustSourceUrl" xml:space="preserve">
<value>If a source-url is provided, it must be a v3 package source URL (like https://api.nuget.org/v3/index.json). Other package source types are not supported.</value>
</data>
<data name="Error_TrustedRepoAlreadyExists" xml:space="preserve">
<value>A trusted repository with the service index '{0}' already exists.</value>
<comment>0 - trusted repository name</comment>
</data>
<data name="Error_TrustedSignerAlreadyExists" xml:space="preserve">
<value>A trusted signer '{0}' already exists.</value>
<comment>0 - trusted signer name</comment>
</data>
<data name="Error_TrustFingerPrintAlreadyExist" xml:space="preserve">
<value>The certificate finger you're trying to add is already in the certificate fingerprint list.</value>
</data>
<data name="Error_HttpServerUsage" xml:space="preserve">
<value>You are running the '{0}' operation with an 'HTTP' source, '{1}'. NuGet requires HTTPS sources. To use HTTP sources, you must explicitly set 'allowInsecureConnections' to true in your NuGet.Config file. Refer to https://aka.ms/nuget-https-everywhere for more information.</value>
<comment>0 - The command name. Ex. Push/Delete. 1 - server uri.</comment>
</data>
<data name="Error_HttpServerUsage_MultipleSources" xml:space="preserve">
<value>You are running the '{0}' operation with 'HTTP' sources: {1}
NuGet requires HTTPS sources. To use HTTP sources, you must explicitly set 'allowInsecureConnections' to true in your NuGet.Config file. Refer to https://aka.ms/nuget-https-everywhere for more information.</value>
<comment>0 - The command name. Ex. Push/Delete. 1 - list of server uris</comment>
</data>
<data name="Debug_CurrentUICulture" xml:space="preserve">
<value>DefaultThreadCurrentUICulture value: {0}</value>
<comment>0 - Value of CultureInfo.DefaultThreadCurrentUICulture</comment>
</data>
<data name="Error_InvalidCultureInfo" xml:space="preserve">
<value>Invalid culture identifier in {0} environment variable. Value read is '{1}'</value>
<comment>0 - Environment variable name, 1 - value set in environment variable</comment>
</data>
<data name="Info_AddPkgCPM" xml:space="preserve">
<value>PackageReference for package '{0}' added to '{1}' and PackageVersion added to central package management file '{2}'.</value>
<comment>0 - The package ID. 1 - Project file path. 2 - Directory.Packages.props.</comment>
</data>
<data name="ListPkg_OutputFormatDescription" xml:space="preserve">
<value>Set the report output format.</value>
</data>
<data name="ListPkg_OutputVersionDescription" xml:space="preserve">
<value>The version of report output.</value>
</data>
<data name="ListPkg_InvalidOutputFormat" xml:space="preserve">
<value>Invalid value {0} provided for output format. The accepted values are {1}.</value>
<comment>{0} - argument name in format option {1} - the possible values of the argument.</comment>
</data>
<data name="ListPkg_InvalidOutputVersion" xml:space="preserve">
<value>Unsupported output format version {0} was requested. The accepted format version value is {1}.</value>
<comment>{0} - argument name in version option {1} - the possible value of the argument.</comment>
</data>
<data name="ListPkg_OutputVersionNotApplicable" xml:space="preserve">
<value>'--output-version' option not applicable for console output, it can only be used together with `--format json` option.</value>
<comment>Don't localize '--output-version' and `--format json`</comment>
</data>
<data name="Error_CentralPackageVersions_VersionsNotAllowed" xml:space="preserve">
<value>Projects that use central package version management should not define the version on the PackageReference items but on the PackageVersion items: {0}</value>
<comment>0 - package id</comment>
</data>
<data name="Error_AddPkg_CentralPackageVersions_EmptyVersionOverride" xml:space="preserve">
<value>VersionOverride for package '{0}' should not be empty.</value>
<comment>0 - package id</comment>
</data>
<data name="Error_AddPkg_CentralPackageVersions_PackageReference_WrongLocation" xml:space="preserve">
<value>Package reference for package '{0}' defined in incorrect location, PackageReference should be defined in project file.</value>
<comment>0 - package id</comment>
</data>
<data name="Error_AddPkg_CentralPackageVersions_PackageVersion_WrongLocation" xml:space="preserve">
<value>PackageVersion for package '{0}' defined in incorrect location, PackageVersion should be defined in Directory.Package.props.</value>
<comment>0 - package id</comment>
</data>
<data name="Error_CentralPackageVersions_AutoreferencedReferencesNotAllowed" xml:space="preserve">
<value>The packages {0} are implicitly referenced. You do not typically need to reference them from your project or in your central package versions management file. For more information, see https://aka.ms/sdkimplicitrefs</value>
</data>
<data name="Error_CentralPackageVersions_FloatingVersionsAreNotAllowed" xml:space="preserve">
<value>Centrally defined floating package versions are not allowed.</value>
</data>
<data name="Error_CentralPackageVersions_MissingPackageVersion" xml:space="preserve">
<value>The PackageReference items {0} do not have corresponding PackageVersion.</value>
</data>
<data name="Error_CentralPackageVersions_VersionOverrideDisabled" xml:space="preserve">
<value>The package reference {0} specifies a VersionOverride but the ability to override a centrally defined version is currently disabled.</value>
<comment>0 - packagereference name</comment>
</data>
<data name="SourcesCommandProtocolVersionDescription" xml:space="preserve">
<value>The NuGet server protocol version to be used. Currently supported versions are 2 and 3. See https://learn.microsoft.com/nuget/api/overview for information about the version 3 protocol. Defaults to 2 if not specified.</value>
</data>
<data name="SourcesCommandValidProtocolVersion" xml:space="preserve">
<value>The protocol version specified is invalid. Provide a valid protocol version.</value>
</data>
<data name="pkgSearch_Description" xml:space="preserve">
<value>Searches one or more package sources for packages that match a search term. If no sources are specified, all sources defined in the NuGet.Config are used.</value>
</data>
<data name="pkgSearch_ExactMatchDescription" xml:space="preserve">
<value>Require that the search term exactly match the name of the package. Causes `--take` and `--skip` options to be ignored.</value>
</data>
<data name="pkgSearch_InteractiveDescription" xml:space="preserve">
<value>Stop and wait for user input or action (for example to complete authentication).</value>
</data>
<data name="pkgSearch_PrereleaseDescription" xml:space="preserve">
<value>Include prerelease packages.</value>
</data>
<data name="pkgSearch_SkipDescription" xml:space="preserve">
<value>Number of results to skip, to allow pagination. Default 0.</value>
</data>
<data name="pkgSearch_SourceDescription" xml:space="preserve">
<value>Package source to search. You can pass multiple `--source` options to search multiple package sources. Example: `--source https://api.nuget.org/v3/index.json`.</value>
</data>
<data name="pkgSearch_TakeDescription" xml:space="preserve">
<value>Number of results to return. Default 20.</value>
</data>
<data name="pkgSearch_termDescription" xml:space="preserve">
<value>Search term to filter package names, descriptions, and tags. Used as a literal value. Example: `dotnet package search some.package`. See also `--exact-match`.</value>
</data>
<data name="Error_InvalidOptionValue" xml:space="preserve">
<value>Invalid value `{0}` for option {1}.</value>
<comment>0 - The invalid value. 1 - the option.</comment>
</data>
<data name="Error_InvalidSource" xml:space="preserve">
<value>The specified source '{0}' is invalid. Provide a valid source.</value>
<comment>0 - The invalid source.</comment>
</data>
<data name="Error_CannotObtainSearchSource" xml:space="preserve">
<value>Failed to obtain a search resource.</value>
</data>
<data name="ConfigPathsCommandDescription" xml:space="preserve">
<value>Lists the paths to all NuGet configuration files that will be applied when invoking NuGet command in a specific directory</value>
</data>
<data name="ConfigPathsWorkingDirectoryDescription" xml:space="preserve">
<value>Specifies the directory to start from when listing configuration files. If not specified, the current directory is used.</value>
</data>
<data name="Config_Description" xml:space="preserve">
<value>NuGet configuration CLI</value>
</data>
<data name="Error_PathNotFound" xml:space="preserve">
<value>The specified path '{0}' does not exist.</value>
<comment>0 - path</comment>
</data>
<data name="Error_NoSource" xml:space="preserve">
<value>No package sources found.</value>
</data>
<data name="Error_MultipleProjectOrSolutionFilesInDirectory" xml:space="preserve">
<value>The directory '{0}' contains multiple project or solution files. Please specify which project or solution file to use.</value>
<comment>{0} - Directory</comment>
</data>
<data name="Error_NoProjectOrSolutionFilesInDirectory" xml:space="preserve">
<value>The directory '{0}' does not contain any project or solution files.</value>
<comment>{0} - Directory</comment>
</data>
<data name="pkgSearch_FormatDescription" xml:space="preserve">
<value>Format the output accordingly. Either `table`, or `json`. The default value is `table`.</value>
<comment>Please don't translate `table`, `json`.</comment>
</data>
<data name="pkgSearch_VerbosityDescription" xml:space="preserve">
<value>Display this amount of details in the output: `normal`, `minimal`, `detailed`. The default is `normal`.</value>
<comment>Please don't translate `minimal`, `normal`, `detailed`</comment>
</data>
<data name="ConfigCommandKeyNotFound" xml:space="preserve">
<value>Key '{0}' not found.</value>
</data>
<data name="ConfigSetCommandDescription" xml:space="preserve">
<value>Set the value of a specified NuGet configuration setting.</value>
</data>
<data name="ConfigSetConfigKeyDescription" xml:space="preserve">
<value>The key of the settings that are to be set.</value>
</data>
<data name="ConfigSetConfigValueDescription" xml:space="preserve">
<value>The value of the settings that are to be set.</value>
</data>
<data name="Error_ConfigSetInvalidKey" xml:space="preserve">
<value>'{0}' is not a valid config key in config section.</value>
<comment>0 - The config key</comment>
</data>
<data name="ConfigUnsetCommandDescription" xml:space="preserve">
<value>Removes the key-value pair from a specified NuGet configuration setting.</value>
</data>
<data name="ConfigUnsetConfigKeyDescription" xml:space="preserve">
<value>The key of the settings that are to be removed.</value>
</data>
<data name="ConfigUnsetNonExistingKey" xml:space="preserve">
<value>The key "{0}" could not be found in config section, so it could not be unset.</value>
<comment>0 - The config key</comment>
</data>
<data name="ConfigGetAllOrConfigKeyDescription" xml:space="preserve">
<value>ALL: Get all merged NuGet configuration settings from multiple NuGet configuration files that will be applied, when invoking NuGet command from the working directory path. CONFIG_KEY: Get the effective value of the specified configuration settings of the config section.</value>
</data>
<data name="ConfigGetShowPathDescription" xml:space="preserve">
<value>Indicate that the NuGet configuration file path will be shown beside the configuration settings.</value>
</data>
<data name="ConfigGetCommandDescription" xml:space="preserve">
<value>Gets the NuGet configuration settings that will be applied.</value>
</data>
<data name="WhyCommand_Description" xml:space="preserve">
<value>Shows the dependency graph for a particular package for a given project or solution.</value>
</data>
<data name="WhyCommand_PathArgument_Description" xml:space="preserve">
<value>A path to a project, solution file, or directory.</value>
</data>
<data name="WhyCommand_PackageArgument_Description" xml:space="preserve">
<value>The package name to lookup in the dependency graph.</value>
</data>
<data name="WhyCommand_FrameworksOption_Description" xml:space="preserve">
<value>The target framework(s) for which dependency graphs are shown.</value>
</data>
<data name="WhyCommand_Error_ArgumentCannotBeEmpty" xml:space="preserve">
<value>Unable to run 'dotnet nuget why'. The '{0}' argument cannot be empty.</value>
<comment>{0} - Argument that was not provided</comment>
</data>
<data name="Error_PathIsMissingOrInvalid" xml:space="preserve">
<value>Missing or invalid path '{0}'. Please provide a path to a project, solution file, or directory.</value>
<comment>{0} - Input path argument</comment>
</data>
<data name="WhyCommand_Error_ArgumentExceptionThrown" xml:space="preserve">
<value>Unable to run 'dotnet nuget why'. {0}</value>
<comment>{0} - Exception mssage</comment>
</data>
<data name="WhyCommand_Message_NonSDKStyleProjectsAreNotSupported" xml:space="preserve">
<value>Unable to run 'dotnet nuget why' for project '{0}'. See https://aka.ms/dotnet/nuget/why#older-project-format</value>
</data>
<data name="WhyCommand_Error_InvalidAssetsFile_WithoutProject" xml:space="preserve">
<value>The file '{0}' does not appear to be a NuGet assets file. For more information, see https://aka.ms/dotnet/nuget/why#older-project-format</value>
<comment>{0} - Assets file path</comment>
</data>
<data name="WhyCommand_Error_InvalidAssetsFile_WithProject" xml:space="preserve">
<value>The file '{0}' does not appear to be a NuGet assets file. Please run restore for project '{1}' before running this command.</value>
<comment>{0} - Assets file path, {1} - Project name</comment>
</data>
<data name="WhyCommand_Warning_AssetsFileDoesNotContainSpecifiedTarget" xml:space="preserve">
<value>The assets file '{0}' for project '{1}' does not contain a target for the specified input framework '{2}'.</value>
<comment>{0} - Assets file path, {1} - Project name, {2} - Framework</comment>
</data>
<data name="WhyCommand_Message_NoDependencyGraphsFoundInProject" xml:space="preserve">
<value>Project '{0}' does not have a dependency on '{1}'.</value>
<comment>{0} - Project name, {1} - Target package</comment>
</data>
<data name="WhyCommand_Message_DependencyGraphsFoundInProject" xml:space="preserve">
<value>Project '{0}' has the following dependency graph(s) for '{1}':</value>
<comment>{0} - Project name, {1} - Target package</comment>
</data>
<data name="WhyCommand_Message_NoDependencyGraphsFoundForFramework" xml:space="preserve">
<value>No dependency graph(s) found for this target framework.</value>
</data>
<data name="SourcesCommandAllowInsecureConnectionsDescription" xml:space="preserve">
<value>Allows HTTP connections for adding or updating packages. Note: This method is not secure. For secure options, see https://aka.ms/nuget-https-everywhere for more information.</value>
</data>
<data name="SignCommandInvalidCertificateFingerprint" xml:space="preserve">
<value>{0}: Invalid value for '--certificate-fingerprint' option. The value must be a SHA-256, SHA-384, or SHA-512 certificate fingerprint (in hexadecimal).</value>
<comment>{0} - error code</comment>
</data>
<data name="Error_ProjectAssetsFilePropertyNotFound" xml:space="preserve">
<value>Project '{0}' does not have MSBuild property ProjectAssetsFile defined. This may indicate that this project does not support NuGet PackageReference, or that project customization has prevented the .NET SDK setting default values.</value>
<comment>{0} - Path to the project with the error</comment>
</data>
<data name="Warning_AuditSourceWithoutData" xml:space="preserve">
<value>Audit source '{0}' did not provide any vulnerability data.</value>
<comment>{0} is the source name</comment>
</data>
<data name="Unsupported_UpdatingMoreThanOneProject" xml:space="preserve">
<value>Unsupported: Updating more than one project is not yet supported</value>
</data>
<data name="PackageUpdate_PreviewRestoreFailed" xml:space="preserve">
<value>Preview restore with updated packages was not successful. Force mode is not yet available.</value>
</data>
<data name="Error_CouldNotFindPackageVersionForCpmPackage" xml:space="preserve">
<value>Central Package Management configuration error: Could not find PackageVersion for package {0}</value>
<comment>0 - a package name
Do not translate "PackageVersion"</comment>
</data>
<data name="Unsupported_UpdatePackageWithDifferentPerTfmVersions" xml:space="preserve">
<value>The package {0} references different versions of the package for different target frameworks. This is not supported by this command. Please edit the project file directly. ({1})</value>
<comment>0 - The package id
1 - The project path</comment>
</data>