forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStrings.resx
4364 lines (4353 loc) · 227 KB
/
Strings.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="Acc_CreateAbst" xml:space="preserve">
<value>Cannot create an abstract class.</value>
</data>
<data name="Acc_CreateAbstEx" xml:space="preserve">
<value>Cannot create an instance of {0} because it is an abstract class.</value>
</data>
<data name="Acc_CreateArgIterator" xml:space="preserve">
<value>Cannot dynamically create an instance of ArgIterator.</value>
</data>
<data name="Acc_CreateGeneric" xml:space="preserve">
<value>Cannot create a type for which Type.ContainsGenericParameters is true.</value>
</data>
<data name="Acc_CreateGenericEx" xml:space="preserve">
<value>Cannot create an instance of {0} because Type.ContainsGenericParameters is true.</value>
</data>
<data name="Acc_CreateInterface" xml:space="preserve">
<value>Cannot create an instance of an interface.</value>
</data>
<data name="Acc_CreateInterfaceEx" xml:space="preserve">
<value>Cannot create an instance of {0} because it is an interface.</value>
</data>
<data name="Acc_CreateVoid" xml:space="preserve">
<value>Cannot dynamically create an instance of System.Void.</value>
</data>
<data name="Acc_NotClassInit" xml:space="preserve">
<value>Type initializer was not callable.</value>
</data>
<data name="Acc_ReadOnly" xml:space="preserve">
<value>Cannot set a constant field.</value>
</data>
<data name="Access_Void" xml:space="preserve">
<value>Cannot create an instance of void.</value>
</data>
<data name="AggregateException_ctor_DefaultMessage" xml:space="preserve">
<value>One or more errors occurred.</value>
</data>
<data name="AggregateException_ctor_InnerExceptionNull" xml:space="preserve">
<value>An element of innerExceptions was null.</value>
</data>
<data name="AggregateException_DeserializationFailure" xml:space="preserve">
<value>The serialization stream contains no inner exceptions.</value>
</data>
<data name="AggregateException_InnerException" xml:space="preserve">
<value>(Inner Exception #{0}) </value>
<comment>This text is prepended to each inner exception description during aggregate exception formatting</comment>
</data>
<data name="AppDomain_Name" xml:space="preserve">
<value>Name:</value>
</data>
<data name="AppDomain_NoContextPolicies" xml:space="preserve">
<value>There are no context policies.</value>
</data>
<data name="AppDomain_Policy_PrincipalTwice" xml:space="preserve">
<value>Default principal object cannot be set twice.</value>
</data>
<data name="Arg_AccessException" xml:space="preserve">
<value>Cannot access member.</value>
</data>
<data name="Arg_AccessViolationException" xml:space="preserve">
<value>Attempted to read or write protected memory. This is often an indication that other memory is corrupt.</value>
</data>
<data name="Arg_AmbiguousImplementationException_NoMessage" xml:space="preserve">
<value>Ambiguous implementation found.</value>
</data>
<data name="Arg_AmbiguousMatchException_Attribute" xml:space="preserve">
<value>Multiple custom attributes of the same type '{0}' found.</value>
</data>
<data name="Arg_AmbiguousMatchException_NoMessage" xml:space="preserve">
<value>Ambiguous match found.</value>
</data>
<data name="Arg_AmbiguousMatchException_CustomAttributeData" xml:space="preserve">
<value>Ambiguous match found for '{0}'.</value>
</data>
<data name="Arg_AmbiguousMatchException_MemberInfo" xml:space="preserve">
<value>Ambiguous match found for '{0} {1}'.</value>
</data>
<data name="Arg_AmbiguousMatchException_UnsafeAccessor" xml:space="preserve">
<value>Ambiguity in binding of UnsafeAccessorAttribute.</value>
</data>
<data name="Arg_ApplicationException" xml:space="preserve">
<value>Error in the application.</value>
</data>
<data name="Arg_ArgumentException" xml:space="preserve">
<value>Value does not fall within the expected range.</value>
</data>
<data name="Arg_ArgumentOutOfRangeException" xml:space="preserve">
<value>Specified argument was out of the range of valid values.</value>
</data>
<data name="Arg_ArithmeticException" xml:space="preserve">
<value>Overflow or underflow in the arithmetic operation.</value>
</data>
<data name="Arg_ArrayLengthsDiffer" xml:space="preserve">
<value>Array lengths must be the same.</value>
</data>
<data name="Arg_ArrayPlusOffTooSmall" xml:space="preserve">
<value>Destination array is not long enough to copy all the items in the collection. Check array index and length.</value>
</data>
<data name="Arg_ByteArrayTooSmallForValue" xml:space="preserve">
<value>The array starting from the specified index is not long enough to read a value of the specified type.</value>
</data>
<data name="Arg_ArrayTypeMismatchException" xml:space="preserve">
<value>Attempted to access an element as a type incompatible with the array.</value>
</data>
<data name="Arg_ArrayZeroError" xml:space="preserve">
<value>Array must not be of length zero.</value>
</data>
<data name="Arg_BadDecimal" xml:space="preserve">
<value>Read an invalid decimal value from the buffer.</value>
</data>
<data name="Arg_BadImageFormatException" xml:space="preserve">
<value>Format of the executable (.exe) or library (.dll) is invalid.</value>
</data>
<data name="Arg_BadLiteralFormat" xml:space="preserve">
<value>Encountered an invalid type for a default value.</value>
</data>
<data name="Arg_BogusIComparer" xml:space="preserve">
<value>Unable to sort because the IComparer.Compare() method returns inconsistent results. Either a value does not compare equal to itself, or one value repeatedly compared to another value yields different results. IComparer: '{0}'.</value>
</data>
<data name="InvalidOperation_IncompatibleComparer" xml:space="preserve">
<value>The collection's comparer does not support the requested operation.</value>
</data>
<data name="InvalidOperation_TypeMapMissingEntryAssembly" xml:space="preserve">
<value>Entry assembly is required but was not found.</value>
</data>
<data name="Arg_BufferTooSmall" xml:space="preserve">
<value>Not enough space available in the buffer.</value>
</data>
<data name="Arg_CannotBeNaN" xml:space="preserve">
<value>TimeSpan does not accept floating point Not-a-Number values.</value>
</data>
<data name="Arg_CannotHaveNegativeValue" xml:space="preserve">
<value>String cannot contain a minus sign if the base is not 10.</value>
</data>
<data name="Arg_CannotMarshal" xml:space="preserve">
<value>Type '{0}' cannot be marshaled as an unmanaged structure; no meaningful size or offset can be computed.</value>
</data>
<data name="Arg_CannotMixComparisonInfrastructure" xml:space="preserve">
<value>The usage of IKeyComparer and IHashCodeProvider/IComparer interfaces cannot be mixed; use one or the other.</value>
</data>
<data name="Arg_CannotUnloadAppDomainException" xml:space="preserve">
<value>Attempt to unload the AppDomain failed.</value>
</data>
<data name="Arg_COMAccess" xml:space="preserve">
<value>Must specify property Set or Get or method call for a COM Object.</value>
</data>
<data name="Arg_COMException" xml:space="preserve">
<value>Unexpected HRESULT has been returned from a call to a COM component.</value>
</data>
<data name="Arg_COMPropSetPut" xml:space="preserve">
<value>Only one of the following binding flags can be set: BindingFlags.SetProperty, BindingFlags.PutDispProperty, BindingFlags.PutRefDispProperty.</value>
</data>
<data name="Arg_ContainsNonAscii" xml:space="preserve">
<value>Text must not contain non-ASCII characters.</value>
</data>
<data name="Arg_CreatInstAccess" xml:space="preserve">
<value>Cannot specify both CreateInstance and another access type.</value>
</data>
<data name="Arg_CryptographyException" xml:space="preserve">
<value>Error occurred during a cryptographic operation.</value>
</data>
<data name="Arg_CustomAttributeFormatException" xml:space="preserve">
<value>Binary format of the specified custom attribute was invalid.</value>
</data>
<data name="Arg_CustomAttributeUnknownNamedArgument" xml:space="preserve">
<value>Known custom attribute named arg not recognized.</value>
</data>
<data name="Arg_CustomAttributeDuplicateNamedArgument" xml:space="preserve">
<value>Known custom attribute blob has repeated named argument.</value>
</data>
<data name="Arg_DataMisalignedException" xml:space="preserve">
<value>A datatype misalignment was detected in a load or store instruction.</value>
</data>
<data name="Arg_DecBitCtor" xml:space="preserve">
<value>Decimal constructor requires an array or span of four valid decimal bytes.</value>
</data>
<data name="Arg_DirectoryNotFoundException" xml:space="preserve">
<value>Attempted to access a path that is not on the disk.</value>
</data>
<data name="Arg_DivideByZero" xml:space="preserve">
<value>Attempted to divide by zero.</value>
</data>
<data name="Arg_DlgtNullInst" xml:space="preserve">
<value>Delegate to an instance method cannot have null 'this'.</value>
</data>
<data name="Arg_DlgtTargMeth" xml:space="preserve">
<value>Cannot bind to the target method because its signature is not compatible with that of the delegate type.</value>
</data>
<data name="Arg_DlgtTypeMis" xml:space="preserve">
<value>Delegates must be of the same type.</value>
</data>
<data name="Arg_DllNotFoundException" xml:space="preserve">
<value>Dll was not found.</value>
</data>
<data name="Arg_DllNameCannotBeEmpty" xml:space="preserve">
<value>DllName cannot be empty.</value>
</data>
<data name="Arg_DuplicateWaitObjectException" xml:space="preserve">
<value>Duplicate objects in argument.</value>
</data>
<data name="Arg_EHClauseNotClause" xml:space="preserve">
<value>This ExceptionHandlingClause is not a clause.</value>
</data>
<data name="Arg_EHClauseNotFilter" xml:space="preserve">
<value>This ExceptionHandlingClause is not a filter.</value>
</data>
<data name="Arg_EmptyArray" xml:space="preserve">
<value>Array may not be empty.</value>
</data>
<data name="Arg_EmptySpan" xml:space="preserve">
<value>Span may not be empty.</value>
</data>
<data name="Arg_EndOfStreamException" xml:space="preserve">
<value>Attempted to read past the end of the stream.</value>
</data>
<data name="Arg_EntryPointNotFoundException" xml:space="preserve">
<value>Entry point was not found.</value>
</data>
<data name="Arg_EnumAndObjectMustBeSameType" xml:space="preserve">
<value>Object must be the same type as the enum. The type passed in was '{0}'; the enum type was '{1}'.</value>
</data>
<data name="Arg_EnumFormatUnderlyingTypeAndObjectMustBeSameType" xml:space="preserve">
<value>Enum underlying type and the object must be same type or object. Type passed in was '{0}'; the enum underlying type was '{1}'.</value>
</data>
<data name="Arg_EnumIllegalVal" xml:space="preserve">
<value>Illegal enum value: {0}.</value>
</data>
<data name="Arg_EnumLitValueNotFound" xml:space="preserve">
<value>Literal value was not found.</value>
</data>
<data name="Arg_EnumUnderlyingTypeAndObjectMustBeSameType" xml:space="preserve">
<value>Enum underlying type and the object must be same type or object must be a String. Type passed in was '{0}'; the enum underlying type was '{1}'.</value>
</data>
<data name="Arg_EnumValueNotFound" xml:space="preserve">
<value>Requested value '{0}' was not found.</value>
</data>
<data name="Arg_ExecutionEngineException" xml:space="preserve">
<value>Internal error in the runtime.</value>
</data>
<data name="Arg_ExternalException" xml:space="preserve">
<value>External component has thrown an exception.</value>
</data>
<data name="Arg_EnC_ExpectedPrimitive" xml:space="preserve">
<value>Edit and Continue: Expected a primitive, valuetype, class or interface field.</value>
</data>
<data name="Arg_FieldAccessException" xml:space="preserve">
<value>Attempted to access a field that is not accessible by the caller.</value>
</data>
<data name="Arg_FieldDeclTarget" xml:space="preserve">
<value>Field '{0}' defined on type '{1}' is not a field on the target object which is of type '{2}'.</value>
</data>
<data name="Arg_FldGetArgErr" xml:space="preserve">
<value>No arguments can be provided to Get a field value.</value>
</data>
<data name="Arg_FldGetPropSet" xml:space="preserve">
<value>Cannot specify both GetField and SetProperty.</value>
</data>
<data name="Arg_FldSetArgErr" xml:space="preserve">
<value>Only the field value can be specified to set a field value.</value>
</data>
<data name="Arg_FldSetGet" xml:space="preserve">
<value>Cannot specify both Get and Set on a field.</value>
</data>
<data name="Arg_FldSetInvoke" xml:space="preserve">
<value>Cannot specify Set on a Field and Invoke on a method.</value>
</data>
<data name="Arg_FldSetPropGet" xml:space="preserve">
<value>Cannot specify both SetField and GetProperty.</value>
</data>
<data name="Arg_FormatException" xml:space="preserve">
<value>One of the identified items was in an invalid format.</value>
</data>
<data name="Arg_GenericArgumentsAfterArrayOrPointerType" xml:space="preserve">
<value>Generic arguments after array spec or pointer type.</value>
</data>
<data name="Arg_GenericParameter" xml:space="preserve">
<value>Method must be called on a Type for which Type.IsGenericParameter is false.</value>
</data>
<data name="Arg_GetMethNotFnd" xml:space="preserve">
<value>Property Get method was not found.</value>
</data>
<data name="Arg_GuidArrayCtor" xml:space="preserve">
<value>Byte array for Guid must be exactly {0} bytes long.</value>
</data>
<data name="Arg_HandleNotAsync" xml:space="preserve">
<value>Handle does not support asynchronous operations. The parameters to the FileStream constructor may need to be changed to indicate that the handle was opened synchronously (that is, it was not opened for overlapped I/O).</value>
</data>
<data name="Arg_HandleNotSync" xml:space="preserve">
<value>Handle does not support synchronous operations. The parameters to the FileStream constructor may need to be changed to indicate that the handle was opened asynchronously (that is, it was opened explicitly for overlapped I/O).</value>
</data>
<data name="Arg_HexBinaryStylesNotSupported" xml:space="preserve">
<value>The number styles AllowHexSpecifier and AllowBinarySpecifier are not supported on floating point data types.</value>
</data>
<data name="Arg_HTCapacityOverflow" xml:space="preserve">
<value>Hashtable's capacity overflowed and went negative. Check load factor, capacity and the current size of the table.</value>
</data>
<data name="Arg_IndexMustBeInt" xml:space="preserve">
<value>All indexes must be of type Int32.</value>
</data>
<data name="Arg_IndexOutOfRangeException" xml:space="preserve">
<value>Index was outside the bounds of the array.</value>
</data>
<data name="Arg_InsufficientExecutionStackException" xml:space="preserve">
<value>Insufficient stack to continue executing the program safely. This can happen from having too many functions on the call stack or function on the stack using too much stack space.</value>
</data>
<data name="Arg_InvalidANSIString" xml:space="preserve">
<value>The ANSI string passed in could not be converted from the default ANSI code page to Unicode.</value>
</data>
<data name="Arg_InvalidBase" xml:space="preserve">
<value>Invalid Base.</value>
</data>
<data name="Arg_InvalidCastException" xml:space="preserve">
<value>Specified cast is not valid.</value>
</data>
<data name="Arg_InvalidComObjectException" xml:space="preserve">
<value>Attempt has been made to use a COM object that does not have a backing class factory.</value>
</data>
<data name="Arg_InvalidFilterCriteriaException" xml:space="preserve">
<value>Specified filter criteria was invalid.</value>
</data>
<data name="Arg_InvalidHandle" xml:space="preserve">
<value>Invalid handle.</value>
</data>
<data name="Arg_InvalidHexBinaryStyle" xml:space="preserve">
<value>With the AllowHexSpecifier or AllowBinarySpecifier bit set in the enum bit field, the only other valid bits that can be combined into the enum value must be AllowLeadingWhite and AllowTrailingWhite.</value>
</data>
<data name="Arg_InvalidNeutralResourcesLanguage_Asm_Culture" xml:space="preserve">
<value>The NeutralResourcesLanguageAttribute on the assembly "{0}" specifies an invalid culture name: "{1}".</value>
</data>
<data name="Arg_InvalidNeutralResourcesLanguage_FallbackLoc" xml:space="preserve">
<value>The NeutralResourcesLanguageAttribute specifies an invalid or unrecognized ultimate resource fallback location: "{0}".</value>
</data>
<data name="Arg_InvalidSatelliteContract_Asm_Ver" xml:space="preserve">
<value>Satellite contract version attribute on the assembly '{0}' specifies an invalid version: {1}.</value>
</data>
<data name="Arg_InvalidOleVariantTypeException" xml:space="preserve">
<value>Specified OLE variant was invalid.</value>
</data>
<data name="Arg_InvalidOperationException" xml:space="preserve">
<value>Operation is not valid due to the current state of the object.</value>
</data>
<data name="Arg_InvalidTypeInRetType" xml:space="preserve">
<value>The return Type must be a type provided by the runtime.</value>
</data>
<data name="Arg_InvalidTypeInSignature" xml:space="preserve">
<value>The signature Type array contains some invalid type (i.e. null, void)</value>
</data>
<data name="Arg_InvalidUTF8String" xml:space="preserve">
<value>The UTF-8 string passed in could not be converted to Unicode.</value>
</data>
<data name="Arg_IOException" xml:space="preserve">
<value>I/O error occurred.</value>
</data>
<data name="Arg_KeyNotFound" xml:space="preserve">
<value>The given key was not present in the dictionary.</value>
</data>
<data name="Arg_KeyNotFoundWithKey" xml:space="preserve">
<value>The given key '{0}' was not present in the dictionary.</value>
</data>
<data name="Arg_LongerThanDestArray" xml:space="preserve">
<value>Destination array was not long enough. Check the destination index, length, and the array's lower bounds.</value>
</data>
<data name="Arg_LongerThanSrcArray" xml:space="preserve">
<value>Source array was not long enough. Check the source index, length, and the array's lower bounds.</value>
</data>
<data name="Arg_LongerThanSrcString" xml:space="preserve">
<value>Source string was not long enough. Check sourceIndex and count.</value>
</data>
<data name="Arg_LowerBoundsMustMatch" xml:space="preserve">
<value>The arrays' lower bounds must be identical.</value>
</data>
<data name="Arg_MarshalAsAnyRestriction" xml:space="preserve">
<value>AsAny cannot be used on return types, ByRef parameters, ArrayWithOffset, or parameters passed from unmanaged to managed.</value>
</data>
<data name="Arg_MarshalDirectiveException" xml:space="preserve">
<value>Marshaling directives are invalid.</value>
</data>
<data name="Arg_MethodAccessException" xml:space="preserve">
<value>Attempt to access the method failed.</value>
</data>
<data name="Arg_MissingFieldException" xml:space="preserve">
<value>Attempted to access a non-existing field.</value>
</data>
<data name="Arg_MissingManifestResourceException" xml:space="preserve">
<value>Unable to find manifest resource.</value>
</data>
<data name="Arg_MissingMemberException" xml:space="preserve">
<value>Attempted to access a missing member.</value>
</data>
<data name="Arg_MissingMethodException" xml:space="preserve">
<value>Attempted to access a missing method.</value>
</data>
<data name="Arg_MulticastNotSupportedException" xml:space="preserve">
<value>Attempted to add multiple callbacks to a delegate that does not support multicast.</value>
</data>
<data name="Arg_MustBeBoolean" xml:space="preserve">
<value>Object must be of type Boolean.</value>
</data>
<data name="Arg_MustBeByte" xml:space="preserve">
<value>Object must be of type Byte.</value>
</data>
<data name="Arg_MustBeChar" xml:space="preserve">
<value>Object must be of type Char.</value>
</data>
<data name="Arg_MustBeDateOnly" xml:space="preserve">
<value>Object must be of type DateOnly.</value>
<comment>{Locked="DateOnly"}</comment>
</data>
<data name="Arg_MustBeTimeOnly" xml:space="preserve">
<value>Object must be of type TimeOnly.</value>
<comment>{Locked="TimeOnly"}</comment>
</data>
<data name="Arg_MustBeDateTime" xml:space="preserve">
<value>Object must be of type DateTime.</value>
</data>
<data name="Arg_MustBeDateTimeOffset" xml:space="preserve">
<value>Object must be of type DateTimeOffset.</value>
</data>
<data name="Arg_MustBeDecimal" xml:space="preserve">
<value>Object must be of type Decimal.</value>
</data>
<data name="Arg_MustBeDelegate" xml:space="preserve">
<value>Type must derive from Delegate.</value>
</data>
<data name="Arg_MustBeDouble" xml:space="preserve">
<value>Object must be of type Double.</value>
</data>
<data name="Arg_MustBeDriveLetterOrRootDir" xml:space="preserve">
<value>Drive name must be a root directory (i.e. 'C:\') or a drive letter ('C').</value>
</data>
<data name="Arg_MustBeEnum" xml:space="preserve">
<value>Type provided must be an Enum.</value>
</data>
<data name="Arg_MustBeEnumBaseTypeOrEnum" xml:space="preserve">
<value>The value passed in must be an enum base or an underlying type for an enum, such as an Int32.</value>
</data>
<data name="Arg_MustBeGuid" xml:space="preserve">
<value>Object must be of type GUID.</value>
</data>
<data name="Arg_MustBeInt16" xml:space="preserve">
<value>Object must be of type Int16.</value>
</data>
<data name="Arg_MustBeInt32" xml:space="preserve">
<value>Object must be of type Int32.</value>
</data>
<data name="Arg_MustBeInt64" xml:space="preserve">
<value>Object must be of type Int64.</value>
</data>
<data name="Arg_MustBeInt128" xml:space="preserve">
<value>Object must be of type Int128.</value>
</data>
<data name="Arg_MustBeIntPtr" xml:space="preserve">
<value>Object must be of type IntPtr.</value>
</data>
<data name="Arg_MustBeInterface" xml:space="preserve">
<value>Type passed must be an interface.</value>
</data>
<data name="Arg_MustBeNFloat" xml:space="preserve">
<value>Object must be of type NFloat.</value>
</data>
<data name="Arg_MustBePointer" xml:space="preserve">
<value>Type must be a Pointer.</value>
</data>
<data name="Arg_MustBePrimArray" xml:space="preserve">
<value>Object must be an array of primitives.</value>
</data>
<data name="Arg_MustBeRuntimeAssembly" xml:space="preserve">
<value>Object must be of type RuntimeAssembly.</value>
</data>
<data name="Arg_MustBeSByte" xml:space="preserve">
<value>Object must be of type SByte.</value>
</data>
<data name="Arg_MustBeSingle" xml:space="preserve">
<value>Object must be of type Single.</value>
</data>
<data name="Arg_MustBeString" xml:space="preserve">
<value>Object must be of type String.</value>
</data>
<data name="Arg_MustBeTimeSpan" xml:space="preserve">
<value>Object must be of type TimeSpan.</value>
</data>
<data name="Arg_MustBeType" xml:space="preserve">
<value>Type must be a type provided by the runtime.</value>
</data>
<data name="Arg_MustBeTrue" xml:space="preserve">
<value>Argument must be true.</value>
</data>
<data name="Arg_MustBeUInt16" xml:space="preserve">
<value>Object must be of type UInt16.</value>
</data>
<data name="Arg_MustBeUInt32" xml:space="preserve">
<value>Object must be of type UInt32.</value>
</data>
<data name="Arg_MustBeUInt64" xml:space="preserve">
<value>Object must be of type UInt64.</value>
</data>
<data name="Arg_MustBeUInt128" xml:space="preserve">
<value>Object must be of type UInt128.</value>
</data>
<data name="Arg_MustBeUIntPtr" xml:space="preserve">
<value>Object must be of type UIntPtr.</value>
</data>
<data name="Arg_MustBeVersion" xml:space="preserve">
<value>Object must be of type Version.</value>
</data>
<data name="Arg_MustContainEnumInfo" xml:space="preserve">
<value>Must specify valid information for parsing in the string.</value>
</data>
<data name="Arg_NamedParamNull" xml:space="preserve">
<value>Named parameter value must not be null.</value>
</data>
<data name="Arg_NamedParamTooBig" xml:space="preserve">
<value>Named parameter array cannot be bigger than argument array.</value>
</data>
<data name="Arg_NDirectBadObject" xml:space="preserve">
<value>No PInvoke conversion exists for value passed to Object-typed parameter.</value>
</data>
<data name="Arg_Need1DArray" xml:space="preserve">
<value>Array was not a one-dimensional array.</value>
</data>
<data name="Arg_Need2DArray" xml:space="preserve">
<value>Array was not a two-dimensional array.</value>
</data>
<data name="Arg_Need3DArray" xml:space="preserve">
<value>Array was not a three-dimensional array.</value>
</data>
<data name="Arg_NeedAtLeast1Rank" xml:space="preserve">
<value>Must provide at least one rank.</value>
</data>
<data name="Arg_NegativeArgCount" xml:space="preserve">
<value>Argument count must not be negative.</value>
</data>
<data name="Arg_NoAccessSpec" xml:space="preserve">
<value>Must specify binding flags describing the invoke operation required (BindingFlags.InvokeMethod CreateInstance GetField SetField GetProperty SetProperty).</value>
</data>
<data name="Arg_NoDefCTorWithoutTypeName" xml:space="preserve">
<value>No parameterless constructor defined.</value>
</data>
<data name="Arg_NoDefCTor" xml:space="preserve">
<value>No parameterless constructor defined for type '{0}'.</value>
</data>
<data name="Arg_NonZeroLowerBound" xml:space="preserve">
<value>The lower bound of target array must be zero.</value>
</data>
<data name="Arg_NoStaticVirtual" xml:space="preserve">
<value>Method cannot be both static and virtual.</value>
</data>
<data name="Arg_NotFiniteNumberException" xml:space="preserve">
<value>Number encountered was not a finite quantity.</value>
</data>
<data name="Arg_NotFoundIFace" xml:space="preserve">
<value>Interface not found.</value>
</data>
<data name="Arg_NotGenericMethodDefinition" xml:space="preserve">
<value>{0} is not a GenericMethodDefinition. MakeGenericMethod may only be called on a method for which MethodBase.IsGenericMethodDefinition is true.</value>
</data>
<data name="Arg_NotSimpleTypeName" xml:space="preserve">
<value>'{0}' is not a simple TypeName.</value>
</data>
<data name="Arg_NotGenericParameter" xml:space="preserve">
<value>Method may only be called on a Type for which Type.IsGenericParameter is true.</value>
</data>
<data name="Arg_NotGenericTypeDefinition" xml:space="preserve">
<value>{0} is not a GenericTypeDefinition. MakeGenericType may only be called on a type for which Type.IsGenericTypeDefinition is true.</value>
</data>
<data name="Arg_NotImplementedException" xml:space="preserve">
<value>The method or operation is not implemented.</value>
</data>
<data name="Arg_NotSupportedException" xml:space="preserve">
<value>Specified method is not supported.</value>
</data>
<data name="Arg_NullReferenceException" xml:space="preserve">
<value>Object reference not set to an instance of an object.</value>
</data>
<data name="Arg_ObjObj" xml:space="preserve">
<value>Object type cannot be converted to target type.</value>
</data>
<data name="Arg_ObjObjEx" xml:space="preserve">
<value>Object of type '{0}' cannot be converted to type '{1}'.</value>
</data>
<data name="Arg_OleAutDateInvalid" xml:space="preserve">
<value>Not a legal OleAut date.</value>
</data>
<data name="Arg_OleAutDateScale" xml:space="preserve">
<value>OleAut date did not convert to a DateTime correctly.</value>
</data>
<data name="Arg_OverflowException" xml:space="preserve">
<value>Arithmetic operation resulted in an overflow.</value>
</data>
<data name="Arg_OutOfMemoryException" xml:space="preserve">
<value>Insufficient memory to continue the execution of the program.</value>
</data>
<data name="Arg_ParamName_Name" xml:space="preserve">
<value>(Parameter '{0}')</value>
</data>
<data name="Arg_ParmArraySize" xml:space="preserve">
<value>Must specify one or more parameters.</value>
</data>
<data name="Arg_ParmCnt" xml:space="preserve">
<value>Parameter count mismatch.</value>
</data>
<data name="Arg_PathEmpty" xml:space="preserve">
<value>The path is empty.</value>
</data>
<data name="Arg_PlatformNotSupported" xml:space="preserve">
<value>Operation is not supported on this platform.</value>
</data>
<data name="Arg_PrimWiden" xml:space="preserve">
<value>Cannot widen from source type to target type either because the source type is a not a primitive type or the conversion cannot be accomplished.</value>
</data>
<data name="Arg_PropSetGet" xml:space="preserve">
<value>Cannot specify both Get and Set on a property.</value>
</data>
<data name="Arg_PropSetInvoke" xml:space="preserve">
<value>Cannot specify Set on a property and Invoke on a method.</value>
</data>
<data name="Arg_RankException" xml:space="preserve">
<value>Attempted to operate on an array with the incorrect number of dimensions.</value>
</data>
<data name="Arg_RankIndices" xml:space="preserve">
<value>Indices length does not match the array rank.</value>
</data>
<data name="Arg_RankMultiDimNotSupported" xml:space="preserve">
<value>Only single dimensional arrays are supported for the requested action.</value>
</data>
<data name="Arg_RanksAndBounds" xml:space="preserve">
<value>Number of lengths and lowerBounds must match.</value>
</data>
<data name="Arg_RegValueTooLarge" xml:space="preserve">
<value>RegistryKey.GetValue does not support values with more than Int32.MaxValue bytes.</value>
</data>
<data name="Arg_RegKeyNotFound" xml:space="preserve">
<value>The specified registry key does not exist.</value>
</data>
<data name="Arg_RegSubKeyValueAbsent" xml:space="preserve">
<value>No value exists with that name.</value>
</data>
<data name="Arg_RegValStrLenBug" xml:space="preserve">
<value>Registry value names should not be greater than 16,383 characters.</value>
</data>
<data name="Arg_ResMgrNotResSet" xml:space="preserve">
<value>Type parameter must refer to a subclass of ResourceSet.</value>
</data>
<data name="Arg_ResourceFileUnsupportedVersion" xml:space="preserve">
<value>The ResourceReader class does not know how to read this version of .resources files. Expected version: {0} This file: {1}</value>
</data>
<data name="Arg_ResourceNameNotExist" xml:space="preserve">
<value>The specified resource name "{0}" does not exist in the resource file.</value>
</data>
<data name="Arg_SafeArrayRankMismatchException" xml:space="preserve">
<value>Specified array was not of the expected rank.</value>
</data>
<data name="Arg_SafeArrayTypeMismatchException" xml:space="preserve">
<value>Specified array was not of the expected type.</value>
</data>
<data name="Arg_SecurityException" xml:space="preserve">
<value>Security error.</value>
</data>
<data name="SerializationException" xml:space="preserve">
<value>Serialization error.</value>
</data>
<data name="Arg_SetMethNotFnd" xml:space="preserve">
<value>Property set method not found.</value>
</data>
<data name="Arg_StackOverflowException" xml:space="preserve">
<value>Operation caused a stack overflow.</value>
</data>
<data name="Arg_SurrogatesNotAllowedAsSingleChar" xml:space="preserve">
<value>Unicode surrogate characters must be written out as pairs together in the same call, not individually. Consider passing in a character array instead.</value>
</data>
<data name="Arg_SynchronizationLockException" xml:space="preserve">
<value>Object synchronization method was called from an unsynchronized block of code.</value>
</data>
<data name="Arg_SystemException" xml:space="preserve">
<value>System error.</value>
</data>
<data name="Arg_TargetInvocationException" xml:space="preserve">
<value>Exception has been thrown by the target of an invocation.</value>
</data>
<data name="Arg_TargetParameterCountException" xml:space="preserve">
<value>Number of parameters specified does not match the expected number.</value>
</data>
<data name="Arg_ThreadStartException" xml:space="preserve">
<value>Thread failed to start.</value>
</data>
<data name="Arg_ThreadStateException" xml:space="preserve">
<value>Thread was in an invalid state for the operation being executed.</value>
</data>
<data name="Arg_TimeoutException" xml:space="preserve">
<value>The operation has timed out.</value>
</data>
<data name="Arg_TypeAccessException" xml:space="preserve">
<value>Attempt to access the type failed.</value>
</data>
<data name="Arg_TypedReference_Null" xml:space="preserve">
<value>The TypedReference must be initialized.</value>
</data>
<data name="Arg_TypeLoadException" xml:space="preserve">
<value>Failure has occurred while loading a type.</value>
</data>
<data name="Arg_TypeLoadNullStr" xml:space="preserve">
<value>A null or zero length string does not represent a valid Type.</value>
</data>
<data name="Arg_TypeUnloadedException" xml:space="preserve">
<value>Type had been unloaded.</value>
</data>
<data name="Arg_UnauthorizedAccessException" xml:space="preserve">
<value>Attempted to perform an unauthorized operation.</value>
</data>
<data name="Arg_UnboundGenField" xml:space="preserve">
<value>Late bound operations cannot be performed on fields with types for which Type.ContainsGenericParameters is true.</value>
</data>
<data name="Arg_UnboundGenParam" xml:space="preserve">
<value>Late bound operations cannot be performed on types or methods for which ContainsGenericParameters is true.</value>
</data>
<data name="Arg_UnknownTypeCode" xml:space="preserve">
<value>Unknown TypeCode value.</value>
</data>
<data name="Arg_UnreachableException" xml:space="preserve">
<value>The program executed an instruction that was thought to be unreachable.</value>
</data>
<data name="Arg_VarMissNull" xml:space="preserve">
<value>Missing parameter does not have a default value.</value>
</data>
<data name="Arg_VersionString" xml:space="preserve">
<value>Version string portion was too short or too long.</value>
</data>
<data name="Arg_WrongType" xml:space="preserve">
<value>The value "{0}" is not of type "{1}" and cannot be used in this generic collection.</value>
</data>
<data name="Argument_AbsolutePathRequired" xml:space="preserve">
<value>Path "{0}" is not an absolute path.</value>
</data>
<data name="Argument_AddingDuplicate" xml:space="preserve">
<value>An item with the same key has already been added.</value>
</data>
<data name="Argument_AddingDuplicate__" xml:space="preserve">
<value>Item has already been added. Key in dictionary: '{0}' Key being added: '{1}'</value>
</data>
<data name="Argument_AddingDuplicateWithKey" xml:space="preserve">
<value>An item with the same key has already been added. Key: {0}</value>
</data>
<data name="Argument_AdjustmentRulesNoNulls" xml:space="preserve">
<value>The AdjustmentRule array cannot contain null elements.</value>
</data>
<data name="Argument_AdjustmentRulesOutOfOrder" xml:space="preserve">
<value>The elements of the AdjustmentRule array must be in chronological order and must not overlap.</value>
</data>
<data name="Argument_AlignmentMustBePow2" xml:space="preserve">
<value>The alignment must be a power of two.</value>
</data>
<data name="Argument_AlreadyACCW" xml:space="preserve">
<value>The object already has a CCW associated with it.</value>
</data>
<data name="Argument_AlreadyBoundOrSyncHandle" xml:space="preserve">
<value>'handle' has already been bound to the thread pool, or was not opened for asynchronous I/O.</value>
</data>
<data name="Argument_ArrayGetInterfaceMap" xml:space="preserve">
<value>Interface maps for generic interfaces on arrays cannot be retrieved.</value>
</data>
<data name="Argument_ArraysInvalid" xml:space="preserve">
<value>Array or pointer types are not valid.</value>
</data>
<data name="Argument_ArrayParsingError" xml:space="preserve">
<value>Error parsing array spec.</value>
</data>
<data name="Argument_AttributeNamesMustBeUnique" xml:space="preserve">
<value>Attribute names must be unique.</value>
</data>
<data name="Argument_BadConstantValue" xml:space="preserve">
<value>Bad default value.</value>
</data>
<data name="Argument_BadConstructor" xml:space="preserve">
<value>Cannot have private or static constructor.</value>
</data>
<data name="Argument_BadConstructorCallConv" xml:space="preserve">
<value>Constructor must have standard calling convention.</value>
</data>
<data name="Argument_BadExceptionCodeGen" xml:space="preserve">
<value>Incorrect code generation for exception block.</value>
</data>
<data name="Argument_BadFieldForConstructorBuilder" xml:space="preserve">
<value>Field must be on the same type of the given ConstructorInfo.</value>
</data>
<data name="Argument_BadFieldSig" xml:space="preserve">
<value>Field signatures do not have return types.</value>
</data>
<data name="Argument_BadFieldType" xml:space="preserve">
<value>Bad field type in defining field.</value>
</data>
<data name="Argument_BadFormatSpecifier" xml:space="preserve">
<value>Format specifier was invalid.</value>
</data>
<data name="Argument_BadImageFormatExceptionResolve" xml:space="preserve">
<value>A BadImageFormatException has been thrown while parsing the signature. This is likely due to lack of a generic context. Ensure genericTypeArguments and genericMethodArguments are provided and contain enough context.</value>
</data>
<data name="Argument_BadLabel" xml:space="preserve">
<value>Bad label in ILGenerator.</value>
</data>
<data name="Argument_BadLabelContent" xml:space="preserve">
<value>Bad label content in ILGenerator.</value>
</data>
<data name="Argument_BadNestedTypeFlags" xml:space="preserve">
<value>Visibility of interfaces must be one of the following: NestedAssembly, NestedFamANDAssem, NestedFamily, NestedFamORAssem, NestedPrivate or NestedPublic.</value>
</data>
<data name="Argument_BadObjRef" xml:space="preserve">
<value>Invalid ObjRef provided to '{0}'.</value>
</data>
<data name="Argument_BadParameterCountsForConstructor" xml:space="preserve">
<value>Parameter count does not match passed in argument value count.</value>
</data>
<data name="Argument_BadParameterTypeForCAB" xml:space="preserve">
<value>Cannot emit a CustomAttribute with argument of type {0}.</value>
</data>
<data name="Argument_BadPropertyForConstructorBuilder" xml:space="preserve">
<value>Property must be on the same type of the given ConstructorInfo.</value>
</data>
<data name="Argument_BadSigFormat" xml:space="preserve">
<value>Incorrect signature format.</value>
</data>
<data name="Argument_BadSizeForData" xml:space="preserve">
<value>Data size must be > 1 and < 0x3f0000</value>
</data>
<data name="Argument_BadTypeAttrInvalidLayout" xml:space="preserve">
<value>Bad type attributes. Invalid layout attribute specified.</value>
</data>
<data name="Argument_BadTypeAttrNestedVisibilityOnNonNestedType" xml:space="preserve">
<value>Bad type attributes. Nested visibility flag set on a non-nested type.</value>
</data>
<data name="Argument_BadTypeAttrNonNestedVisibilityNestedType" xml:space="preserve">
<value>Bad type attributes. Non-nested visibility flag set on a nested type.</value>
</data>
<data name="Argument_BadTypeAttrReservedBitsSet" xml:space="preserve">
<value>Bad type attributes. Reserved bits set on the type.</value>
</data>
<data name="Argument_BadTypeInCustomAttribute" xml:space="preserve">
<value>An invalid type was used as a custom attribute constructor argument, field or property.</value>
</data>
<data name="Argument_ByrefQualifierMustBeLastOneOfAType" xml:space="preserve">
<value>Byref qualifier must be the last one of a type.</value>
</data>
<data name="Argument_CannotCreateTypedReference" xml:space="preserve">
<value>Cannot use function evaluation to create a TypedReference object.</value>
</data>
<data name="Argument_CannotSetParentToInterface" xml:space="preserve">
<value>Cannot set parent to an interface.</value>
</data>
<data name="Argument_CodepageNotSupported" xml:space="preserve">
<value>{0} is not a supported code page.</value>
</data>
<data name="Argument_CompareOptionOrdinal" xml:space="preserve">
<value>CompareOption.Ordinal cannot be used with other options.</value>
</data>
<data name="Argument_ConflictingDateTimeRoundtripStyles" xml:space="preserve">
<value>The DateTimeStyles value RoundtripKind cannot be used with the values AssumeLocal, AssumeUniversal or AdjustToUniversal.</value>
</data>
<data name="Argument_ConflictingDateTimeStyles" xml:space="preserve">
<value>The DateTimeStyles values AssumeLocal and AssumeUniversal cannot be used together.</value>
</data>
<data name="Argument_ConstantDoesntMatch" xml:space="preserve">
<value>Constant does not match the defined type.</value>
</data>
<data name="Argument_ConstantNotSupported" xml:space="preserve">
<value>{0} is not a supported constant type.</value>
</data>
<data name="Argument_ConstantNull" xml:space="preserve">
<value>Null is not a valid constant value for this type.</value>
</data>
<data name="Argument_ConstructorNeedGenericDeclaringType" xml:space="preserve">
<value>The specified constructor must be declared on a generic type definition.</value>
</data>
<data name="Argument_ConversionOverflow" xml:space="preserve">
<value>Conversion buffer overflow.</value>
</data>
<data name="Argument_ConvertMismatch" xml:space="preserve">
<value>The conversion could not be completed because the supplied DateTime did not have the Kind property set correctly. For example, when the Kind property is DateTimeKind.Local, the source time zone must be TimeZoneInfo.Local.</value>
</data>
<data name="Argument_CORDBBadMethod" xml:space="preserve">
<value>Cannot find the method on the object instance.</value>
</data>
<data name="Argument_CORDBBadVarArgCallConv" xml:space="preserve">
<value>Cannot evaluate a VarArgs function.</value>