-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathNuGetResources.resx
More file actions
6114 lines (6103 loc) · 322 KB
/
NuGetResources.resx
File metadata and controls
6114 lines (6103 loc) · 322 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="DeleteCommandDeletedPackage" xml:space="preserve">
<value>{0} {1} was deleted successfully.</value>
</data>
<data name="InvalidOptionValueError" xml:space="preserve">
<value>Invalid option value: '{0} {1}'</value>
</data>
<data name="ListCommandNoPackages" xml:space="preserve">
<value>No packages found.</value>
</data>
<data name="MissingOptionValueError" xml:space="preserve">
<value>Missing option value for: '{0}'</value>
</data>
<data name="OptionInvalidWithoutSetter" xml:space="preserve">
<value>[option] on '{0}' is invalid without a setter.</value>
</data>
<data name="PackageCommandSpecifyInputFileError" xml:space="preserve">
<value>Please specify a nuspec or project file to use.</value>
</data>
<data name="PackageCommandSuccess" xml:space="preserve">
<value>Successfully created package '{0}'.</value>
</data>
<data name="PushCommandPushingPackage" xml:space="preserve">
<value>Pushing {0} to {1}...</value>
</data>
<data name="PushCommandNoSourceError" xml:space="preserve">
<value>There is no default source, please specify a source.</value>
</data>
<data name="ResourcePropertyIncorrectType" xml:space="preserve">
<value>The property '{0}' on resource type '{1}' is not a type of ResourceManager.</value>
</data>
<data name="ResourceTypeDoesNotHaveProperty" xml:space="preserve">
<value>The resource type '{0}' does not have an accessible static property named '{1}'.</value>
</data>
<data name="UnableToConvertTypeError" xml:space="preserve">
<value>Unable to change from type '{0}' to '{1}'.</value>
</data>
<data name="UnknowCommandError" xml:space="preserve">
<value>Unknown command: '{0}'</value>
</data>
<data name="UnknownOptionError" xml:space="preserve">
<value>Unknown option: '{0}'</value>
</data>
<data name="UpdateCommandCheckingForUpdates" xml:space="preserve">
<value>Checking for updates from {0}.</value>
</data>
<data name="UpdateCommandCurrentlyRunningNuGetExe" xml:space="preserve">
<value>Currently running NuGet.exe {0}.</value>
</data>
<data name="UpdateCommandNuGetUpToDate" xml:space="preserve">
<value>NuGet.exe is up to date.</value>
</data>
<data name="UpdateCommandUnableToFindPackage" xml:space="preserve">
<value>Unable to find '{0}' package.</value>
</data>
<data name="UpdateCommandUnableToLocateNuGetExe" xml:space="preserve">
<value>Invalid NuGet.CommandLine package. Unable to locate NuGet.exe within the package.</value>
</data>
<data name="UpdateCommandUpdateSuccessful" xml:space="preserve">
<value>Update successful.</value>
</data>
<data name="UpdateCommandUpdatingNuGet" xml:space="preserve">
<value>Updating NuGet.exe to {0}.</value>
</data>
<data name="InvalidArguments" xml:space="preserve">
<value>{0}: invalid arguments.</value>
</data>
<data name="PackageCommandAddedFile" xml:space="preserve">
<value>Added file '{0}'.</value>
</data>
<data name="PackageCommandAttemptingToBuildPackage" xml:space="preserve">
<value>Attempting to build package from '{0}'.</value>
</data>
<data name="DefaultCommandDescription" xml:space="preserve">
<value>No description was provided for this command.</value>
</data>
<data name="ConsoleConfirmMessage" xml:space="preserve">
<value>{0} (y/N) </value>
</data>
<data name="ConsoleConfirmMessageAccept" xml:space="preserve">
<value>y</value>
</data>
<data name="DeleteCommandCanceled" xml:space="preserve">
<value>Delete canceled</value>
</data>
<data name="DeleteCommandConfirm" xml:space="preserve">
<value>{0} {1} will be deleted from the {2}. Would you like to continue?</value>
</data>
<data name="AmbiguousCommand" xml:space="preserve">
<value>Ambiguous command '{0}'. Possible values: {1}.</value>
</data>
<data name="AmbiguousOption" xml:space="preserve">
<value>Ambiguous option '{0}'. Possible values: {1}.</value>
</data>
<data name="InstallCommandNothingToInstall" xml:space="preserve">
<value>All packages listed in {0} are already installed.</value>
</data>
<data name="NoApiKeyFound" xml:space="preserve">
<value>No API Key was provided and no API Key could be found for {0}. To save an API Key for a source use the 'setApiKey' command.</value>
</data>
<data name="SetApiKeyCommandApiKeySaved" xml:space="preserve">
<value>The API Key '{0}' was saved for {1}.</value>
</data>
<data name="BuildingProjectTargetingFramework" xml:space="preserve">
<value>Building project '{0}' for target framework '{1}'.</value>
</data>
<data name="FailedToBuildProject" xml:space="preserve">
<value>Failed to build '{0}'.</value>
</data>
<data name="PackagingFilesFromOutputPath" xml:space="preserve">
<value>Packing files from '{0}'.</value>
</data>
<data name="UnableToExtractAssemblyMetadata" xml:space="preserve">
<value>Unable to extract metadata from '{0}'.</value>
</data>
<data name="UsingPackagesConfigForDependencies" xml:space="preserve">
<value>Found packages.config. Using packages listed as dependencies</value>
</data>
<data name="Warning_FileDoesNotExist" xml:space="preserve">
<value>'{0}' was included in the project but doesn't exist. Skipping...</value>
</data>
<data name="Warning_UnresolvedFilePath" xml:space="preserve">
<value>'{0}' was included in the project but the path could not be resolved. Skipping...</value>
</data>
<data name="Warning_UnspecifiedField" xml:space="preserve">
<value>{0} was not specified. Using '{1}'.</value>
</data>
<data name="DefaultSymbolServer" xml:space="preserve">
<value>the symbol server</value>
</data>
<data name="LiveFeed" xml:space="preserve">
<value>the NuGet gallery</value>
</data>
<data name="PackageCommandAttemptingToBuildSymbolsPackage" xml:space="preserve">
<value>Attempting to build symbols package for '{0}'.</value>
</data>
<data name="Warning_SymbolServerNotConfigured" xml:space="preserve">
<value>Found symbols package '{0}', but no API key was specified for the symbol server. To save an API Key, run 'NuGet.exe setApiKey [your API key from http://www.NuGet.org]'.</value>
</data>
<data name="UsingNuspecForMetadata" xml:space="preserve">
<value>Using '{0}' for metadata.</value>
</data>
<data name="InvalidSource" xml:space="preserve">
<value>The specified source '{0}' is invalid. Please provide a valid source.</value>
</data>
<data name="SetApiKeyCommandDefaultApiKeysSaved" xml:space="preserve">
<value>The API Key '{0}' was saved for {1} and {2}.</value>
</data>
<data name="UnableToFindBuildOutput" xml:space="preserve">
<value>Unable to find '{0}'. Make sure the project has been built.</value>
</data>
<data name="InvalidFile" xml:space="preserve">
<value>No packages.config, project or solution file specified. Use the -self switch to update NuGet.exe.</value>
</data>
<data name="PackageDoesNotExist" xml:space="preserve">
<value>Unable to locate '{0} {1}'. Make sure all packages exist in the packages folder before running update.</value>
</data>
<data name="UnableToFindPackages" xml:space="preserve">
<value>Unable to find '{0}'. Make sure they are specified in packages.config.</value>
</data>
<data name="UnableToLocatePackagesFolder" xml:space="preserve">
<value>Unable to locate the packages folder. Try specifying it using the repositoryPath switch.</value>
</data>
<data name="UnableToLocateProjectFile" xml:space="preserve">
<value>Unable to locate project file for '{0}'.</value>
</data>
<data name="FoundProjects" xml:space="preserve">
<value>Found {0} projects with a packages.config file. ({1})</value>
</data>
<data name="LookingForInstalledPackages" xml:space="preserve">
<value>Looking for installed packages in '{0}'.</value>
</data>
<data name="ScanningForProjects" xml:space="preserve">
<value>Scanning for projects...</value>
</data>
<data name="UpdatingProject" xml:space="preserve">
<value>Updating '{0}'...</value>
</data>
<data name="FoundProject" xml:space="preserve">
<value>Found 1 project with a packages.config file. ({0})</value>
</data>
<data name="NoProjectsFound" xml:space="preserve">
<value>No projects found with packages.config.</value>
</data>
<data name="UnableToFindSolution" xml:space="preserve">
<value>Unable to find solution '{0}'.</value>
</data>
<data name="CommandLine_Warning" xml:space="preserve">
<value>WARNING: {0}</value>
</data>
<data name="Credentials_Password" xml:space="preserve">
<value>Password: </value>
</data>
<data name="Credentials_UserName" xml:space="preserve">
<value>UserName: </value>
</data>
<data name="Credentials_RequestCredentials" xml:space="preserve">
<value>Please provide credentials for: {0}</value>
</data>
<data name="InstallCommandPackageAlreadyExists" xml:space="preserve">
<value>Package "{0}" is already installed.</value>
</data>
<data name="SourcesCommandNoSources" xml:space="preserve">
<value>No sources found.</value>
</data>
<data name="SourcesCommandRegisteredSources" xml:space="preserve">
<value>Registered Sources:</value>
</data>
<data name="SourcesCommandInvalidSource" xml:space="preserve">
<value>The source specified is invalid. Please provide a valid source.</value>
</data>
<data name="SourcesCommandNameRequired" xml:space="preserve">
<value>The name specified cannot be empty. Please provide a valid name.</value>
</data>
<data name="SourcesCommandSourceAddedSuccessfully" xml:space="preserve">
<value>Package Source with Name: {0} added successfully.</value>
</data>
<data name="SourcesCommandSourceRequired" xml:space="preserve">
<value>The source specified cannot be empty. Please provide a valid source.</value>
</data>
<data name="SourcesCommandUniqueName" xml:space="preserve">
<value>The name specified has already been added to the list of available package sources. Please provide a unique name.</value>
</data>
<data name="SourcesCommandUniqueSource" xml:space="preserve">
<value>The source specified has already been added to the list of available package sources. Please provide a unique source.</value>
</data>
<data name="SourcesCommandNoMatchingSourcesFound" xml:space="preserve">
<value>Unable to find any package source(s) matching name: {0}.</value>
</data>
<data name="SourcesCommandSourceRemovedSuccessfully" xml:space="preserve">
<value>Package source with Name: {0} removed successfully.</value>
</data>
<data name="SourcesCommandAllNameIsReserved" xml:space="preserve">
<value>Package source name 'All' is a reserved name.</value>
</data>
<data name="ReservedPackageNameAll" xml:space="preserve">
<value>All</value>
</data>
<data name="PackageCommandNoFilesForLibPackage" xml:space="preserve">
<value>Failed to build package. Ensure '{0}' includes assembly files. For help on building symbols package, visit {1}.</value>
</data>
<data name="PackageCommandNoFilesForSymbolsPackage" xml:space="preserve">
<value>Failed to build package. Ensure '{0}' includes source and symbol files. For help on building symbols package, visit {1}.</value>
</data>
<data name="InstallCommandInvalidPackageReference" xml:space="preserve">
<value>'{0}' contains invalid package references. </value>
</data>
<data name="InstallCommandPackageReferenceInvalidVersion" xml:space="preserve">
<value>Version string specified for package reference '{0}' is invalid.</value>
</data>
<data name="PackageCommandPackageIssueSummary" xml:space="preserve">
<value>{0} issue(s) found with package '{1}'.</value>
</data>
<data name="PackageCommandIssueDescription" xml:space="preserve">
<value>Description: {0}</value>
</data>
<data name="PackageCommandIssueSolution" xml:space="preserve">
<value>Solution: {0}</value>
</data>
<data name="PackageCommandIssueTitle" xml:space="preserve">
<value>Issue: {0}</value>
</data>
<data name="Warning_DefaultSpecValue" xml:space="preserve">
<value>The value "{0}" for {1} is a sample value and should be removed.</value>
</data>
<data name="Warning_DefaultSpecValueSolution" xml:space="preserve">
<value>Replace with an appropriate value or remove and it and rebuild your package.</value>
</data>
<data name="Warning_DefaultSpecValueTitle" xml:space="preserve">
<value>Remove sample nuspec values.</value>
</data>
<data name="Credentials_ProxyCredentials" xml:space="preserve">
<value>Please provide proxy credentials:</value>
</data>
<data name="SourcesCommandDisabled" xml:space="preserve">
<value>Disabled</value>
</data>
<data name="SourcesCommandEnabled" xml:space="preserve">
<value>Enabled</value>
</data>
<data name="SourcesCommandSourceDisabledSuccessfully" xml:space="preserve">
<value>Package source with Name: {0} disabled successfully.</value>
</data>
<data name="SourcesCommandSourceEnabledSuccessfully" xml:space="preserve">
<value>Package source with Name: {0} enabled successfully.</value>
</data>
<data name="Warning_SemanticVersion" xml:space="preserve">
<value>Version "{0}" does not follow semantic versioning guidelines.</value>
</data>
<data name="Warning_SemanticVersionSolution" xml:space="preserve">
<value>Update your nuspec file or use the AssemblyInformationalVersion assembly attribute to specify a semantic version as described at http://semver.org. </value>
</data>
<data name="Warning_SemanticVersionTitle" xml:space="preserve">
<value>Use semantic versioning</value>
</data>
<data name="OfficialPackageSourceName" xml:space="preserve">
<value>NuGet official package source</value>
</data>
<data name="PackageCommandFileFromDependencyIsChanged" xml:space="preserve">
<value>File from dependency is changed. Adding file '{0}'.</value>
</data>
<data name="PushCommandPackagePushed" xml:space="preserve">
<value>Your package was pushed.</value>
</data>
<data name="PackageCommandFileFromDependencyIsNotChanged" xml:space="preserve">
<value>File from dependency is not changed. File '{0}' is not added.</value>
</data>
<data name="UnableToFindFile" xml:space="preserve">
<value>File does not exist ({0}).</value>
</data>
<data name="SourcesCommandUpdateSuccessful" xml:space="preserve">
<value>Package source "{0}" was successfully updated.</value>
</data>
<data name="SourcesCommandCredentialsRequired" xml:space="preserve">
<value>Both UserName and Password must be specified.</value>
</data>
<data name="InstallCommandPackageRestoreConsentNotFound" xml:space="preserve">
<value>Package restore is disabled. To enable it, open the Visual Studio Options dialog, click on Package Manager node and check '{0}'. You can also enable package restore by setting the environment variable 'EnableNuGetPackageRestore' to 'true'.</value>
</data>
<data name="ConfigCommandKeyNotFound" xml:space="preserve">
<value>Key '{0}' not found.</value>
</data>
<data name="Error_CannotPromptForInput" xml:space="preserve">
<value>Cannot prompt for input in non-interactive mode.</value>
</data>
<data name="DeleteCommandDeletingPackage" xml:space="preserve">
<value>Deleting {0} {1} from the {2}.</value>
</data>
<data name="Option_VerboseDeprecated" xml:space="preserve">
<value>Option 'Verbose' has been deprecated. Use 'Verbosity' instead.</value>
</data>
<data name="SpecCommandCreatedNuSpec" xml:space="preserve">
<value>Created '{0}' successfully.</value>
</data>
<data name="SpecCommandFileExists" xml:space="preserve">
<value>'{0}' already exists, use -f to overwrite it.</value>
</data>
<data name="Warning_NoPromptDeprecated" xml:space="preserve">
<value>Option 'NoPrompt' has been deprecated. Use 'NonInteractive' instead.</value>
</data>
<data name="Error_SettingsIsNull" xml:space="preserve">
<value>Property Settings is null.</value>
</data>
<data name="Error_SourceProviderIsNull" xml:space="preserve">
<value>Property SourceProvider is null.</value>
</data>
<data name="PackageCommandInvalidMinClientVersion" xml:space="preserve">
<value>The value of MinClientVersion argument is not a valid version.</value>
</data>
<data name="AddFileToPackage" xml:space="preserve">
<value>Add file '{0}' to package as '{1}'</value>
</data>
<data name="FileNotAddedToPackage" xml:space="preserve">
<value>File '{0}' is not added because the package already contains file '{1}'</value>
</data>
<data name="Error_ProcessingNuspecFile" xml:space="preserve">
<value>Error occurred when processing file '{0}': {1}</value>
</data>
<data name="Warning_DuplicatePropertyKey" xml:space="preserve">
<value>'{0}' key already exists in Properties collection. Overriding value.</value>
</data>
<data name="ListCommand_LicenseUrl" xml:space="preserve">
<value>License url: {0}</value>
</data>
<data name="FileConflictChoiceText" xml:space="preserve">
<value>[Y] Yes [A] Yes to All [N] No [L] No to All ?</value>
<comment>Please do not localize the letters inside the [] brackets.</comment>
</data>
<data name="Error_MultipleSolutions" xml:space="preserve">
<value>This folder contains more than one solution file.</value>
</data>
<data name="Error_NoSolutionFileNorePackagesConfigFile" xml:space="preserve">
<value>This folder contains no solution files, nor packages.config files.</value>
</data>
<data name="RestoreCommandOptionSolutionDirectoryIsInvalid" xml:space="preserve">
<value>Option -SolutionDirectory is not valid when restoring packages for a solution.</value>
</data>
<data name="RestoreCommandRestoringPackagesForSolution" xml:space="preserve">
<value>Restoring NuGet packages for solution {0}.</value>
</data>
<data name="RestoreCommandRestoringPackagesFromPackagesConfigFile" xml:space="preserve">
<value>Restoring NuGet packages listed in packages.config file.</value>
</data>
<data name="Error_CannotLoadTypeProjectInSolution" xml:space="preserve">
<value>Cannot load type Microsoft.Build.Construction.ProjectInSolution from Microsoft.Build.dll</value>
</data>
<data name="Error_CannotLoadTypeSolutionParser" xml:space="preserve">
<value>Cannot load type Microsoft.Build.Construction.SolutionParser from Microsoft.Build.dll</value>
</data>
<data name="RestoreCommandRestoringPackagesListedInFile" xml:space="preserve">
<value>Restoring NuGet packages listed in file {0}.</value>
</data>
<data name="RestoreCommandCannotDeterminePackagesFolder" xml:space="preserve">
<value>Cannot determine the packages folder to restore NuGet packages. Please specify either -PackagesDirectory or -SolutionDirectory.</value>
</data>
<data name="RestoreCommandFileNotFound" xml:space="preserve">
<value>Input file does not exist: {0}.</value>
</data>
<data name="RestoreCommandProjectNotFound" xml:space="preserve">
<value>Project file {0} cannot be found.</value>
</data>
<data name="RestoreCommandPackageRestoreOptOutMessage" xml:space="preserve">
<value>Restoring NuGet packages...
To prevent NuGet from downloading packages during build, open the Visual Studio Options dialog, click on the Package Manager node and uncheck '{0}'.</value>
</data>
<data name="Error_CannotGetGetAllProjectFileNamesMethod" xml:space="preserve">
<value>Cannot get the GetAllProjectFileNamesMethod from type Mono.XBuild.CommandLine.SolutionParser.</value>
</data>
<data name="Error_CannotGetXBuildSolutionParser" xml:space="preserve">
<value>Cannot get type Mono.XBuild.CommandLine.SolutionParser.</value>
</data>
<data name="Error_CannotLocateSolutionFile" xml:space="preserve">
<value>Cannot locate a solution file.</value>
</data>
<data name="DeleteCommandDeletedPackage_csy" xml:space="preserve">
<value>{0} {1} bylo úspěšně odstraněno.</value>
</data>
<data name="DeleteCommandDeletedPackage_deu" xml:space="preserve">
<value>{0} {1} wurde erfolgreich gelöscht.</value>
</data>
<data name="DeleteCommandDeletedPackage_esp" xml:space="preserve">
<value>{0} {1} se ha eliminado correctamente.</value>
</data>
<data name="DeleteCommandDeletedPackage_fra" xml:space="preserve">
<value>{0} {1} a été correctement supprimé.</value>
</data>
<data name="DeleteCommandDeletedPackage_ita" xml:space="preserve">
<value>{0} {1} è stato correttamente cancellato.</value>
</data>
<data name="DeleteCommandDeletedPackage_jpn" xml:space="preserve">
<value>{0} {1} は正常に削除されました。</value>
</data>
<data name="DeleteCommandDeletedPackage_kor" xml:space="preserve">
<value>{0} {1}이(가) 삭제되었습니다.</value>
</data>
<data name="DeleteCommandDeletedPackage_plk" xml:space="preserve">
<value>Pomyślnie usunięto element {0} {1}.</value>
</data>
<data name="DeleteCommandDeletedPackage_ptb" xml:space="preserve">
<value>{0} {1} foi excluído com sucesso.</value>
</data>
<data name="DeleteCommandDeletedPackage_rus" xml:space="preserve">
<value>Удаление {0} {1} выполнено.</value>
</data>
<data name="DeleteCommandDeletedPackage_trk" xml:space="preserve">
<value>{0} {1} başarıyla silindi.</value>
</data>
<data name="DeleteCommandDeletedPackage_chs" xml:space="preserve">
<value>已成功删除 {0} {1}。</value>
</data>
<data name="DeleteCommandDeletedPackage_cht" xml:space="preserve">
<value>{0} {1} 已成功刪除。</value>
</data>
<data name="InvalidOptionValueError_csy" xml:space="preserve">
<value>Neplatná hodnota možnosti: '{0} {1}'</value>
</data>
<data name="InvalidOptionValueError_deu" xml:space="preserve">
<value>Ungültiger Optionswert: "{0} {1}"</value>
</data>
<data name="InvalidOptionValueError_esp" xml:space="preserve">
<value>Valor de opción no válido: '{0} {1}'</value>
</data>
<data name="InvalidOptionValueError_fra" xml:space="preserve">
<value>Valeur de l'option non valide : '{0} {1}'</value>
</data>
<data name="InvalidOptionValueError_ita" xml:space="preserve">
<value>Valore opzione non valido: '{0} {1}'</value>
</data>
<data name="InvalidOptionValueError_jpn" xml:space="preserve">
<value>無効なオプションの値: '{0} {1}'</value>
</data>
<data name="InvalidOptionValueError_kor" xml:space="preserve">
<value>잘못된 옵션 값: '{0} {1}'</value>
</data>
<data name="InvalidOptionValueError_plk" xml:space="preserve">
<value>Nieprawidłowa wartość opcji: „{0} {1}”</value>
</data>
<data name="InvalidOptionValueError_ptb" xml:space="preserve">
<value>Valor de opção inválida: '{0} {1}'</value>
</data>
<data name="InvalidOptionValueError_rus" xml:space="preserve">
<value>Недопустимое значение параметра: '{0} {1}'</value>
</data>
<data name="InvalidOptionValueError_trk" xml:space="preserve">
<value>Geçersiz seçenek değeri: '{0} {1}'</value>
</data>
<data name="InvalidOptionValueError_chs" xml:space="preserve">
<value>无效的选项值:“{0} {1}”</value>
</data>
<data name="InvalidOptionValueError_cht" xml:space="preserve">
<value>無效的選項值: '{0} {1}'</value>
</data>
<data name="ListCommandNoPackages_csy" xml:space="preserve">
<value>Nebyly nalezeny žádné balíčky.</value>
</data>
<data name="ListCommandNoPackages_deu" xml:space="preserve">
<value>Es wurden keine Pakete gefunden.</value>
</data>
<data name="ListCommandNoPackages_esp" xml:space="preserve">
<value>No se han encontrado paquetes.</value>
</data>
<data name="ListCommandNoPackages_fra" xml:space="preserve">
<value>Aucun package trouvé.</value>
</data>
<data name="ListCommandNoPackages_ita" xml:space="preserve">
<value>Nessun pacchetto trovato</value>
</data>
<data name="ListCommandNoPackages_jpn" xml:space="preserve">
<value>パッケージが見つかりませんでした。</value>
</data>
<data name="ListCommandNoPackages_kor" xml:space="preserve">
<value>패키지를 찾을 수 없습니다.</value>
</data>
<data name="ListCommandNoPackages_plk" xml:space="preserve">
<value>Nie znaleziono żadnych pakietów.</value>
</data>
<data name="ListCommandNoPackages_ptb" xml:space="preserve">
<value>Nenhum pacote encontrado.</value>
</data>
<data name="ListCommandNoPackages_rus" xml:space="preserve">
<value>Пакеты не найдены.</value>
</data>
<data name="ListCommandNoPackages_trk" xml:space="preserve">
<value>Hiçbir paket bulunamadı.</value>
</data>
<data name="ListCommandNoPackages_chs" xml:space="preserve">
<value>找不到程序包。</value>
</data>
<data name="ListCommandNoPackages_cht" xml:space="preserve">
<value>找不到封裝。</value>
</data>
<data name="MissingOptionValueError_csy" xml:space="preserve">
<value>Chybějící hodnota možnosti: '{0}'</value>
</data>
<data name="MissingOptionValueError_deu" xml:space="preserve">
<value>Fehlender Optionswert für: "{0}"</value>
</data>
<data name="MissingOptionValueError_esp" xml:space="preserve">
<value>Falta el valor de opción para '{0}'</value>
</data>
<data name="MissingOptionValueError_fra" xml:space="preserve">
<value>Valeur de l'option manquante pour : '{0}'</value>
</data>
<data name="MissingOptionValueError_ita" xml:space="preserve">
<value>Valore opzione mancante per: '{0}'</value>
</data>
<data name="MissingOptionValueError_jpn" xml:space="preserve">
<value>次のオプションの値が見つかりません: '{0}'</value>
</data>
<data name="MissingOptionValueError_kor" xml:space="preserve">
<value>'{0}'에 대한 옵션 값이 없습니다.</value>
</data>
<data name="MissingOptionValueError_plk" xml:space="preserve">
<value>Brak wartości opcji dla: „{0}”</value>
</data>
<data name="MissingOptionValueError_ptb" xml:space="preserve">
<value>Valor da opção ausente para: '{0}'</value>
</data>
<data name="MissingOptionValueError_rus" xml:space="preserve">
<value>Отсутствует значение параметра для: "{0}"</value>
</data>
<data name="MissingOptionValueError_trk" xml:space="preserve">
<value>Bu öğe için seçenek değeri eksik: '{0}'</value>
</data>
<data name="MissingOptionValueError_chs" xml:space="preserve">
<value>缺少以下项的选项值:“{0}”</value>
</data>
<data name="MissingOptionValueError_cht" xml:space="preserve">
<value>缺少下列項目的選項值: '{0}'</value>
</data>
<data name="OptionInvalidWithoutSetter_csy" xml:space="preserve">
<value>[možnost] pro {0} je bez metody Setter neplatná.</value>
</data>
<data name="OptionInvalidWithoutSetter_deu" xml:space="preserve">
<value>[Option] für "{0}" ist ohne einen Setter ungültig.</value>
</data>
<data name="OptionInvalidWithoutSetter_esp" xml:space="preserve">
<value>[option] en '{0}' no es válida si no se ha establecido de ningún modo.</value>
</data>
<data name="OptionInvalidWithoutSetter_fra" xml:space="preserve">
<value>[option] sur '{0}' n'est pas valide sans un setter.</value>
</data>
<data name="OptionInvalidWithoutSetter_ita" xml:space="preserve">
<value>[option] su '{0}' non valido senza setter.</value>
</data>
<data name="OptionInvalidWithoutSetter_jpn" xml:space="preserve">
<value>セッターがない '{0}' の [option] は無効です。</value>
</data>
<data name="OptionInvalidWithoutSetter_kor" xml:space="preserve">
<value>setter가 없으므로 '{0}'의 [옵션]이 잘못되었습니다.</value>
</data>
<data name="OptionInvalidWithoutSetter_plk" xml:space="preserve">
<value>Opcja [opcja] dla „{0}” jest nieprawidłowa bez metody ustawiającej.</value>
</data>
<data name="OptionInvalidWithoutSetter_ptb" xml:space="preserve">
<value>[option] em '{0}' não é válido sem um setter.</value>
</data>
<data name="OptionInvalidWithoutSetter_rus" xml:space="preserve">
<value>[параметр] в "{0}" является недопустимым без метода задания значения.</value>
</data>
<data name="OptionInvalidWithoutSetter_trk" xml:space="preserve">
<value>{0}' üzerindeki [option] ayarlayıcı olmadan geçersizdir.</value>
</data>
<data name="OptionInvalidWithoutSetter_chs" xml:space="preserve">
<value>“{0}”上的 [option] 没有 setter,是无效的。</value>
</data>
<data name="OptionInvalidWithoutSetter_cht" xml:space="preserve">
<value>{0}' 上的 [選項] 因為沒有 Setter 因此無效。</value>
</data>
<data name="PackageCommandSpecifyInputFileError_csy" xml:space="preserve">
<value>Zadejte soubor nuspec nebo soubor projektu, který má být použit.</value>
</data>
<data name="PackageCommandSpecifyInputFileError_deu" xml:space="preserve">
<value>Bitte geben Sie eine zu verwendende nuspec- oder Projektdatei an.</value>
</data>
<data name="PackageCommandSpecifyInputFileError_esp" xml:space="preserve">
<value>Especifique el archivo de proyecto o nuspec que se va a usar.</value>
</data>
<data name="PackageCommandSpecifyInputFileError_fra" xml:space="preserve">
<value>Veuillez spécifier le fichier .nuspec ou projet à utiliser.</value>
</data>
<data name="PackageCommandSpecifyInputFileError_ita" xml:space="preserve">
<value>Specificare il file progetto o nuspec da usare.</value>
</data>
<data name="PackageCommandSpecifyInputFileError_jpn" xml:space="preserve">
<value>使用する nuspec または project ファイルを指定してください。</value>
</data>
<data name="PackageCommandSpecifyInputFileError_kor" xml:space="preserve">
<value>사용할 nuspec 또는 프로젝트 파일을 지정하십시오.</value>
</data>
<data name="PackageCommandSpecifyInputFileError_plk" xml:space="preserve">
<value>Określ plik nuspec lub plik projektu, który ma zostać użyty.</value>
</data>
<data name="PackageCommandSpecifyInputFileError_ptb" xml:space="preserve">
<value>Especifique um arquivo nuspec ou de projeto para usar.</value>
</data>
<data name="PackageCommandSpecifyInputFileError_rus" xml:space="preserve">
<value>Укажите NUSPEC-файл или файл проекта для использования.</value>
</data>
<data name="PackageCommandSpecifyInputFileError_trk" xml:space="preserve">
<value>Lütfen kullanılan nuspec veya proje dosyasını belirtin.</value>
</data>
<data name="PackageCommandSpecifyInputFileError_chs" xml:space="preserve">
<value>请指定要使用的 nuspec 文件或项目文件。</value>
</data>
<data name="PackageCommandSpecifyInputFileError_cht" xml:space="preserve">
<value>請指定 nuspec 或要使用的專案檔。</value>
</data>
<data name="PackageCommandSuccess_csy" xml:space="preserve">
<value>Balíček {0} byl úspěšně vytvořen.</value>
</data>
<data name="PackageCommandSuccess_deu" xml:space="preserve">
<value>Das Paket "{0}" wurde erfolgreich erstellt.</value>
</data>
<data name="PackageCommandSuccess_esp" xml:space="preserve">
<value>Paquete '{0}' creado correctamente.</value>
</data>
<data name="PackageCommandSuccess_fra" xml:space="preserve">
<value>Package '{0}' correctement créé.</value>
</data>
<data name="PackageCommandSuccess_ita" xml:space="preserve">
<value>Creato pacchetto '{0}' correttamente.</value>
</data>
<data name="PackageCommandSuccess_jpn" xml:space="preserve">
<value>パッケージ '{0}' が正常に作成されました。</value>
</data>
<data name="PackageCommandSuccess_kor" xml:space="preserve">
<value>'{0}' 패키지를 만들었습니다.</value>
</data>
<data name="PackageCommandSuccess_plk" xml:space="preserve">
<value>Pomyślnie utworzono pakiet „{0}”.</value>
</data>
<data name="PackageCommandSuccess_ptb" xml:space="preserve">
<value>Pacote '{0}' criado com êxito.</value>
</data>
<data name="PackageCommandSuccess_rus" xml:space="preserve">
<value>Пакет "{0}" успешно создан.</value>
</data>
<data name="PackageCommandSuccess_trk" xml:space="preserve">
<value>{0}' paketi başarıyla oluşturuldu.</value>
</data>
<data name="PackageCommandSuccess_chs" xml:space="preserve">
<value>已成功创建程序包“{0}”。</value>
</data>
<data name="PackageCommandSuccess_cht" xml:space="preserve">
<value>已成功建立封裝 '{0}'。</value>
</data>
<data name="PushCommandPushingPackage_csy" xml:space="preserve">
<value>Probíhá předávání {0} do {1}...</value>
</data>
<data name="PushCommandPushingPackage_deu" xml:space="preserve">
<value>{0} wird mittels Push an {1} übertragen...</value>
</data>
<data name="PushCommandPushingPackage_esp" xml:space="preserve">
<value>Insertando {0} a {1}…</value>
</data>
<data name="PushCommandPushingPackage_fra" xml:space="preserve">
<value>Transmission de {0} à {1}…</value>
</data>
<data name="PushCommandPushingPackage_ita" xml:space="preserve">
<value>Comprimendo {0} di {1}...</value>
</data>
<data name="PushCommandPushingPackage_jpn" xml:space="preserve">
<value>{0} を {1} にプッシュしています...</value>
</data>
<data name="PushCommandPushingPackage_kor" xml:space="preserve">
<value>{0}을(를) {1}에 푸시하는 중...</value>
</data>
<data name="PushCommandPushingPackage_plk" xml:space="preserve">
<value>Trwa wypychanie {0} do {1}...</value>
</data>
<data name="PushCommandPushingPackage_ptb" xml:space="preserve">
<value>Empurrando {0} para {1} ...</value>
</data>
<data name="PushCommandPushingPackage_rus" xml:space="preserve">
<value>Отправка {0} в {1}...</value>
</data>
<data name="PushCommandPushingPackage_trk" xml:space="preserve">
<value>{0} öğesi {1} öğesine iletiliyor...</value>
</data>
<data name="PushCommandPushingPackage_chs" xml:space="preserve">
<value>正在将 {0} 推送到 {1}...</value>
</data>
<data name="PushCommandPushingPackage_cht" xml:space="preserve">
<value>正在將 {0} 推入 {1}...</value>
</data>
<data name="PushCommandNoSourceError_csy" xml:space="preserve">
<value>Není nastaven výchozí zdroj. Zadejte zdroj.</value>
</data>
<data name="PushCommandNoSourceError_deu" xml:space="preserve">
<value>Es ist keine Standardquelle vorhanden. Bitte geben Sie eine Quelle an.</value>
</data>
<data name="PushCommandNoSourceError_esp" xml:space="preserve">
<value>No hay ningún origen predeterminado, especifique un origen.</value>
</data>
<data name="PushCommandNoSourceError_fra" xml:space="preserve">
<value>Absence de source par défaut, veuillez en spécifier une.</value>
</data>
<data name="PushCommandNoSourceError_ita" xml:space="preserve">
<value>Nessuna fonte di default, specificare una fonte.</value>
</data>
<data name="PushCommandNoSourceError_jpn" xml:space="preserve">
<value>既定のソースがありません。ソースを指定してください。</value>
</data>
<data name="PushCommandNoSourceError_kor" xml:space="preserve">
<value>기본 소스가 없습니다. 소스를 지정하십시오.</value>
</data>
<data name="PushCommandNoSourceError_plk" xml:space="preserve">
<value>Brak domyślnego źródła. Określ źródło.</value>
</data>
<data name="PushCommandNoSourceError_ptb" xml:space="preserve">
<value>Não há origem padrão. Especifique uma origem.</value>
</data>
<data name="PushCommandNoSourceError_rus" xml:space="preserve">
<value>Источник по умолчанию отсутствует, укажите источник.</value>
</data>
<data name="PushCommandNoSourceError_trk" xml:space="preserve">
<value>Varsayılan herhangi bir kaynak yok, lütfen bir kaynak belirtin.</value>
</data>
<data name="PushCommandNoSourceError_chs" xml:space="preserve">
<value>没有默认源,请指定源。</value>
</data>
<data name="PushCommandNoSourceError_cht" xml:space="preserve">
<value>沒有預設的來源,請指定來源。</value>
</data>
<data name="ResourcePropertyIncorrectType_csy" xml:space="preserve">
<value>Vlastnost {0} typu prostředku {1} není typu ResourceManager.</value>
</data>
<data name="ResourcePropertyIncorrectType_deu" xml:space="preserve">
<value>Die Eigenschaft "{0}" für den Ressourcentyp "{1}" ist kein Typ von "ResourceManager".</value>
</data>
<data name="ResourcePropertyIncorrectType_esp" xml:space="preserve">
<value>La propiedad '{0}' del tipo de recurso '{1}' no es un tipo de ResourceManager.</value>
</data>
<data name="ResourcePropertyIncorrectType_fra" xml:space="preserve">
<value>La propriété '{0}' du type de ressource '{1}' n'est pas du type ResourceManager.</value>
</data>
<data name="ResourcePropertyIncorrectType_ita" xml:space="preserve">
<value>La proprietà '{0}' sulla risorsa tipo '{1}' non è un tipo in ResourceManager.</value>
</data>
<data name="ResourcePropertyIncorrectType_jpn" xml:space="preserve">
<value>リソースの種類 '{1}' のプロパティ '{0}' が ResourceManager 型ではありません。</value>
</data>
<data name="ResourcePropertyIncorrectType_kor" xml:space="preserve">
<value>리소스 형식 '{1}'의 '{0}' 속성이 ResourceManager 형식이 아닙니다.</value>
</data>
<data name="ResourcePropertyIncorrectType_plk" xml:space="preserve">
<value>Właściwość „{0}” w typie zasobu „{1}” nie jest typu ResourceManager.</value>
</data>
<data name="ResourcePropertyIncorrectType_ptb" xml:space="preserve">
<value>A propriedade '{0}' no tipo de recurso '{1}' não é um tipo de ResourceManager.</value>
</data>
<data name="ResourcePropertyIncorrectType_rus" xml:space="preserve">
<value>Типом свойства "{0}" типа ресурса "{1}" не является ResourceManager.</value>
</data>
<data name="ResourcePropertyIncorrectType_trk" xml:space="preserve">
<value>{1}' kaynak türündeki '{0}' özelliği bir ResourceManager türü değildir.</value>
</data>
<data name="ResourcePropertyIncorrectType_chs" xml:space="preserve">
<value>资源类型“{1}”的属性“{0}”不是 ResourceManager 类型。</value>
</data>
<data name="ResourcePropertyIncorrectType_cht" xml:space="preserve">
<value>資源類型 '{1}' 上的屬性 '{0}' 不是 ResourceManager 類型。</value>
</data>
<data name="ResourceTypeDoesNotHaveProperty_csy" xml:space="preserve">
<value>Typ prostředku {0} neobsahuje přístupnou statickou vlastnost s názvem {1}.</value>
</data>
<data name="ResourceTypeDoesNotHaveProperty_deu" xml:space="preserve">
<value>Der Ressourcentyp "{0}" besitzt keine statische Eigenschaft namens "{1}", auf die zugegriffen werden kann.</value>
</data>
<data name="ResourceTypeDoesNotHaveProperty_esp" xml:space="preserve">
<value>El tipo de recurso '{0}' no tiene una propiedad estática accesible denominada '{1}'.</value>
</data>
<data name="ResourceTypeDoesNotHaveProperty_fra" xml:space="preserve">
<value>Le type de ressource '{0}' ne dispose pas d'une propriété statique accessible nommée '{1}'.</value>
</data>
<data name="ResourceTypeDoesNotHaveProperty_ita" xml:space="preserve">
<value>Il tipo di risorsa '{0}'non ha una proprietà statica accessibile di nome'{1}'.</value>
</data>
<data name="ResourceTypeDoesNotHaveProperty_jpn" xml:space="preserve">
<value>リソースの種類 '{0}' に、'{1}' というアクセスできる静的プロパティがありません。</value>
</data>
<data name="ResourceTypeDoesNotHaveProperty_kor" xml:space="preserve">
<value>리소스 형식 '{0}'에 액세스 가능한 '{1}' 이름의 정적 속성이 없습니다.</value>
</data>
<data name="ResourceTypeDoesNotHaveProperty_plk" xml:space="preserve">
<value>Typ zasobu „{0}” nie ma dostępnej właściwości statycznej o nazwie „{1}”.</value>
</data>
<data name="ResourceTypeDoesNotHaveProperty_ptb" xml:space="preserve">
<value>O tipo de recurso '{0}' não tem uma propriedade estática acessível chamada '{1}'.</value>
</data>
<data name="ResourceTypeDoesNotHaveProperty_rus" xml:space="preserve">
<value>У типа ресурса "{0}" отсутствует доступное статическое свойство с именем "{1}".</value>
</data>
<data name="ResourceTypeDoesNotHaveProperty_trk" xml:space="preserve">
<value>{0}' kaynak türünün erişilebilir '{1}' adlı erişilebilir statik bir özelliği yok.</value>
</data>
<data name="ResourceTypeDoesNotHaveProperty_chs" xml:space="preserve">
<value>资源类型“{0}”没有名为“{1}”的可访问静态属性。</value>
</data>
<data name="ResourceTypeDoesNotHaveProperty_cht" xml:space="preserve">
<value>資源類型 '{0}' 沒有可存取的靜態屬性名為 '{1}'。</value>
</data>
<data name="UnableToConvertTypeError_csy" xml:space="preserve">
<value>Nelze provést změnu z typu {0} na typ {1}.</value>
</data>
<data name="UnableToConvertTypeError_deu" xml:space="preserve">
<value>Der Typ kann nicht aus "{0}" in "{1}" geändert werden.</value>
</data>
<data name="UnableToConvertTypeError_esp" xml:space="preserve">
<value>No se puede cambiar del tipo '{0}' a '{1}'.</value>
</data>
<data name="UnableToConvertTypeError_fra" xml:space="preserve">
<value>Impossible de basculer du type '{0}' au type '{1}'.</value>
</data>
<data name="UnableToConvertTypeError_ita" xml:space="preserve">
<value>Impossibile modificare da '{0}' a '{1}'.</value>
</data>
<data name="UnableToConvertTypeError_jpn" xml:space="preserve">
<value>型 '{0}' から '{1}' に変更できません。</value>
</data>
<data name="UnableToConvertTypeError_kor" xml:space="preserve">
<value>'{0}'에서 '{1}'(으)로 형식을 변경할 수 없습니다.</value>
</data>
<data name="UnableToConvertTypeError_plk" xml:space="preserve">
<value>Nie można zmienić typu „{0}” na „{1}”.</value>
</data>
<data name="UnableToConvertTypeError_ptb" xml:space="preserve">
<value>Não é possível mudar do tipo '{0}' para '{1}'.</value>
</data>
<data name="UnableToConvertTypeError_rus" xml:space="preserve">
<value>Не удалось изменить тип "{0}" на "{1}".</value>
</data>
<data name="UnableToConvertTypeError_trk" xml:space="preserve">
<value>{0}' türünden '{1}' türüne değiştirilemiyor.</value>
</data>
<data name="UnableToConvertTypeError_chs" xml:space="preserve">
<value>无法从类型“{0}”更改为“{1}”。</value>
</data>
<data name="UnableToConvertTypeError_cht" xml:space="preserve">
<value>無法變更類型 '{0}' 為 '{1}'。</value>
</data>