-
Notifications
You must be signed in to change notification settings - Fork 645
/
Copy pathServicesStrings.resx
1142 lines (1116 loc) · 61.6 KB
/
ServicesStrings.resx
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="EmailAddressBeingUsed" xml:space="preserve">
<value>The email address '{0}' is already in use by a different account.</value>
</data>
<data name="UsernameNotAvailable" xml:space="preserve">
<value>The username '{0}' is not available.</value>
</data>
<data name="UsernameAndPasswordNotFound" xml:space="preserve">
<value>A unique user with that username or email address and password does not exist. Try logging on with your username if you were using an email address to log on.</value>
</data>
<data name="PackageIdNotAvailable" xml:space="preserve">
<value>The package ID '{0}' is not available.</value>
</data>
<data name="PackageWithIdAndVersionNotFound" xml:space="preserve">
<value>A package with ID '{0}' and version '{1}' does not exist.</value>
</data>
<data name="NuGetPackagePropertyTooLong" xml:space="preserve">
<value>A nuget package's {0} property may not be more than {1} characters long.</value>
</data>
<data name="ApiKeyNotAuthorized" xml:space="preserve">
<value>The specified API key is invalid, has expired, or does not have permission to access the specified package.</value>
</data>
<data name="PackageExistsAndCannotBeModified" xml:space="preserve">
<value>A package with ID '{0}' and version '{1}' already exists and cannot be modified.</value>
</data>
<data name="CurrentPasswordIncorrect" xml:space="preserve">
<value>The current password you provided is incorrect.</value>
</data>
<data name="UserIsNotYetConfirmed" xml:space="preserve">
<value>You cannot reset your password until you confirm your account.</value>
</data>
<data name="SSLRequired" xml:space="preserve">
<value>The requested resource can only be accessed via SSL.</value>
</data>
<data name="FailedToReadUploadFile" xml:space="preserve">
<value>Failed to read the package file. Ensure it is a valid NuGet package with a valid manifest.</value>
</data>
<data name="UploadFileIsRequired" xml:space="preserve">
<value>A package file is required.</value>
</data>
<data name="UploadFileMustBeNuGetPackage" xml:space="preserve">
<value>The file must be a .nupkg or .snupkg file.</value>
</data>
<data name="SuccessfullyUploadedPackage" xml:space="preserve">
<value>You successfully uploaded {0} {1}.</value>
</data>
<data name="PackageWithIdDoesNotExist" xml:space="preserve">
<value>No package with this ID exists.</value>
</data>
<data name="InvalidApiKey" xml:space="preserve">
<value>The API key '{0}' is invalid.</value>
</data>
<data name="ParameterCannotBeNullOrEmpty" xml:space="preserve">
<value>'{0}' cannot be null or an empty string</value>
</data>
<data name="DatabaseUnavailable_TrySpecificVersion" xml:space="preserve">
<value>The NuGet service is experiencing a service interruption. Try requesting a specific package version instead.</value>
</data>
<data name="UserNotFound" xml:space="preserve">
<value>A user with the provided user name does not exist.</value>
</data>
<data name="ApiKeyUserAccountIsUnconfirmed" xml:space="preserve">
<value>You must confirm the email address for the account in order to use the API key.</value>
</data>
<data name="MultipleMatchingCredentials" xml:space="preserve">
<value>Multiple Credentials match '{0}' credential with Key {1}</value>
</data>
<data name="PasswordCredentialsCannotBeUsedHere" xml:space="preserve">
<value>Password credentials cannot be used with Authenticate(Credential). Use Authenticate(string, string) instead.</value>
</data>
<data name="ApiKeyRequired" xml:space="preserve">
<value>An API key must be provided in the 'X-NuGet-ApiKey' header to use this service</value>
</data>
<data name="Unauthorized" xml:space="preserve">
<value>User is not authorized</value>
</data>
<data name="MicrosoftAccount_SignInMessage" xml:space="preserve">
<value>Sign in with Microsoft</value>
</data>
<data name="MissingRequiredConfigurationValue" xml:space="preserve">
<value>Missing required configuration value: '{0}'</value>
</data>
<data name="UnknownAuthenticationProvider" xml:space="preserve">
<value>Unknown authentication provider: '{0}'</value>
</data>
<data name="ExternalAccountLinkExpired" xml:space="preserve">
<value>Your account credential expired or you did not allow us access to your account. Try logging in again.</value>
</data>
<data name="MicrosoftAccount_AccountNoun" xml:space="preserve">
<value>Microsoft account</value>
</data>
<data name="CredentialType_ApiKey" xml:space="preserve">
<value>API key</value>
</data>
<data name="CredentialType_Password" xml:space="preserve">
<value>Password</value>
</data>
<data name="ApiKeyGenerated" xml:space="preserve">
<value>A new API key has been generated. Check below and make sure to copy the value, as now is the only time it will be visible.</value>
</data>
<data name="CredentialExpired" xml:space="preserve">
<value>The credential has been expired.</value>
</data>
<data name="CannotRemoveOnlyLoginCredential" xml:space="preserve">
<value>Oops! You can't remove the only credential that can be used to sign in to the website!</value>
</data>
<data name="CredentialRemoved" xml:space="preserve">
<value>The credential has been removed.</value>
</data>
<data name="PasswordChanged" xml:space="preserve">
<value>Your password has been changed.</value>
</data>
<data name="PasswordRemoved" xml:space="preserve">
<value>Your password has been removed.</value>
</data>
<data name="PasswordSet" xml:space="preserve">
<value>Your password has been set.</value>
</data>
<data name="Emails_ForgotPassword_Subject" xml:space="preserve">
<value>[{0}] Please reset your password.</value>
</data>
<data name="Emails_SetPassword_Subject" xml:space="preserve">
<value>[{0}] Please set your password.</value>
</data>
<data name="Emails_CredentialAdded_Body" xml:space="preserve">
<value>A {0} was added to your account and can now be used to sign in. If you did not request this change, please reply to this email to contact support.</value>
</data>
<data name="Emails_CredentialAdded_Subject" xml:space="preserve">
<value>[{0}] {1} added to your account</value>
</data>
<data name="Emails_CredentialRemoved_Body" xml:space="preserve">
<value>A {0} was removed from your account and can no longer be used to sign in. If you did not request this change, please reply to this email to contact support.</value>
</data>
<data name="Emails_CredentialRemoved_Subject" xml:space="preserve">
<value>[{0}] {1} removed from your account</value>
</data>
<data name="MessageService_CannotSendEmailForCredential" xml:space="preserve">
<value>Cannot send added/removed email for credentials of type '{0}'</value>
</data>
<data name="AlreadyLoggedIn" xml:space="preserve">
<value>You are already signed in!</value>
</data>
<data name="AuthenticationProviderDisabled" xml:space="preserve">
<value>The '{0}' authentication provider is disabled and cannot be used to authenticate
</value>
</data>
<data name="UserEmailPreferencesUpdated" xml:space="preserve">
<value>Your email preferences have been updated.</value>
</data>
<data name="UploadPackage_MinClientVersionOutOfRange" xml:space="preserve">
<value>This package requires version '{0}' of NuGet, which this gallery does not currently support. Please contact us if you have questions.</value>
</data>
<data name="DefaultUserSafeExceptionMessage" xml:space="preserve">
<value>An unexpected error occurred. Contact support for assistance.</value>
</data>
<data name="UserEmailUpdateCancelled" xml:space="preserve">
<value>You canceled your email address change request.</value>
</data>
<data name="UploadPackage_InvalidPackage" xml:space="preserve">
<value>The NuGet package is invalid. The error encountered was:'{0}'. Correct the error and try again.</value>
</data>
<data name="UploadPackage_InvalidNuspec" xml:space="preserve">
<value>The NuGet package contains an invalid .nuspec file. The error encountered was: '{0}'. Correct the error and try again.</value>
</data>
<data name="CopyExternalPackages_PackageFileBlobAlreadyExists" xml:space="preserve">
<value>SKIPPED! Package file blob {0} already exists</value>
</data>
<data name="CopyExternalPackages_SavingPackageFileBlob" xml:space="preserve">
<value>Saving the package file {0} to blob storage as {1}</value>
</data>
<data name="JobLogBlobNameInvalid" xml:space="preserve">
<value>Job Log Blob name is invalid Bob! Expected [jobname].[yyyy-MM-dd].json or [jobname].json. Got: {0}</value>
</data>
<data name="ErrorInSendingMail" xml:space="preserve">
<value>Error in sending mail : {0}</value>
</data>
<data name="UserKeyIsRequired" xml:space="preserve">
<value>A user key is required.</value>
</data>
<data name="CouldNotFindAnyoneWithThatUsernameOrEmail" xml:space="preserve">
<value>Could not find anyone with that username or email.</value>
</data>
<data name="InvalidOrExpiredPasswordResetToken" xml:space="preserve">
<value>The Password Reset Token is not valid or expired.</value>
</data>
<data name="TokenExpirationShouldGiveUser1MinuteToChangePassword" xml:space="preserve">
<value>Token expiration should give the user at least a minute to change their password</value>
</data>
<data name="Yes" xml:space="preserve">
<value>Yes</value>
</data>
<data name="No" xml:space="preserve">
<value>No</value>
</data>
<data name="TitleMatchesExistingRegistration" xml:space="preserve">
<value>The title of your package, '{0}', is similar to the ID of an existing package, which can cause confusion with our users. Please modify the title of your package and try uploading again.</value>
</data>
<data name="InvalidPortableFramework" xml:space="preserve">
<value>The package framework '{0}' is not supported. Frameworks within the portable profile are not allowed to have profiles themselves.</value>
</data>
<data name="PackageEntryFromTheFuture" xml:space="preserve">
<value>The package is invalid and cannot be uploaded. One or more files, such as '{0}' have a date in the future.</value>
</data>
<data name="AzureActiveDirectory_SignInMessage" xml:space="preserve">
<value>Sign in with Azure Active Directory</value>
</data>
<data name="AzureActiveDirectory_AccountNoun" xml:space="preserve">
<value>Azure Active Directory account</value>
</data>
<data name="ApiKeyCanNotBeDefaultGuid" xml:space="preserve">
<value>API key can not be the default Guid.</value>
</data>
<data name="WarningApiKeyAboutToExpire" xml:space="preserve">
<value>Your API key expires in {0} days. Visit {1} to regenerate your API key.</value>
</data>
<data name="WarningApiKeyExpired" xml:space="preserve">
<value>Your API key has expired. Visit {0} to generate a new API key.</value>
</data>
<data name="CredentialNotFound" xml:space="preserve">
<value>Credential not found.</value>
</data>
<data name="PackageCreatedFromApi" xml:space="preserve">
<value>Package created from API.</value>
</data>
<data name="AMinute" xml:space="preserve">
<value>a minute</value>
</data>
<data name="Minutes" xml:space="preserve">
<value>{0} minutes</value>
</data>
<data name="UserAccountLocked" xml:space="preserve">
<value>Your account was locked after too many unsuccessful sign-in attempts. Please try again in {0}.</value>
</data>
<data name="ScopeDescription_All" xml:space="preserve">
<value>All</value>
</data>
<data name="ScopeDescription_PushPackage" xml:space="preserve">
<value>Push new packages and package versions</value>
</data>
<data name="ScopeDescription_PushPackageVersion" xml:space="preserve">
<value>Push only new package versions</value>
</data>
<data name="ScopeDescription_UnlistPackage" xml:space="preserve">
<value>Unlist package</value>
</data>
<data name="ScopeDescription_Unknown" xml:space="preserve">
<value>Unknown</value>
</data>
<data name="ApiKeyDescriptionRequired" xml:space="preserve">
<value>Can't generate an API key without a description.</value>
</data>
<data name="Unsupported" xml:space="preserve">
<value>Unsupported</value>
</data>
<data name="UploadPackage_InvalidNuspecMultiple" xml:space="preserve">
<value>The NuGet package contains an invalid .nuspec file. The errors encountered were: '{0}'. Correct the errors and try again.</value>
</data>
<data name="UploadPackage_IdVersionConflict" xml:space="preserve">
<value>There is a conflict with the ID and version of your package and another package. Please change your package's ID or version and try again.</value>
</data>
<data name="Emails_ApiKeyAdded_Body" xml:space="preserve">
<value>API key '{0}' was added to your account and can now be used. If you did not request this change, please reply to this email to contact support.</value>
</data>
<data name="Emails_ApiKeyRemoved_Body" xml:space="preserve">
<value>API key '{0}' was removed from your account and can no longer be used. If you did not request this change, please reply to this email to contact support.</value>
</data>
<data name="NonScopedApiKeyDescription" xml:space="preserve">
<value>Full access API key</value>
</data>
<data name="ScopeDescription_VerifyPackage" xml:space="preserve">
<value>Verify package ownership</value>
</data>
<data name="WarningApiDeprecated" xml:space="preserve">
<value>API '{0}' is deprecated and may be removed in a future version.</value>
</data>
<data name="NuGetPackagePropertyMissing" xml:space="preserve">
<value>A nuget package's {0} property is required.</value>
</data>
<data name="SecurityPolicy_RequireApiKeyWithPackageVerifyScope" xml:space="preserve">
<value>A package verification key is required to push symbols. Please contact support@nuget.org to get more details.</value>
</data>
<data name="SecurityPolicy_RequireMinProtocolVersionForPush" xml:space="preserve">
<value>A client version '{0}' or higher is required to be able to push packages. Please contact support@nuget.org to get more details.</value>
</data>
<data name="PackageVersionDiffersOnlyByMetadataAndCannotBeModified" xml:space="preserve">
<value>Package versions that differ only by metadata cannot be uploaded. A package with ID '{0}' and version '{1}' already exists and cannot be modified.</value>
</data>
<data name="AddOwnerConfirmation" xml:space="preserve">
<value>Please confirm if you would like to proceed adding '{0}' as a co-owner of this package.</value>
</data>
<data name="AddOwner_CurrentUserNotFound" xml:space="preserve">
<value>Current user not found.</value>
</data>
<data name="AddOwner_NotPackageOwner" xml:space="preserve">
<value>You are not the package owner.</value>
</data>
<data name="AddOwner_OwnerNotConfirmed" xml:space="preserve">
<value>Sorry, '{0}' hasn't verified their email account yet and we cannot proceed with the request.</value>
</data>
<data name="AddOwner_OwnerNotFound" xml:space="preserve">
<value>Owner not found.</value>
</data>
<data name="AddOwner_PackageNotFound" xml:space="preserve">
<value>Package not found.</value>
</data>
<data name="AddOwnerConfirmation_SecurePushRequiredByNewOwner" xml:space="preserve">
<value>User '{0}' has the following requirements that will be enforced for all co-owners once the user accepts ownership of this package:
{1}
Note this step cannot be easily undone. If you are unsure and/or need more information, please contact '{2}'.</value>
</data>
<data name="AddOwnerConfirmation_SecurePushRequiredByOwner" xml:space="preserve">
<value>Owner(s) '{0}' has (have) the following requirements that will be enforced for user '{1}' once the user accepts ownership of this package:
{2}
Note this step cannot be easily undone. If you are unsure and/or need more information, please contact '{3}'.</value>
</data>
<data name="AddOwnerConfirmation_SecurePushRequiredByPendingOwner" xml:space="preserve">
<value>Pending owner(s) '{0}' has (have) the following requirements that will be enforced for all co-owners, including '{1}', once ownership requests are accepted:
{2}
Note this step cannot be easily undone. If you are unsure and/or need more information, please contact '{3}'.</value>
</data>
<data name="AddOwnerNotification_SecurePushRequired_Propagators" xml:space="preserve">
<value>Owner(s) '{0}' has (have) the following requirements that are now enforced for co-owner(s) '{1}':
{2}
For more information, please contact '{3}'.</value>
</data>
<data name="AddOwnerRequest_SecurePushRequiredByNewOwner" xml:space="preserve">
<value>Note: The following policies will be enforced on package co-owners once you accept this request. If you are unsure and/or need more information, please contact '{0}'.
{1}</value>
</data>
<data name="AddOwnerRequest_SecurePushRequiredByOwner" xml:space="preserve">
<value>Note: Owner(s) '{0}' has (have) the following policies that will be enforced on your account once you accept this request. If you are unsure and/or need more information, please contact '{1}'.
{2}</value>
</data>
<data name="AddOwnerRequest_SecurePushRequiredByPendingOwner" xml:space="preserve">
<value>Note: Pending owner(s) '{0}' has (have) the following policies that will be enforced on your account once ownership requests are accepted. If you are unsure and/or need more information, please contact '{1}'.
{2}</value>
</data>
<data name="AddOwnerNotification_SecurePushRequired_Subscribed" xml:space="preserve">
<value>Owner(s) '{0}' has (have) the following requirements that are now enforced for your account:
{1}
For more information, please contact '{2}'.</value>
</data>
<data name="DisplayPackage_SecurePushRequired" xml:space="preserve">
<value>Owner(s) '{0}' require(s) that all co-owners use client version {1} or higher to push all of their packages. For more information, contact {2}.
</value>
</data>
<data name="UploadPackage_UploadInProgress" xml:space="preserve">
<value>Cannot upload file because an upload is already in progress.</value>
</data>
<data name="VerifyPackage_PackageFileModified" xml:space="preserve">
<value>Your attempt to verify the package submission failed, because the package file appears to have changed. Please try again.</value>
</data>
<data name="VerifyPackage_UnexpectedError" xml:space="preserve">
<value>There was an unexpected error. Please try uploading the package again.</value>
</data>
<data name="VerifyPackage_UploadNotFound" xml:space="preserve">
<value>Your attempt to verify the package submission failed, because we could not find the uploaded package file. Please try again.</value>
</data>
<data name="PasswordDoesNotMatch" xml:space="preserve">
<value>The new password does not match the verify password field.</value>
</data>
<data name="AzureActiveDirectory_RegisterMessage" xml:space="preserve">
<value>Register with Azure Active Directory</value>
</data>
<data name="ReservedNamespace_InvalidCharactersInNamespace" xml:space="preserve">
<value>The namespace '{0}' contains invalid characters. Examples of valid namespaces include 'MyNamespace', 'MyNamespace.' or 'MyNamespace-' etc.</value>
</data>
<data name="ReservedNamespace_InvalidNamespace" xml:space="preserve">
<value>Invalid namespace specified</value>
</data>
<data name="ReservedNamespace_InvalidUsername" xml:space="preserve">
<value>Invalid or null username specified.</value>
</data>
<data name="ReservedNamespace_NamespaceExceedsLength" xml:space="preserve">
<value>Namespace must not exceed {0} characters.</value>
</data>
<data name="ReservedNamespace_NamespaceNotAvailable" xml:space="preserve">
<value>The specified namespace is already reserved or is a more liberal namespace.</value>
</data>
<data name="ReservedNamespace_NamespaceNotFound" xml:space="preserve">
<value>Namespace '{0}' not found.</value>
</data>
<data name="ReservedNamespace_UserNotAnOwner" xml:space="preserve">
<value>User '{0}' is not an owner of the specified namespace</value>
</data>
<data name="ReservedNamespace_UserNotFound" xml:space="preserve">
<value>User not found with username '{0}'</value>
</data>
<data name="ReservedNamespace_ReservedIndicatorTooltip" xml:space="preserve">
<value>The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.</value>
</data>
<data name="UploadPackage_IdNamespaceConflict" xml:space="preserve">
<value>This package ID has been reserved. Please request access to upload to this reserved namespace from the owner of the reserved prefix, or re-upload the package with a different ID.</value>
</data>
<data name="PreviewReadMe_ConversionFailed" xml:space="preserve">
<value>Conversion of Markdown to HTML failed with '{0}'.</value>
</data>
<data name="PreviewReadMe_ReadMeMissing" xml:space="preserve">
<value>There is no Markdown Documentation available to preview.</value>
</data>
<data name="ReadMeInvalidSourceType" xml:space="preserve">
<value>'{0}' is not a valid Markdown Documentation source type.</value>
</data>
<data name="ReadMeMaxLengthExceeded" xml:space="preserve">
<value>The Markdown Documentation file must be less than {0} bytes.</value>
</data>
<data name="ReadMePostedFileExtensionInvalid" xml:space="preserve">
<value>The Documentation file must end with a Markdown extension '{0}'.</value>
</data>
<data name="ReadMeUrlHostInvalid" xml:space="preserve">
<value>The Documentation URL must be a raw Markdown file hosted on GitHub.</value>
</data>
<data name="ReservedNamespace_OwnerAdded" xml:space="preserve">
<value>The user '{0}' is now an owner of the prefix '{1}'.</value>
</data>
<data name="ReservedNamespace_OwnerRemoved" xml:space="preserve">
<value>The user '{0}' was removed from owners list of prefix '{1}'.</value>
</data>
<data name="ReservedNamespace_PrefixAdded" xml:space="preserve">
<value>The prefix '{0}' has been reserved.</value>
</data>
<data name="ReservedNamespace_PrefixRemoved" xml:space="preserve">
<value>The prefix '{0}' has been deleted.</value>
</data>
<data name="ReservedNamespace_UserAlreadyOwner" xml:space="preserve">
<value>The user '{0}' is already an owner of the specified namespace.</value>
</data>
<data name="CannotEnqueueDueToReadOnly" xml:space="preserve">
<value>Enqueuing unavailable: the gallery is currently in read only mode, with limited service. Please try again later.</value>
</data>
<data name="ReservedNamespace_RegistrationNotFound" xml:space="preserve">
<value>The package registraton Id '{0}' is missing or not found in the reserved namespace '{1}'.</value>
</data>
<data name="RemoveOwner_NotAllowed" xml:space="preserve">
<value>The user '{0}' does not have permission to remove the owner '{1}'.</value>
</data>
<data name="OrganizationsCannotCreateCredentials" xml:space="preserve">
<value>Organization accounts cannot create credentials.</value>
</data>
<data name="AccountDelete_AccountAlreadyDeleted" xml:space="preserve">
<value>The account '{0}' was already deleted. No action was performed.</value>
</data>
<data name="AccountDelete_Fail" xml:space="preserve">
<value>An exception was encountered while trying to delete the account '{0}': {1}</value>
</data>
<data name="AccountDelete_Success" xml:space="preserve">
<value>The account '{0}' was deleted succesfully.</value>
</data>
<data name="AccountDelete_CreateSupportRequestFails" xml:space="preserve">
<value>The request failed to be submitted. Please try again or contact support.</value>
</data>
<data name="AccountDelete_SupportRequestTitle" xml:space="preserve">
<value>Account Deletion Request</value>
</data>
<data name="MessageIsRequired" xml:space="preserve">
<value>Please enter a message.</value>
</data>
<data name="OwnerSupportRequestSubjectFormat" xml:space="preserve">
<value>Owner Support Request for '{0}' version {1}</value>
<comment>{0} is the package ID. {1} is the normalized package version.</comment>
</data>
<data name="SupportRequestSentTransientMessage" xml:space="preserve">
<value>Your support request has been sent to the gallery operators.</value>
</data>
<data name="UserPackageDeleteCompleteTransientMessage" xml:space="preserve">
<value>We're performing the package delete right now. It may take a while for this change to propagate through our system.</value>
</data>
<data name="UserPackageDeleteConfirmationIsRequired" xml:space="preserve">
<value>You must confirm the package deletion request.</value>
</data>
<data name="UserPackageDeleteDecisionIsRequired" xml:space="preserve">
<value>You must choose whether to delete the package or contact support.</value>
</data>
<data name="AutomatedPackageDeleteSignature" xml:space="preserve">
<value>(automated)</value>
</data>
<data name="UserPackageDeleteSupportRequestMessage" xml:space="preserve">
<value>This support request is intended for automatic package deletion.</value>
</data>
<data name="ApiKeyOwnerRequired" xml:space="preserve">
<value>You must specify a package owner to generate an API key.</value>
</data>
<data name="ApiKeyScopesNotAllowed" xml:space="preserve">
<value>The current user does not have permission to create an ApiKey with the specified owner or scopes.</value>
</data>
<data name="AddOwner_AlreadyOwner" xml:space="preserve">
<value>The user '{0}' is already an owner or pending owner of the package.</value>
</data>
<data name="RemoveOwner_NotOwner" xml:space="preserve">
<value>The user '{0}' is not an owner or pending owner of the package.</value>
</data>
<data name="ManagePackageOwners_AlreadyPending" xml:space="preserve">
<value>The user '{0}' is already an owner or pending owner of this package.</value>
</data>
<data name="ManagePackageOwners_Error" xml:space="preserve">
<value>An unexpected error occurred: {0}</value>
</data>
<data name="ManagePackageOwners_InvalidUsername" xml:space="preserve">
<value>Please enter a valid user name.</value>
</data>
<data name="ManagePackageOwners_RemovingOrganization" xml:space="preserve">
<value>Are you sure you want to remove your organization as an owner of this package?</value>
</data>
<data name="ManagePackageOwners_RemovingOwnership" xml:space="preserve">
<value>You will no longer be able to manage the package if you do.</value>
</data>
<data name="ManagePackageOwners_RemovingSelf" xml:space="preserve">
<value>Are you sure you want to remove yourself as an owner of this package?</value>
</data>
<data name="AccountDelete_OrganizationDeleteNotImplemented" xml:space="preserve">
<value>Account '{0}' cannot be deleted because it is an organization. The organization must be manually migrated to a user account without memberships before the account can be deleted.</value>
</data>
<data name="PackageIsLocked" xml:space="preserve">
<value>Package '{0}' has been locked. This means you cannot publish a new version or change the listing status of a published package version. Please contact support@nuget.org.</value>
</data>
<data name="UploadPackage_NewIdOnBehalfOfUserNotAllowed" xml:space="preserve">
<value>User '{0}' does not have the rights to upload a package with a new ID on behalf of user '{1}'.</value>
</data>
<data name="UploadPackage_NewVersionOnBehalfOfUserNotAllowed" xml:space="preserve">
<value>User '{0}' does not have the rights to upload a new version of an existing package on behalf of user '{1}'.</value>
</data>
<data name="VerifyPackage_OwnerInvalid" xml:space="preserve">
<value>User '{0}' does not have the rights to upload new versions of package '{1}'.</value>
</data>
<data name="VerifyPackage_UserInvalid" xml:space="preserve">
<value>You do not have permission to upload packages as user '{0}'.</value>
</data>
<data name="VerifyPackage_UserNonExistent" xml:space="preserve">
<value>The user '{0}' doesn't exist. You cannot upload a package as a user that doesn't exist.</value>
</data>
<data name="TransformAccount_Failed" xml:space="preserve">
<value>An unexpected error occurred while transforming this account. Contact support for assistance.</value>
</data>
<data name="TransformAccount_OrganizationAccountDoesNotExist" xml:space="preserve">
<value>Organization account '{0}' does not exist.</value>
</data>
<data name="TransformAccount_Success" xml:space="preserve">
<value>Account '{0}' was successfully transformed into an organization.</value>
</data>
<data name="TransformAccount_AccountHasMemberships" xml:space="preserve">
<value>You are a member of one or more organizations. You must leave all organizations before transforming your account.</value>
</data>
<data name="TransformAccount_AccountNotConfirmed" xml:space="preserve">
<value>Account '{0}' should be a confirmed user.</value>
</data>
<data name="TransformAccount_AccountIsAnOrganization" xml:space="preserve">
<value>Account '{0}' is already an organization.</value>
</data>
<data name="TransformAccount_AdminAccountDoesNotExist" xml:space="preserve">
<value>Administrator account '{0}' does not exist.</value>
</data>
<data name="TransformAccount_AdminAccountNotConfirmed" xml:space="preserve">
<value>Administrator account '{0}' has not confirmed their email address.</value>
</data>
<data name="TransformAccount_RequestExists" xml:space="preserve">
<value>A transform request, with account '{0}' as administrator, is in progress. A new request will override any existing request(s).</value>
</data>
<data name="TransformAccount_SignInToConfirm" xml:space="preserve">
<value>Please sign in as administrator '{0}' to finish transforming account '{1}' into an organization.</value>
</data>
<data name="TransformAccount_AdminAccountIsOrganization" xml:space="preserve">
<value>Administrator account '{0}' cannot be an organization.</value>
</data>
<data name="TransformAccount_AdminMustBeDifferentAccount" xml:space="preserve">
<value>Administrator account '{0}' cannot be the same account as the one being transformed.</value>
</data>
<data name="AccountIsLinkedToAnotherExternalAccount" xml:space="preserve">
<value>The account with the email {0} is linked to another Microsoft account.
If you would like to update the linked Microsoft account you can do so from the account settings page.</value>
</data>
<data name="ChangeCredential_Failed" xml:space="preserve">
<value>Failed to update the Microsoft account with '{0}'. This could happen if it is already linked to another NuGet account. See {1} for more details.</value>
</data>
<data name="ChangeCredential_NotAllowed" xml:space="preserve">
<value>The change of Azure active directory account is not allowed by your organization(s): {0}. Please leave these organization(s) to change your login.</value>
</data>
<data name="ChangeCredential_Success" xml:space="preserve">
<value>Successfully linked the Microsoft account ({0}).</value>
</data>
<data name="PasswordLoginDeprecated" xml:space="preserve">
<value>The password login is deprecated. You must use Microsoft account to sign in.</value>
</data>
<data name="ChangeCredential_ProviderNotFound" xml:space="preserve">
<value>No valid external provider found for authentication</value>
</data>
<data name="OrganizationEmailConfirmed" xml:space="preserve">
<value>You have successfully confirmed the organization email address.</value>
</data>
<data name="OrganizationEmailPreferencesUpdated" xml:space="preserve">
<value>The organization email preferences have been updated.</value>
</data>
<data name="OrganizationEmailUpdateCancelled" xml:space="preserve">
<value>You canceled your organization email address change request.</value>
</data>
<data name="UserEmailConfirmed" xml:space="preserve">
<value>You have successfully confirmed your email address!</value>
</data>
<data name="DeleteMember_CannotDeleteLastAdmin" xml:space="preserve">
<value>Organization member '{0}' is the last administrator and cannot be deleted.</value>
</data>
<data name="UpdateMember_CannotRemoveLastAdmin" xml:space="preserve">
<value>You can't change your role to collaborator. In order to change, another collaborator must be assigned as an administrator.</value>
</data>
<data name="UpdateOrDeleteMember_MemberNotFound" xml:space="preserve">
<value>Organization member '{0}' was not found.</value>
</data>
<data name="DeleteMember_Success" xml:space="preserve">
<value>The organization member was deleted.</value>
</data>
<data name="OrganizationMemberNameIsRequired" xml:space="preserve">
<value>Member name is required.</value>
</data>
<data name="AddMember_AlreadyAMember" xml:space="preserve">
<value>User '{0}' is already a member of this organization.</value>
</data>
<data name="AddMember_UserNotFound" xml:space="preserve">
<value>User '{0}' does not exist. </value>
</data>
<data name="AddMember_UserNotConfirmed" xml:space="preserve">
<value>User '{0}' has not confirmed their email.</value>
</data>
<data name="ChangeCredential_SuccessDifferentEmail" xml:space="preserve">
<value>Successfully linked the Microsoft account ({0}). Note that the email address associated with the new linked Microsoft account is different than the NuGet.org account email ({1}).</value>
</data>
<data name="AddMember_UserDoesNotMeetOrganizationPolicy" xml:space="preserve">
<value>User '{0}' has not linked their account to an AAD credential matching this organization.</value>
</data>
<data name="Organizations_AdminAccountDoesNotHaveTenant" xml:space="preserve">
<value>Administrator account '{0}' is not linked to an AAD credential with an organization tenant.</value>
</data>
<data name="DeleteMember_CannotRemoveLastAdmin" xml:space="preserve">
<value>You can't leave the organization. In order to leave the organization, another collaborator must be assigned as an administrator.</value>
</data>
<data name="SigninAssistance_EmailMismatched" xml:space="preserve">
<value>The email address you provided does not match with the email address linked to the account</value>
</data>
<data name="SigninAssistance_InvalidEmail" xml:space="preserve">
<value>Please enter a valid email address</value>
</data>
<data name="SigninAssistance_InvalidUser" xml:space="preserve">
<value>Please enter a valid username</value>
</data>
<data name="TransformAccount_Rejected" xml:space="preserve">
<value>The transform request for you to become an admin of '{0}' has been successfully cancelled.</value>
</data>
<data name="TransformAccount_FailedMissingRequestToCancel" xml:space="preserve">
<value>The transform request you are attempting to cancel was not found.</value>
</data>
<data name="TransformAccount_Cancelled" xml:space="preserve">
<value>The transform request for your account has been successfully cancelled.</value>
</data>
<data name="AddMember_MissingRequest" xml:space="preserve">
<value>There is no request for user '{0}' for join this organization with that token.</value>
</data>
<data name="CancelMemberRequest_Success" xml:space="preserve">
<value>The pending organization member was deleted.</value>
</data>
<data name="CancelMembershipRequest_MissingRequest" xml:space="preserve">
<value>There is no request for user '{0}' to join this organization.</value>
</data>
<data name="RejectMembershipRequest_NotFound" xml:space="preserve">
<value>There is no request for user '{0}' for join this organization with that token.</value>
</data>
<data name="AddMember_PolicyFailure" xml:space="preserve">
<value>You cannot accept this request because you no longer meet the requirements of this organization. {0} Please contact support for more details.</value>
</data>
<data name="AddMember_Success" xml:space="preserve">
<value>You are now a member of organization '{0}'.</value>
</data>
<data name="VerifyPackage_OwnerUnconfirmed" xml:space="preserve">
<value>User '{0}' is unconfirmed and cannot be the owner of the package.</value>
</data>
<data name="ApiKeyOwnerUnconfirmed" xml:space="preserve">
<value>The specified API key is scoped to an owner that is unconfirmed. You must confirm the owner that this API key is scoped to before you can use it.</value>
</data>
<data name="Member_OrganizationUnconfirmed" xml:space="preserve">
<value>Your organization must be confirmed before you can change its membership.</value>
</data>
<data name="AddMember_UserIsOrganization" xml:space="preserve">
<value>User '{0}' is an organization and cannot be a member of another organization.</value>
</data>
<data name="Organizations_NotSupportedForAccount" xml:space="preserve">
<value>Account '{0}' does not support organizations.</value>
</data>
<data name="AccountSelfDelete_Fail" xml:space="preserve">
<value>An exception was encoutered while trying to delete the account. Please contact support for assistance.</value>
</data>
<data name="ValidateCertificate_FileTooLarge" xml:space="preserve">
<value>The file exceeds the size limit of {0} bytes.</value>
</data>
<data name="ValidateCertificate_InvalidEncoding" xml:space="preserve">
<value>The file must be a DER encoded binary X.509 certificate.</value>
</data>
<data name="ValidateCertificate_InvalidFileLength" xml:space="preserve">
<value>The file length is invalid.</value>
</data>
<data name="ValidateCertificate_InvalidFileType" xml:space="preserve">
<value>The file extension must be {0}.</value>
</data>
<data name="ValidateCertificate_InvalidStream" xml:space="preserve">
<value>The file stream is invalid.</value>
</data>
<data name="ValidateCertificate_StreamMustBeSeekable" xml:space="preserve">
<value>The file stream must be seekable.</value>
</data>
<data name="ArgumentCannotBeNullOrEmpty" xml:space="preserve">
<value>The argument cannot be null or empty.</value>
</data>
<data name="CertificateDoesNotExist" xml:space="preserve">
<value>The certificate does not exist.</value>
</data>
<data name="CertificateFileIsRequired" xml:space="preserve">
<value>A certificate file is required.</value>
</data>
<data name="MultiFactorAuth_Enabled" xml:space="preserve">
<value>Two-factor authentication is enabled for your account. It will be enforced the next time you log into {0}.</value>
</data>
<data name="MultiFactorAuth_LoginUpdate" xml:space="preserve">
<value>We noticed you used two-factor authentication for login. We have enabled your account to use two-factor authentication going forward.</value>
</data>
<data name="MultiFactorAuth_Disabled" xml:space="preserve">
<value>Two-factor authentication has been disabled for your account. Please close all sessions for Microsoft accounts before you log into {0} to prevent automatic enabling of this setting.</value>
</data>
<data name="RequiredSigner_AnyWithMixedResult" xml:space="preserve">
<value>At least one package owner has no certificate while at least one other package owner has at least one certificate, which means future package submissions may be unsigned or signed with any certificate registered to any owner.</value>
</data>
<data name="RequiredSigner_AnyWithSignedResult" xml:space="preserve">
<value>All package owners have at least one certificate, which means future package submissions must be signed.</value>
</data>
<data name="RequiredSigner_AnyWithUnsignedResult" xml:space="preserve">
<value>All package owners have at least one certificate, which means future package submissions must be signed.</value>
</data>
<data name="RequiredSigner_Confirm" xml:space="preserve">
<value>Are you sure you want to change the required signer for this package?</value>
</data>
<data name="RequiredSigner_OwnerHasAtLeastOneCertificate" xml:space="preserve">
<value>'{0}' currently has at least one certificate, which means future package submissions must be signed.</value>
</data>
<data name="RequiredSigner_OwnerHasNoCertificate" xml:space="preserve">
<value>'{0}' currently has no certificate, which means future package submissions must be unsigned.</value>
</data>
<data name="RequiredSigner_ThisAction" xml:space="preserve">
<value>This action will change the required signer to '{0}' for all future submissions for this package.</value>
</data>
<data name="DiscontinuedLogin_PasswordRemoved" xml:space="preserve">
<value>The password login is discontinued and has been removed for your account. Please use your Microsoft account to log into {0} going forward.</value>
</data>
<data name="InvalidRecaptchaResponse" xml:space="preserve">
<value>Recaptcha response was not valid. Try again or email support if you need assistance.</value>
</data>
<data name="FailedValidationHardDeleteReason" xml:space="preserve">
<value>Automatic hard-delete for reupload of package that failed validation</value>
</data>
<data name="PackageFileTooLarge" xml:space="preserve">
<value>The package file exceeds the size limit. Please try again.</value>
</data>
<data name="UploadPackage_PackageIsNotSigned" xml:space="preserve">
<value>This package must be signed with a registered certificate.</value>
</data>
<data name="UploadPackage_PackageIsSignedButMissingCertificate_CurrentUserCanManageCertificates" xml:space="preserve">
<value>The package was signed. You must register the signing certificate to publish signed packages.</value>
</data>
<data name="UploadPackage_PackageIsSignedButMissingCertificate_ManageCertificate" xml:space="preserve">
<value>You can manage your certificates on the Account Settings page.</value>
</data>
<data name="UploadPackage_PackageIsSignedButMissingCertificate_RequiredSigner" xml:space="preserve">
<value>The package was signed. The owner '{0}' must register the signing certificate to publish signed packages.</value>
<comment>{0} is the signer name.</comment>
</data>
<data name="SecurityPolicy_RequireMicrosoftPackageMetadataComplianceForPush" xml:space="preserve">
<value>The package is not compliant with metadata requirements for Microsoft packages on NuGet.org. Go to https://aka.ms/Microsoft-NuGet-Compliance for more information.
Policy violations: {0}</value>
</data>
<data name="SecurityPolicy_RequirePackagePrefixReserved" xml:space="preserve">
<value>You have not published a package with this prefix in the past. This means other users may be able to push packages starting with the same prefix. Contact account@nuget.org to reserve the prefix. Go to https://docs.microsoft.com/nuget/reference/id-prefix-reservation to learn more about Package ID prefix reservation.</value>
</data>
<data name="SecurityPolicy_CopyrightNotCompliant" xml:space="preserve">
<value>The package metadata contains a non-compliant copyright element.</value>
</data>
<data name="SecurityPolicy_RequiredAuthorMissing" xml:space="preserve">
<value>The package metadata is missing required author '{0}'.</value>
</data>
<data name="SecurityPolicy_RequiredLicenseUrlMissing" xml:space="preserve">
<value>The package metadata is missing required LicenseUrl.</value>
</data>
<data name="SecurityPolicy_RequiredProjectUrlMissing" xml:space="preserve">
<value>The package metadata is missing required ProjectUrl.</value>
</data>
<data name="SymbolsPackage_PackageIdAndVersionNotFound" xml:space="preserve">
<value>A package with ID '{0}' and version '{1}' does not exist. Please upload the package before uploading its symbols.</value>
</data>
<data name="SymbolsPackage_NotSymbolPackage" xml:space="preserve">
<value>The uploaded package is not a valid symbols package. The required 'SymbolsPackage' package type is missing.</value>
</data>
<data name="SymbolsPackage_FailedToReadPackage" xml:space="preserve">
<value>Failed to read the symbols package. Ensure it is a valid symbols package (.snupkg).</value>
</data>
<data name="SymbolsPackage_InvalidDataInNuspec" xml:space="preserve">
<value>Invalid metadata items specified in nuspec. Please remove '{0}' from the nuspec.</value>
</data>
<data name="SymbolsPackage_InvalidFiles" xml:space="preserve">
<value>Invalid file found in the uploaded package. Symbols packages should only contain '{0}' files.</value>
</data>
<data name="SymbolsPackage_UploadNotAllowed" xml:space="preserve">
<value>You do not have the permissions to upload symbol packages.</value>
</data>
<data name="SymbolsPackage_ConflictValidating" xml:space="preserve">
<value>It looks like there is another copy of this symbols package pending validation(s). Please wait for the validation(s) to finish before trying to replace the symbols package.</value>
</data>
<data name="UploadPackage_SignedToUnsignedTransition" xml:space="preserve">
<value>The previous package version '{0}' is author signed but the uploaded package is unsigned. To avoid this warning, sign the package before uploading.</value>
<comment>{0} is the previous package's normalized version.</comment>
</data>
<data name="SymbolsPackage_PackageNotAvailable" xml:space="preserve">
<value>No available symbols package found for ID {0} and version {1}.</value>
</data>
<data name="AddMember_NameIsEmail" xml:space="preserve">
<value>You must add a member by username, not an email address.</value>
</data>
<data name="AddOwner_NameIsEmail" xml:space="preserve">
<value>You must add an owner by username, not an email address.</value>
</data>
<data name="TransformAccount_AdminNameIsEmail" xml:space="preserve">
<value>You must choose an administrator by username, not an email address.</value>
</data>
<data name="WarningNotHttpsOrGitRepositoryUrlScheme" xml:space="preserve">
<value>Repository URL scheme should be 'https' or 'git'. The provided URL will not be displayed.</value>
</data>
<data name="WarningNotHttpsRepositoryUrlScheme" xml:space="preserve">
<value>Repository URL scheme should be 'https'. The provided URL will not be displayed.</value>
</data>
<data name="UploadPackage_PackageContainsTooManyEntries" xml:space="preserve">
<value>The package contains too many files and/or folders.</value>
</data>
<data name="TyposquattingCheckFails" xml:space="preserve">
<value>The uploaded package's id is too similar to the already existing packages: {0} </value>
<comment>{0} is the existing collision Ids compared with the uploaded package Id.</comment>
</data>
<data name="SymbolsPackage_UploadSuccessful" xml:space="preserve">
<value>Successfully uploaded the symbols package for package with ID {0} and version {1}.</value>
</data>
<data name="SymbolsPackage_Deleted" xml:space="preserve">
<value>The symbols package associated with this package has been deleted.</value>
</data>
<data name="SymbolsPackage_RevalidateDeletedPackage" xml:space="preserve">
<value>The latest associated symbols package for package with ID {0} and version {1} is deleted. Cannot revalidate a deleted symbols package.</value>
</data>
<data name="Emails_ForgotPassword_MarkdownBody" xml:space="preserve">
<value>The word on the street is you lost your password. Sorry to hear it!
If you haven't forgotten your password you can safely ignore this email. Your password has not been changed.
Click the following link within the next hour to reset your password:
[{0}]({0})
Note that NuGet.org password login is no longer supported. Please use Microsoft account to sign into {1}.
Thanks,
The {1} Team</value>
</data>
<data name="Emails_SetPassword_MarkdownBody" xml:space="preserve">
<value>The word on the street is you want to set a password for your account.
If you didn't request a password, you can safely ignore this message. A password has not yet been set.
Click the following link within the next hour to set your password:
[{0}]({0})
Note that NuGet.org password login is no longer supported. Please use Microsoft account to sign into {1}.
Thanks,
The {1} Team</value>
</data>
<data name="UploadPackage_NotAcceptingPackagesWithLicense" xml:space="preserve">
<value>This package contains a <license> metadata which is currently not supported.</value>