-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathStrings.resx
2606 lines (2594 loc) · 126 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="ExArgumentValueMustBeGreaterThanOrEqualToZero" xml:space="preserve">
<value>Argument value must be greater than or equal to zero.</value>
</data>
<data name="ExArgumentValueMustBeGreaterThanZero" xml:space="preserve">
<value>Argument value must be greater than zero.</value>
</data>
<data name="ExCollectionAlreadyContainsItemWithSpecifiedKey" xml:space="preserve">
<value>Collection already contains item with the specified key.</value>
</data>
<data name="ExCollectionHasBeenChanged" xml:space="preserve">
<value>Collection has been changed during the enumeration.</value>
</data>
<data name="ExCollectionIsEmpty" xml:space="preserve">
<value>Collection is empty.</value>
</data>
<data name="ExCollectionIsReadOnly" xml:space="preserve">
<value>Collection is read-only.</value>
</data>
<data name="ExDestionationArrayIsTooSmall" xml:space="preserve">
<value>Destionation array is too small.</value>
</data>
<data name="ExIndexShouldBeInNMRange" xml:space="preserve">
<value>Index should be in [{0}...{1}] range.</value>
</data>
<data name="ExInstanceIsLocked" xml:space="preserve">
<value>Instance is locked.</value>
</data>
<data name="ExInvalidCapacity" xml:space="preserve">
<value>The specified capacity value is less than collection count.</value>
</data>
<data name="ExItemNotFound" xml:space="preserve">
<value>Specified item isn't found.</value>
</data>
<data name="ExMaxItemCountIsN" xml:space="preserve">
<value>Maximal item count is {0}.</value>
</data>
<data name="ExNoObjectWithSpecifiedKey" xml:space="preserve">
<value>There is no object with specified key.</value>
</data>
<data name="ExInvalidUrl" xml:space="preserve">
<value>"{0}" is invalid URL.</value>
</data>
<data name="ExArrayDoesNotHaveZeroBasedIndexing" xml:space="preserve">
<value>Array does not have zero-based indexing.</value>
</data>
<data name="ExCouldNotLoadTypesFromAssembly" xml:space="preserve">
<value>Could not load types from the assembly '{0}'.</value>
</data>
<data name="ExArgumentCannotBeEmptyString" xml:space="preserve">
<value>Argument can't be an empty string.</value>
</data>
<data name="ExArrayIsMultidimensional" xml:space="preserve">
<value>Array is multidimentional.</value>
</data>
<data name="ExCollectionAlreadyContainsSpecifiedItem" xml:space="preserve">
<value>Collecton already contains specified item.</value>
</data>
<data name="ExSpecifiedCapacityIsLessThenCollectionCount" xml:space="preserve">
<value>The specified capacity value is less than collection count.</value>
</data>
<data name="ExIndexOutOfRange" xml:space="preserve">
<value>Index is out of range.</value>
</data>
<data name="ExInvalidArgumentType" xml:space="preserve">
<value>Invalid argument type: expected type is {0}.</value>
</data>
<data name="ExMeasurementIsAlreadyCompleted" xml:space="preserve">
<value>Measurement is already completed.</value>
</data>
<data name="ExInternalError" xml:space="preserve">
<value>Internal error: {0}</value>
</data>
<data name="ExItemWithTheSameKeyHasBeenAdded" xml:space="preserve">
<value>An item with the same key has already been added.</value>
</data>
<data name="ExArgumentShouldBeInRange" xml:space="preserve">
<value>Argument should be in range [{0}...{1}].</value>
</data>
<data name="ExPropertyDoesNotHaveGetter" xml:space="preserve">
<value>Property '{0}' of type '{1}' does not have public get accessor.</value>
</data>
<data name="ExPropertyDoesNotHaveSetter" xml:space="preserve">
<value>Property '{0}' of type '{1}' does not have public set accessor.</value>
</data>
<data name="ExMemberIsNotPublicPropertyOrField" xml:space="preserve">
<value>Member: '{0}' is not a Public Property or Field of Type: '{1}'</value>
</data>
<data name="ExObjectIsReadOnly" xml:space="preserve">
<value>Object is read-only.</value>
</data>
<data name="ExAlreadyInitialized" xml:space="preserve">
<value>Instance is already initialized.</value>
</data>
<data name="ExPropertyIsAlreadyInitialized" xml:space="preserve">
<value>Property '{0}' is already initialized.</value>
</data>
<data name="ExScopeCantBeDisposed" xml:space="preserve">
<value>Scope can't be disposed. Most likely it is bound to a different thread.</value>
</data>
<data name="ExContextRequired" xml:space="preserve">
<value>{0} is required. Use {1} to set it.</value>
</data>
<data name="ExCantFindAssociate" xml:space="preserve">
<value>Can't find associated {0} of type '{1}' for type '{2}'.</value>
</data>
<data name="LogScopeDisposeError" xml:space="preserve">
<value>Scope dispose error.</value>
</data>
<data name="ExCantCreateAssociateForGenericTypeDefinitions" xml:space="preserve">
<value>Can't create associates for generic type definitions (type '{0}').</value>
</data>
<data name="ExMultipleAssociatesMatch" xml:space="preserve">
<value>Multiple associates match type '{0}' by its interfaces (at least '{1}' and '{2}').</value>
</data>
<data name="LogGenericAssociateCreationHasFailedFor" xml:space="preserve">
<value>'{0}<{1}, {2}>' creation has failed for '{3}'.</value>
</data>
<data name="LogGenericAssociateIsUsedFor" xml:space="preserve">
<value>'{0}<{1}, {2}>' was used for '{3}'.</value>
</data>
<data name="ExCantFindAssociate2" xml:space="preserve">
<value>Can't find associated {0} of type '{1}' for type '{2}' or '{3}'.</value>
</data>
<data name="ExValueIsNotAvailable" xml:space="preserve">
<value>Value is not available.</value>
</data>
<data name="Infinity" xml:space="preserve">
<value>inf</value>
</data>
<data name="ReversedFormat" xml:space="preserve">
<value>Reversed({0})</value>
</data>
<data name="LogCantFindAssociateFor" xml:space="preserve">
<value>Can't find {0} ('{1}') for type '{2}'.</value>
</data>
<data name="ExTypeXMustBeReferenceType" xml:space="preserve">
<value>Type '{0}' must be reference type.</value>
</data>
<data name="ExTypeXMustImplementY" xml:space="preserve">
<value>Type '{0}' must implement '{1}', or must be its descendant.</value>
</data>
<data name="ExCultureOfAppliedRuleShouldBeEitherNullOrTheSameAsOnTarget" xml:space="preserve">
<value>Culture of the applied rule should either be undefined (null), or be the same as on target rule.</value>
</data>
<data name="InfinitesimalFormat" xml:space="preserve">
<value>{0}{1}d</value>
</data>
<data name="ExGenericParameterShouldBeOfTypeT" xml:space="preserve">
<value>Generic parameter '{0}' should be of type '{1}'.</value>
</data>
<data name="ExValueXIsNotAllowedHere" xml:space="preserve">
<value>'{0}' is not allowed or invalid here.</value>
</data>
<data name="ExItemWithNameWasNotFound" xml:space="preserve">
<value>Item with name '{0}' was not found.</value>
</data>
<data name="ExInvalidCast" xml:space="preserve">
<value>Cast from '{0}' to '{1}' is invalid.</value>
</data>
<data name="ExMeasurementMustHaveValue" xml:space="preserve">
<value>Measurement '{0}' must have value.</value>
</data>
<data name="AnyCulture" xml:space="preserve">
<value>*</value>
</data>
<data name="ComparisonRuleFormat" xml:space="preserve">
<value>ComparisonRule({0}, {1})</value>
</data>
<data name="ComparisonRulesFormat" xml:space="preserve">
<value>ComparisonRules({0}, [{1}])</value>
</data>
<data name="BoxFormat" xml:space="preserve">
<value>Box({0})</value>
</data>
<data name="EntireFormat" xml:space="preserve">
<value>Entire({0})</value>
</data>
<data name="PairFormat" xml:space="preserve">
<value>({0}, {1})</value>
</data>
<data name="TripletFormat" xml:space="preserve">
<value>({0}, {1}, {2})</value>
</data>
<data name="TupleFormat" xml:space="preserve">
<value>({0})</value>
</data>
<data name="Null" xml:space="preserve">
<value>null</value>
</data>
<data name="Recursive" xml:space="preserve">
<value>recursive</value>
</data>
<data name="ExRecursiveAssociateLookupDetected" xml:space="preserve">
<value>Recursive associate lookup is detected.</value>
</data>
<data name="ExNotInitialized" xml:space="preserve">
<value>Instance is not initialized (or not initialized properly).</value>
</data>
<data name="ExPropertyIsNotInitialized" xml:space="preserve">
<value>Property '{0}' is not initialized (or not initialized properly).</value>
</data>
<data name="LogRegionBegin" xml:space="preserve">
<value>{0}: started.</value>
</data>
<data name="LogRegionEnd" xml:space="preserve">
<value>{0}: completed.</value>
</data>
<data name="LogAttemptToUseDisposedInstance" xml:space="preserve">
<value>Attempt to use disposed instance of type '{0}'.</value>
</data>
<data name="LogSafeDisposeFailing" xml:space="preserve">
<value>Safe dispose of '{0}' failing.</value>
</data>
<data name="ExInvalidTupleDescriptorExpectedDescriptorIs" xml:space="preserve">
<value>Invalid TupleDescriptor. Expected descriptor is {0}.</value>
</data>
<data name="TransformedTupleFormat" xml:space="preserve">
<value>{0}: {1} of ({2})</value>
</data>
<data name="TupleTransformFormat" xml:space="preserve">
<value>{0}({1})</value>
</data>
<data name="ExTheNumberOfSourcesIsTooSmallExpected" xml:space="preserve">
<value>The number of sources is too small. Expected number is {0}.</value>
</data>
<data name="TupleDescriptorFormat" xml:space="preserve">
<value>TupleDescriptor({0})</value>
</data>
<data name="SegmentFormat" xml:space="preserve">
<value>[{0} ... {1}]</value>
</data>
<data name="ReadOnly" xml:space="preserve">
<value>read-only</value>
</data>
<data name="ReadOnlyShort" xml:space="preserve">
<value>r/o</value>
</data>
<data name="ReadWrite" xml:space="preserve">
<value>read-write</value>
</data>
<data name="ReadWriteShort" xml:space="preserve">
<value>r/w</value>
</data>
<data name="ExMultipleAttributesOfTypeXAreNotAllowedHere" xml:space="preserve">
<value>{0}: multiple attributes of type '{1}' are not allowed here.</value>
</data>
<data name="HasVersionFormat" xml:space="preserve">
<value>{0} (v{1})</value>
</data>
<data name="LogException" xml:space="preserve">
<value>Exception!</value>
</data>
<data name="LogUnableToGetDefaultHasherForTypeXxx" xml:space="preserve">
<value>Unable to get default hasher for type {0}</value>
</data>
<data name="OriginalExceptions" xml:space="preserve">
<value>Original exception(s)</value>
</data>
<data name="ExASetOfExceptionsIsCaught" xml:space="preserve">
<value>A set of exceptions is caught.</value>
</data>
<data name="ExServiceNotFound" xml:space="preserve">
<value>Service '{0}' is not found.</value>
</data>
<data name="CachedFormat" xml:space="preserve">
<value>Cached({0})</value>
</data>
<data name="ThreadSafeCachedFormat" xml:space="preserve">
<value>ThreadSafeCached({0})</value>
</data>
<data name="ExValueForParameterXIsNotSet" xml:space="preserve">
<value>Value for parameter '{0}' is not set.</value>
</data>
<data name="ExAlreadyDisposed" xml:space="preserve">
<value>Object is already disposed.</value>
</data>
<data name="ReferenceFormat" xml:space="preserve">
<value>#({0})</value>
</data>
<data name="ExInvalidFieldMapSizeExpectedX" xml:space="preserve">
<value>Invalid field map size. Expected {0}.</value>
</data>
<data name="EmptyString" xml:space="preserve">
<value>''</value>
</data>
<data name="SerializationDataFormat" xml:space="preserve">
<value>Type='{0}', #='{1}' ({2})</value>
</data>
<data name="ExUnknownExpressionType" xml:space="preserve">
<value>Unknown expression type: '{0} ({1})'</value>
</data>
<data name="ExEscapeCharacterMustDifferFromDelimiterCharacter" xml:space="preserve">
<value>Escape character must differ from delimiter character.</value>
</data>
<data name="ExArgumentMustnotBeOfTypeX" xml:space="preserve">
<value>The argument must not be of type '{0}'.</value>
</data>
<data name="ExScopeRequired" xml:space="preserve">
<value>{0} is required.</value>
</data>
<data name="ExOnlyOneAncestorOfEachInstanceOfThisGenericTypeIsAllowed" xml:space="preserve">
<value>Only one ancestor of each instance of this generic type is allowed.</value>
</data>
<data name="ExLambdaParameterXIsOutOfScope" xml:space="preserve">
<value>Lambda parameter '{0}' is out of scope.</value>
</data>
<data name="ExArgumentXIsLessThanArgumentY" xml:space="preserve">
<value>The argument '{0}' is less than the argument '{1}'.</value>
</data>
<data name="ExArgumentMustBeGreaterThanX" xml:space="preserve">
<value>Argument must be greater than '{0}'</value>
</data>
<data name="ExArgumentMustBeLessThanX" xml:space="preserve">
<value>Argument must be less than '{0}'</value>
</data>
<data name="ExUnableToCastNullValueToXUseXInstead" xml:space="preserve">
<value>Unable to cast null value to {0}; use {0}? instead.</value>
</data>
<data name="ComprehensiveLogFormat" xml:space="preserve">
<value>{0,6:F2}s @{1,-5} {2,5} {3,-24} {4}{5}</value>
</data>
<data name="ReleaseLogFormat" xml:space="preserve">
<value>{6:s} @{1,-5} {2,5} {3,-24} {4}{5}</value>
</data>
<data name="SimpleLogFormat" xml:space="preserve">
<value>{3}: {5}</value>
</data>
<data name="ExUnableToBindParametersToLambdaXParametersCountIsIncorrect" xml:space="preserve">
<value>Unable to bind parameters to lambda {0}. Parameters count is incorrect.</value>
</data>
<data name="ExUnableToUseExpressionXAsXParameterOfLambdaXBecauseOfTypeMistmatch" xml:space="preserve">
<value>Unable to use expression {0} as {1} parameter of lambda {2} because of type mistmatch.</value>
</data>
<data name="ExResourcePropertyXIsNotOfStringType" xml:space="preserve">
<value>Resource property {0} is not of string type.</value>
</data>
<data name="ExMappingForPropertyXHasAlreadyBeenRegistered" xml:space="preserve">
<value>The mapping for the property {0} has already been registered.</value>
</data>
<data name="ExKeyXIsNotFound" xml:space="preserve">
<value>Key {0} is not found.</value>
</data>
<data name="ExCollectionHasBeenModified" xml:space="preserve">
<value>Collection has been modified.</value>
</data>
<data name="XInY" xml:space="preserve">
<value>{0} in {1}</value>
</data>
<data name="ExCannotActivateServiceXErrorY" xml:space="preserve">
<value>Can't activate service '{0}'. Error: {1}</value>
</data>
<data name="ExCannotActivateServiceXWithKeyYErrorZ" xml:space="preserve">
<value>Can't activate service '{0}' with name "{1}". Error: {2}</value>
</data>
<data name="ExMultipleServicesMatchToTheSpecifiedArguments" xml:space="preserve">
<value>Multiple services match to the specified arguments.</value>
</data>
<data name="ExServiceOfTypeXIsNotAvailable" xml:space="preserve">
<value>Service of type '{0}' is not available.</value>
</data>
<data name="ExServiceWithNameXOfTypeYIsNotAvailable" xml:space="preserve">
<value>Service with name "{0}" of type '{1}' is not available.</value>
</data>
<data name="ExContainerTypeMustImplementX" xml:space="preserve">
<value>Container type must implement {0}.</value>
</data>
<data name="ExContainerTypeDoesNotProvideASuitableConstructor" xml:space="preserve">
<value>Container type does not provide a suitable constructor.</value>
</data>
<data name="ExRecursiveConstructorParameterDependencyIsDetected" xml:space="preserve">
<value>Recursive constructor parameter dependency is detected.</value>
</data>
<data name="ExArgumentMustBeGreaterThatOrEqualX" xml:space="preserve">
<value>Argument must be greater that or equal '{0}'</value>
</data>
<data name="ExArgumentMustBeLessThanOrEqualX" xml:space="preserve">
<value>Argument must be less than or equal '{0}'</value>
</data>
<data name="ExUseLogIndentScopeConstructorInstead" xml:space="preserve">
<value>Use LogIndentScope constructor instead.</value>
</data>
<data name="ExOnlyBreakableNodesSadSmile" xml:space="preserve">
<value>Only breakable nodes :(</value>
</data>
<data name="ExSegmentIsOutOfRange" xml:space="preserve">
<value>Segment is out of range.</value>
</data>
<data name="ExItemWithNameXAlreadyExists" xml:space="preserve">
<value>Item with name '{0}' already exists.</value>
</data>
<data name="ExItemWithNameXIsNotFound" xml:space="preserve">
<value>Item with Name '{0}' is not found.</value>
</data>
<data name="ExModelObjectCannotBeRemoved" xml:space="preserve">
<value>Model object cannot be removed.</value>
</data>
<data name="ExTypeOfXPropertyMustBeY" xml:space="preserve">
<value>Type of {0} property must be {1}.</value>
</data>
<data name="ExInvalidNodeState" xml:space="preserve">
<value>Invalid node state.</value>
</data>
<data name="ExBindingFailedForX" xml:space="preserve">
<value>Binding has failed for {0}. Check property declaration.</value>
</data>
<data name="ExNoNesting" xml:space="preserve">
<value>Nesting must be created for any node.</value>
</data>
<data name="NodeInfoFormat" xml:space="preserve">
<value>{0} ({1})</value>
</data>
<data name="ExTargetObjectExistsX" xml:space="preserve">
<value>Target object already exists: "{0}". To assign a new one, you must remove the old one first.</value>
</data>
<data name="ExCannotFindConstructorToExecuteX" xml:space="preserve">
<value>Can't find a constructor to execute {0}.</value>
</data>
<data name="ExPathXNotFound" xml:space="preserve">
<value>Node with path "{0}" is not found.</value>
</data>
<data name="ExItemAlreadyExists" xml:space="preserve">
<value>Item already exists.</value>
</data>
<data name="ExMultipleHintsFound" xml:space="preserve">
<value>Multiple hints found.</value>
</data>
<data name="DifferenceFormat" xml:space="preserve">
<value>"{1}" != "{2}" ({0}): {3}</value>
</data>
<data name="PropertyChangeFormat" xml:space="preserve">
<value>+{0}: {1}</value>
</data>
<data name="ItemChangeFormat" xml:space="preserve">
<value>{0}</value>
</data>
<data name="ItemChangeCountFormat" xml:space="preserve">
<value>{0} change(s)</value>
</data>
<data name="ExBothSourceAndTargetAreNull" xml:space="preserve">
<value>Both Source and Target are null.</value>
</data>
<data name="DifferencePropertyNamePrefix" xml:space="preserve">
<value>+{0}: </value>
</data>
<data name="ExPropertyValueMustBelongToTheSameModel" xml:space="preserve">
<value>Property value must belong to the same Model.</value>
</data>
<data name="ExNoCurrentComparer" xml:space="preserve">
<value>Comparer.Current is null.</value>
</data>
<data name="ExInvalidContextDeactivationSequence" xml:space="preserve">
<value>Invalid context deactivation sequence.</value>
</data>
<data name="ExInvalidContextActivationSequence" xml:space="preserve">
<value>Invalid context activation sequence.</value>
</data>
<data name="ExInvalidNestingOfNodeX" xml:space="preserve">
<value>Invalid Nesting of node "{0}".</value>
</data>
<data name="ExNoCurrentUpgrader" xml:space="preserve">
<value>Upgarder.Current is null.</value>
</data>
<data name="LogAutomaticUpgradeSequenceValidation" xml:space="preserve">
<value>Automatic upgrade sequence validation</value>
</data>
<data name="LogValidationFailed" xml:space="preserve">
<value>Validation failed.</value>
</data>
<data name="Difference" xml:space="preserve">
<value>Difference</value>
</data>
<data name="LogItemFormat" xml:space="preserve">
<value>{0}:</value>
</data>
<data name="ExpectedTargetModel" xml:space="preserve">
<value>Expected target model</value>
</data>
<data name="ActualTargetModel" xml:space="preserve">
<value>Actual target model</value>
</data>
<data name="ExUpgradeSequenceValidationFailure" xml:space="preserve">
<value>Upgrade sequence validation failure.</value>
</data>
<data name="ExNodeXMustBeProcessedBeforeBeingComparedAsReferenceValueOfYZ" xml:space="preserve">
<value>Node "{0}" must be processed before being compared as reference (value of "{1}".{2}).</value>
</data>
<data name="UpgradeSequence" xml:space="preserve">
<value>Upgrade sequence</value>
</data>
<data name="ExDifferenceRelatedToXTypeIsNotFoundOnTheUpgradeContextStack" xml:space="preserve">
<value>Difference related to {0} type is not found on the UpgradeContext stack.</value>
</data>
<data name="ExExpression0MustReferenceField" xml:space="preserve">
<value>Expression '{0}' must reference field.</value>
</data>
<data name="ExExpression0MustReferenceProperty" xml:space="preserve">
<value>Expression '{0}' must reference property.</value>
</data>
<data name="ExSpecialCharacterXUsedAsEscapeCharacter" xml:space="preserve">
<value>Special character {0} used as escape character.</value>
</data>
<data name="ExControlCharacterUsedAsEscapeCharacter" xml:space="preserve">
<value>Control character used as escape character</value>
</data>
<data name="ExComparerForTypeIsNotAvailable" xml:space="preserve">
<value>Comparer for type '{0}' is not available.</value>
</data>
<data name="TypeXIsNotRegistered" xml:space="preserve">
<value>Type '{0}' is not registered.</value>
</data>
<data name="ExUnableToFindMasterAssociation" xml:space="preserve">
<value>Unable to find master association of association '{0}'</value>
</data>
<data name="ExCouldNotResolveXYWithinDomain" xml:space="preserve">
<value>Could not resolve {0} '{1}' within the domain.</value>
</data>
<data name="ExTypeIdXIsNotRegistered" xml:space="preserve">
<value>Type with TypeId={0} is not registered.</value>
</data>
<data name="TypeIdForTypeXIsAlreadyAssigned" xml:space="preserve">
<value>TypeId for type {0} is already assigned.</value>
</data>
<data name="ExItemWithKeyXWasNotFound" xml:space="preserve">
<value>Item with key '{0}' was not found.</value>
</data>
<data name="ExItemWithNameXAlreadyExistsInY" xml:space="preserve">
<value>Item with name '{0}' already exists in '{1}'.</value>
</data>
<data name="NodeFormat" xml:space="preserve">
<value>{0} ({1})</value>
</data>
<data name="UnnamedNodeDisplayName" xml:space="preserve">
<value><Unnamed></value>
</data>
<data name="ExCanNotExtractForeignKey" xml:space="preserve">
<value>Can't extract foreign key.</value>
</data>
<data name="ExTypeDiscriminatorFieldIsAlreadySet" xml:space="preserve">
<value>TypeDiscriminator field is already set.</value>
</data>
<data name="ExDefaultTypeIsAlreadyRegistered" xml:space="preserve">
<value>Default type is already registered.</value>
</data>
<data name="NodeCollectionFullNameFormat" xml:space="preserve">
<value>{0}.{1}</value>
</data>
<data name="LogExErrorSettingDefaultValueXForColumnYInTypeZ" xml:space="preserve">
<value>Error setting default value {0} for column '{1}' in type '{2}'. Most likely, its type is incorrect.</value>
</data>
<data name="ExUnsupportedIndex" xml:space="preserve">
<value>Index '{0}' with attributes '{1}' is not supported.</value>
</data>
<data name="ExIndexXIsNotFound" xml:space="preserve">
<value>Index '{0}' is not found.</value>
</data>
<data name="ExIncorrectCommandParameters" xml:space="preserve">
<value>Incorrect command parameters.</value>
</data>
<data name="ExStringTrimSupportedOnlyWithConstants" xml:space="preserve">
<value>String.Trim(char[]), String.TrimStart(char[]), string.TrimEnd(char[]) supported only with argument being array of constants.</value>
</data>
<data name="ExSequenceXIsNotFoundInStorage" xml:space="preserve">
<value>Sequence '{0}' is not found in storage.</value>
</data>
<data name="SqlErrorOccurred" xml:space="preserve">
<value>SQL error occurred.</value>
</data>
<data name="StorageErrorDetailsX" xml:space="preserve">
<value>Storage error details '{0}'</value>
</data>
<data name="SqlErrorDetailsX" xml:space="preserve">
<value>SQL error details '{0}'</value>
</data>
<data name="OriginalMessageX" xml:space="preserve">
<value>Original message '{0}'</value>
</data>
<data name="QueryX" xml:space="preserve">
<value>Query '{0}'</value>
</data>
<data name="ExRowNumberWindowFunctionIsNotSupportedOnThisVersionOfPostgreSql" xml:space="preserve">
<value>ROW_NUMBER window function is not supported on this version of PostgreSQL</value>
</data>
<data name="LogSessionXSchemaUpgradeScriptY" xml:space="preserve">
<value>Session '{0}'. Schema upgrade script:
{1}</value>
</data>
<data name="ExParametersCountIsNotSameAsSourceColumnListsCount" xml:space="preserve">
<value>Parameters count is not same as source column lists count.</value>
</data>
<data name="ExSourceColumnListContainsNullValues" xml:space="preserve">
<value>Source column list contains null values.</value>
</data>
<data name="LogSessionXCreatingConnection" xml:space="preserve">
<value>Session '{0}'. Creating connection.</value>
</data>
<data name="LogSessionXOpeningConnectionY" xml:space="preserve">
<value>Session '{0}'. Opening connection '{1}'.</value>
</data>
<data name="LogSessionXClosingConnectionY" xml:space="preserve">
<value>Session '{0}'. Closing connection '{1}'.</value>
</data>
<data name="LogSessionXDisposingConnection" xml:space="preserve">
<value>Session '{0}'. Disposing connection.</value>
</data>
<data name="LogSessionXBeginningTransactionWithYIsolationLevel" xml:space="preserve">
<value>Session '{0}'. Beginning transaction @ {1}.</value>
</data>
<data name="LogSessionXCommitTransaction" xml:space="preserve">
<value>Session '{0}'. Commit transaction.</value>
</data>
<data name="LogSessionXRollbackTransaction" xml:space="preserve">
<value>Session '{0}'. Rollback transaction.</value>
</data>
<data name="LogSessionXQueryY" xml:space="preserve">
<value>Session '{0}'. SQL batch:
{1}</value>
</data>
<data name="ExXIsNotSupported" xml:space="preserve">
<value>'{0}' is not supported</value>
</data>
<data name="LogSessionXMakeSavepointY" xml:space="preserve">
<value>Session '{0}'. Make savepoint '{1}'.</value>
</data>
<data name="LogSessionXRollbackToSavepointY" xml:space="preserve">
<value>Session '{0}'. Rollback to savepoint '{1}'.</value>
</data>
<data name="LogSessionXReleaseSavepointY" xml:space="preserve">
<value>Session '{0}'. Release savepoint '{1}'.</value>
</data>
<data name="ExCommandsAreAlreadyTranslated" xml:space="preserve">
<value>Commands are already translated.</value>
</data>
<data name="ExCurrentStorageProviderDoesNotSupportSavepoints" xml:space="preserve">
<value>Current storage provider does not support savepoints (nested transactions).</value>
</data>
<data name="LogStorageXDoesNotSupportPartialIndexesIgnoringFilterForPartialIndexY" xml:space="preserve">
<value>Storage '{0}' does not support partial indexes, ignoring filter for partial index '{0}'.</value>
</data>
<data name="ExOuterParameterReferenceFoundButNoSqlCompilerProvided" xml:space="preserve">
<value>Outer parameter reference found, but no SqlCompiler provided</value>
</data>
<data name="ExTranslationOfInContainsIsNotSupportedInThisCase" xml:space="preserve">
<value>Translation of In/Contains is not supported in this case</value>
</data>
<data name="ExRequestIsNotPrepared" xml:space="preserve">
<value>Request is not prepared</value>
</data>
<data name="ExFieldWithNameAlreadyExistsInEntityFieldsCollection" xml:space="preserve">
<value>Field with name '{0}' already exists in EntityInfo.Fields collection.</value>
</data>
<data name="ExIndexWithNameAlreadyExistsInEntityInfoIndexesCollection" xml:space="preserve">
<value>Index with name '{0}' already exists in EntityInfo.Indexes collection.</value>
</data>
<data name="ExUnsupportedType" xml:space="preserve">
<value>Unsupported type: '{0}'.</value>
</data>
<data name="ExIndexAlreadyContainsField" xml:space="preserve">
<value>Index already contains field '{0}'.</value>
</data>
<data name="ExTypeNotFoundInModel" xml:space="preserve">
<value>Type '{0}' is not found in model.</value>
</data>
<data name="ExFieldNotFoundInModel" xml:space="preserve">
<value>Field '{0}' is not found in model.</value>
</data>
<data name="ExResultTypeIncorrect" xml:space="preserve">
<value>Value of '{0}' type cannot be assigned to property of '{1}' type.</value>
</data>
<data name="ExStorageProviderXIsNotFound" xml:space="preserve">
<value>Storage provider '{0}' is not found.</value>
</data>
<data name="ExEntityRemoved" xml:space="preserve">
<value>Unable to modify removed entity.</value>
</data>
<data name="ExColumnLength" xml:space="preserve">
<value>Value length {0} is greater than column length {1}.</value>
</data>
<data name="ExColumnNotNullable" xml:space="preserve">
<value>Unable to assign null to non-nullable column.</value>
</data>
<data name="ExEntityOfTypeXIsRemoved" xml:space="preserve">
<value>Entity of type '{0}' is removed.</value>
</data>
<data name="ExFieldWithNameXIsAlreadyRegistered" xml:space="preserve">
<value>Field with name '{0}' is already registered.</value>
</data>
<data name="ExFieldXIsAlreadyDefinedInTypeXOrItsAncestor" xml:space="preserve">
<value>Field '{0}' is already defined in type '{1}' or in its ancestor.</value>
</data>
<data name="TypeXDoesNotImplementYZField" xml:space="preserve">
<value>Type '{0}' does not implement '{1}.{2}' property.</value>
</data>
<data name="ExIndexedPropertiesAreNotSupported" xml:space="preserve">
<value>Indexed properties are not supported.</value>
</data>
<data name="ExTypeXIsNotRegisteredInTheModel" xml:space="preserve">
<value>Type '{0}' is not registered in the model.</value>
</data>
<data name="ExFieldXCannotBeLazyLoadAsItIsIncludedInPrimaryKey" xml:space="preserve">
<value>Field '{0}' cannot be LazyLoad as it is included into primary key.</value>
</data>
<data name="ExTypeWithNameXIsAlreadyDefined" xml:space="preserve">
<value>Type with name '{0}' is already defined.</value>
</data>
<data name="ExTypeXIsAlreadyDefined" xml:space="preserve">
<value>Type '{0}' is already defined.</value>
</data>
<data name="ExIndexWithNameXIsAlreadyRegistered" xml:space="preserve">
<value>Index with name '{0}' is already registered.</value>
</data>
<data name="ExTypeDefXIsAlreadyBelongsToHierarchyWithTheRootY" xml:space="preserve">
<value>TypeDef '{0}' already belongs to hierarchy with '{1}' root.</value>
</data>
<data name="ExXDescendantIsAlreadyARootOfAnotherHierarchy" xml:space="preserve">
<value>'{0}' descendant is already a root of another hierarchy.</value>
</data>
<data name="ExPairedFieldXHasWrongTypeItShouldBeReferenceToEntityOrAEntitySet" xml:space="preserve">
<value>Paired field '{0}' has wrong type. A descendant of Entity or EntitySet is expected.</value>
</data>
<data name="ExPairedFieldXYWasNotFoundInZType" xml:space="preserve">
<value>Paired field '{0}.{1}' was not found in '{2}' type.</value>
</data>
<data name="ExAssociationAttributeCanNotBeAppliedToXField" xml:space="preserve">
<value>'AssociationAttribute' can't be applied to '{0}' field.</value>
</data>
<data name="ExInvalidLengthAttributeOnXField" xml:space="preserve">
<value>Invalid Length attribute on '{0}' field.</value>
</data>
<data name="LogExplicitLazyLoadAttributeOnFieldXIsRedundant" xml:space="preserve">
<value>Explicit LazyLoad=true on field '{0}' is redundant.</value>
</data>
<data name="ExplicitMappingNameSettingIsRedundantTheSameNameXWillBeGeneratedAutomatically" xml:space="preserve">
<value>Explicit mapping name setting is redundant. The same name '{0}' will be generated automatically.</value>
</data>
<data name="ExIndexMustContainAtLeastOneField" xml:space="preserve">
<value>Index must contain at least one field.</value>
</data>
<data name="ExInvalidFillFactorXValueMustBeBetween0And1" xml:space="preserve">
<value>Invalid fill factor '{0}'. Value must be between 0 and 1.</value>
</data>
<data name="ExColumnXIsNotFound" xml:space="preserve">
<value>Column '{0}' is not found.</value>
</data>
<data name="XIsNotApplicableToYDescendants" xml:space="preserve">
<value>'{0}' is not applicable to '{1}' descendants.</value>
</data>
<data name="ExIndexNameXIsInvalid" xml:space="preserve">
<value>Index name '{0}' is invalid.</value>
</data>
<data name="ExPropertyXMustBeDeclaredInTypeY" xml:space="preserve">
<value>Property '{0}' must be declared in type '{1}'.</value>
</data>
<data name="ExCannotFindHandlerOfTypeX" xml:space="preserve">
<value>Cannot find a handler of type '{0}'.</value>
</data>
<data name="ExKeyCanNotBeNull" xml:space="preserve">
<value>Key can not be null.</value>
</data>
<data name="LogCreatingX" xml:space="preserve">
<value>Creating {0}</value>
</data>
<data name="LogBuildingX" xml:space="preserve">
<value>Building {0}</value>
</data>
<data name="Model" xml:space="preserve">
<value>Model</value>
</data>
<data name="Generators" xml:space="preserve">
<value>Generators</value>
</data>
<data name="ActualModel" xml:space="preserve">
<value>Actual Model</value>
</data>
<data name="ModelDefinition" xml:space="preserve">
<value>Model Definition</value>
</data>
<data name="CustomDefinitions" xml:space="preserve">
<value>Custom Definitions</value>
</data>
<data name="Types" xml:space="preserve">
<value>Types</value>
</data>
<data name="LogDefiningX" xml:space="preserve">
<value>Defining '{0}'</value>
</data>
<data name="Associations" xml:space="preserve">
<value>Associations</value>
</data>
<data name="Indexes" xml:space="preserve">
<value>Indexes</value>
</data>
<data name="ExSessionIsAlreadyDisposed" xml:space="preserve">
<value>Session is already disposed.</value>
</data>
<data name="ExFieldXYIsNotFound" xml:space="preserve">
<value>Field '{0}.{1}' is not found.</value>
</data>
<data name="ExEntityXIsBoundToAnotherSession" xml:space="preserve">
<value>Entity '{0}' is bound to another Session.</value>
</data>
<data name="ExValueShouldBeXDescendant" xml:space="preserve">
<value>Value should be '{0}' descendant.</value>
</data>
<data name="ExEntitySetCanTBeAssigned" xml:space="preserve">
<value>EntitySet can't be assigned.</value>
</data>
<data name="ExFieldXYIsAlreadyPairedWithABRemoveCD" xml:space="preserve">
<value>Field '{0}.{1}' is already paired with '{2}.{3}'. Please remove [Association] attribute at '{4}.{5}'.</value>
</data>
<data name="ExEntitySetInvalidBecauseTransactionIsNotActive" xml:space="preserve">
<value>Entity set is invalid due to current transaction is not active.</value>
</data>
<data name="ExDefaultGeneratorCanServeHierarchyWithExactlyOneKeyField" xml:space="preserve">
<value>Default generator can serve hierarchy with exactly one key field.</value>
</data>
<data name="ExTypeXIsNotSupported" xml:space="preserve">
<value>Type '{0}' is not supported.</value>
</data>
<data name="ExKeyFieldXInTypeYShouldNotHaveSetAccessor" xml:space="preserve">
<value>Key property '{0}' declared in '{1}' should not have public or protected set accessor. Use base protected constructor to set Key value.</value>
</data>
<data name="ExUnableToSetKeyFieldXExplicitly" xml:space="preserve">
<value>Unable to set Key field '{0}' explicitly.</value>
</data>
<data name="ExSectionIsNotFoundInApplicationConfigurationFile" xml:space="preserve">
<value>Section '{0}' is not found in application configuration file.</value>
</data>
<data name="ExConfigurationForDomainIsNotFoundInApplicationConfigurationFile" xml:space="preserve">
<value>Configuration for Domain with name '{0}' is not found in application configuration file (section '{1}').</value>
</data>
<data name="ExWrongKeyStructure" xml:space="preserve">
<value>Wrong key structure.</value>
</data>
<data name="ExInvalidKeyString" xml:space="preserve">
<value>String representaion of the Key has invalid format.</value>
</data>
<data name="ExCannotAssociateNonEmptyEntityStateWithKeyOfUnknownType" xml:space="preserve">
<value>Attempt to associate non-empty EntityState with Key of unknown type.</value>
</data>
<data name="ExSessionWithNameXAlreadyExists" xml:space="preserve">
<value>Session with name '{0}' already exists.</value>
</data>
<data name="SystemTypes" xml:space="preserve">
<value>system types</value>
</data>
<data name="ExUnsupportedExpressionType" xml:space="preserve">
<value>Unsupported expression type: '{0}'.</value>
</data>
<data name="ExFieldIsNotAnEntityField" xml:space="preserve">
<value>Field '{0}' is not an Entity field in Type '{1}'.</value>
</data>
<data name="TypeXIsNotAnYDescendant" xml:space="preserve">
<value>Type '{0}' is not an '{1}' descendant.</value>
</data>
<data name="ExSessionIsNotOpen" xml:space="preserve">
<value>Session is not open. Use Session.Open(...) to open it.</value>
</data>
<data name="ExUnableToFindFactoryMethodForTypeXMakeSureAssemblyYProcessedByWeaver" xml:space="preserve">
<value>Unable to find factory method for type '{0}'. Make sure assembly '{0}' is processed by weaver. See section 2 of Manual for details.</value>
</data>
<data name="ExCannotResolveEntityWithKeyX" xml:space="preserve">
<value>Cannot resolve entity with key '{0}'.</value>
</data>
<data name="ExUnableToResolveTypeForKeyX" xml:space="preserve">
<value>Unable to resolve type for Key '{0}'.</value>
</data>
<data name="ExUnableToCreateKeyForXHierarchy" xml:space="preserve">
<value>Unable to create key for '{0}' hierarchy. Key value or key generator should be specified.</value>
</data>
<data name="ExCompilerContainerAttributeIsNotAppliedToTypeX" xml:space="preserve">
<value>[CompilerContainer] attribute isn't applied to type '{0}'.</value>
</data>
<data name="ExBinaryExpressionsWithNodeTypeXAreNotSupported" xml:space="preserve">
<value>Binary expressions with NodeType = 'ExpressionType.{0}' aren't supported.</value>
</data>
<data name="ExSpecifiedValuesArentEnoughToCreateKeyForTypeX" xml:space="preserve">
<value>Specified values aren't enough to create key for type '{0}'.</value>
</data>
<data name="ExUpgradeOfAssemblyXFromVersionYToZIsNotSupported" xml:space="preserve">
<value>Upgrade of assembly '{0}' from version '{1}' to '{2}' is not supported.</value>
</data>