-
Notifications
You must be signed in to change notification settings - Fork 4k
/
FeaturesResources.resx
1717 lines (1705 loc) · 81.9 KB
/
FeaturesResources.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="Add_project_reference_to_0" xml:space="preserve">
<value>Add project reference to '{0}'.</value>
</data>
<data name="Add_reference_to_0" xml:space="preserve">
<value>Add reference to '{0}'.</value>
</data>
<data name="Actions_can_not_be_empty" xml:space="preserve">
<value>Actions can not be empty.</value>
</data>
<data name="generic_overload" xml:space="preserve">
<value>generic overload</value>
</data>
<data name="generic_overloads" xml:space="preserve">
<value>generic overloads</value>
</data>
<data name="overload" xml:space="preserve">
<value>overload</value>
</data>
<data name="overloads_" xml:space="preserve">
<value>overloads</value>
</data>
<data name="_0_Keyword" xml:space="preserve">
<value>{0} Keyword</value>
</data>
<data name="Encapsulate_field_colon_0_and_use_property" xml:space="preserve">
<value>Encapsulate field: '{0}' (and use property)</value>
</data>
<data name="Encapsulate_field_colon_0_but_still_use_field" xml:space="preserve">
<value>Encapsulate field: '{0}' (but still use field)</value>
</data>
<data name="Encapsulate_fields_and_use_property" xml:space="preserve">
<value>Encapsulate fields (and use property)</value>
</data>
<data name="Encapsulate_fields_but_still_use_field" xml:space="preserve">
<value>Encapsulate fields (but still use field)</value>
</data>
<data name="Could_not_extract_interface_colon_The_selection_is_not_inside_a_class_interface_struct" xml:space="preserve">
<value>Could not extract interface: The selection is not inside a class/interface/struct.</value>
</data>
<data name="Could_not_extract_interface_colon_The_type_does_not_contain_any_member_that_can_be_extracted_to_an_interface" xml:space="preserve">
<value>Could not extract interface: The type does not contain any member that can be extracted to an interface.</value>
</data>
<data name="can_t_not_construct_final_tree" xml:space="preserve">
<value>can't not construct final tree</value>
</data>
<data name="Parameters_type_or_return_type_cannot_be_an_anonymous_type_colon_bracket_0_bracket" xml:space="preserve">
<value>Parameters' type or return type cannot be an anonymous type : [{0}]</value>
</data>
<data name="The_selection_contains_no_active_statement" xml:space="preserve">
<value>The selection contains no active statement.</value>
</data>
<data name="The_selection_contains_an_error_or_unknown_type" xml:space="preserve">
<value>The selection contains an error or unknown type.</value>
</data>
<data name="Type_parameter_0_is_hidden_by_another_type_parameter_1" xml:space="preserve">
<value>Type parameter '{0}' is hidden by another type parameter '{1}'.</value>
</data>
<data name="The_address_of_a_variable_is_used_inside_the_selected_code" xml:space="preserve">
<value>The address of a variable is used inside the selected code.</value>
</data>
<data name="Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket" xml:space="preserve">
<value>Assigning to readonly fields must be done in a constructor : [{0}].</value>
</data>
<data name="generated_code_is_overlapping_with_hidden_portion_of_the_code" xml:space="preserve">
<value>generated code is overlapping with hidden portion of the code</value>
</data>
<data name="Add_optional_parameters_to_0" xml:space="preserve">
<value>Add optional parameters to '{0}'</value>
</data>
<data name="Add_parameters_to_0" xml:space="preserve">
<value>Add parameters to '{0}'</value>
</data>
<data name="Generate_delegating_constructor_0_1" xml:space="preserve">
<value>Generate delegating constructor '{0}({1})'</value>
</data>
<data name="Generate_constructor_0_1" xml:space="preserve">
<value>Generate constructor '{0}({1})'</value>
</data>
<data name="Generate_field_assigning_constructor_0_1" xml:space="preserve">
<value>Generate field assigning constructor '{0}({1})'</value>
</data>
<data name="Generate_Equals_and_GetHashCode" xml:space="preserve">
<value>Generate Equals and GetHashCode</value>
</data>
<data name="Generate_Equals_object" xml:space="preserve">
<value>Generate Equals(object)</value>
</data>
<data name="Generate_GetHashCode" xml:space="preserve">
<value>Generate GetHashCode()</value>
</data>
<data name="Generate_constructor_in_0" xml:space="preserve">
<value>Generate constructor in '{0}'</value>
</data>
<data name="Generate_all" xml:space="preserve">
<value>Generate all</value>
</data>
<data name="Generate_enum_member_1_0" xml:space="preserve">
<value>Generate enum member '{1}.{0}'</value>
</data>
<data name="Generate_constant_1_0" xml:space="preserve">
<value>Generate constant '{1}.{0}'</value>
</data>
<data name="Generate_read_only_property_1_0" xml:space="preserve">
<value>Generate read-only property '{1}.{0}'</value>
</data>
<data name="Generate_property_1_0" xml:space="preserve">
<value>Generate property '{1}.{0}'</value>
</data>
<data name="Generate_read_only_field_1_0" xml:space="preserve">
<value>Generate read-only field '{1}.{0}'</value>
</data>
<data name="Generate_field_1_0" xml:space="preserve">
<value>Generate field '{1}.{0}'</value>
</data>
<data name="Generate_local_0" xml:space="preserve">
<value>Generate local '{0}'</value>
</data>
<data name="Generate_0_1_in_new_file" xml:space="preserve">
<value>Generate {0} '{1}' in new file</value>
</data>
<data name="Generate_nested_0_1" xml:space="preserve">
<value>Generate nested {0} '{1}'</value>
</data>
<data name="Global_Namespace" xml:space="preserve">
<value>Global Namespace</value>
</data>
<data name="Implement_interface_explicitly" xml:space="preserve">
<value>Implement interface explicitly</value>
</data>
<data name="Implement_interface_abstractly" xml:space="preserve">
<value>Implement interface abstractly</value>
</data>
<data name="Implement_interface_through_0" xml:space="preserve">
<value>Implement interface through '{0}'</value>
</data>
<data name="Implement_interface" xml:space="preserve">
<value>Implement interface</value>
</data>
<data name="Introduce_field_for_0" xml:space="preserve">
<value>Introduce field for '{0}'</value>
</data>
<data name="Introduce_local_for_0" xml:space="preserve">
<value>Introduce local for '{0}'</value>
</data>
<data name="Introduce_constant_for_0" xml:space="preserve">
<value>Introduce constant for '{0}'</value>
</data>
<data name="Introduce_local_constant_for_0" xml:space="preserve">
<value>Introduce local constant for '{0}'</value>
</data>
<data name="Introduce_field_for_all_occurrences_of_0" xml:space="preserve">
<value>Introduce field for all occurrences of '{0}'</value>
</data>
<data name="Introduce_local_for_all_occurrences_of_0" xml:space="preserve">
<value>Introduce local for all occurrences of '{0}'</value>
</data>
<data name="Introduce_constant_for_all_occurrences_of_0" xml:space="preserve">
<value>Introduce constant for all occurrences of '{0}'</value>
</data>
<data name="Introduce_local_constant_for_all_occurrences_of_0" xml:space="preserve">
<value>Introduce local constant for all occurrences of '{0}'</value>
</data>
<data name="Introduce_query_variable_for_all_occurrences_of_0" xml:space="preserve">
<value>Introduce query variable for all occurrences of '{0}'</value>
</data>
<data name="Introduce_query_variable_for_0" xml:space="preserve">
<value>Introduce query variable for '{0}'</value>
</data>
<data name="Anonymous_Types_colon" xml:space="preserve">
<value>Anonymous Types:</value>
</data>
<data name="is_" xml:space="preserve">
<value>is</value>
</data>
<data name="Represents_an_object_whose_operations_will_be_resolved_at_runtime" xml:space="preserve">
<value>Represents an object whose operations will be resolved at runtime.</value>
</data>
<data name="constant" xml:space="preserve">
<value>constant</value>
</data>
<data name="field" xml:space="preserve">
<value>field</value>
</data>
<data name="local_constant" xml:space="preserve">
<value>local constant</value>
</data>
<data name="local_variable" xml:space="preserve">
<value>local variable</value>
</data>
<data name="label" xml:space="preserve">
<value>label</value>
</data>
<data name="range_variable" xml:space="preserve">
<value>range variable</value>
</data>
<data name="parameter" xml:space="preserve">
<value>parameter</value>
</data>
<data name="in_" xml:space="preserve">
<value>in</value>
</data>
<data name="Summary_colon" xml:space="preserve">
<value>Summary:</value>
</data>
<data name="Locals_and_parameters" xml:space="preserve">
<value>Locals and parameters</value>
</data>
<data name="Type_parameters_colon" xml:space="preserve">
<value>Type parameters:</value>
</data>
<data name="Returns_colon" xml:space="preserve">
<value>Returns:</value>
</data>
<data name="Exceptions_colon" xml:space="preserve">
<value>Exceptions:</value>
</data>
<data name="Remarks_colon" xml:space="preserve">
<value>Remarks:</value>
</data>
<data name="generating_source_for_symbols_of_this_type_is_not_supported" xml:space="preserve">
<value>generating source for symbols of this type is not supported</value>
</data>
<data name="Assembly" xml:space="preserve">
<value>Assembly</value>
</data>
<data name="location_unknown" xml:space="preserve">
<value>location unknown</value>
</data>
<data name="Extract_Interface" xml:space="preserve">
<value>Extract Interface...</value>
</data>
<data name="Updating_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Changing_0_to_1_will_prevent_the_debug_session_from_continuing_because_it_changes_the_shape_of_the_state_machine" xml:space="preserve">
<value>Changing '{0}' to '{1}' will prevent the debug session from continuing because it changes the shape of the state machine.</value>
</data>
<data name="Updating_a_complex_statement_containing_an_await_expression_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating a complex statement containing an await expression will prevent the debug session from continuing.</value>
</data>
<data name="Changing_visibility_of_a_constructor_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Changing visibility of a constructor will prevent the debug session from continuing.</value>
</data>
<data name="Capturing_variable_0_that_hasn_t_been_captured_before_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Capturing variable '{0}' that hasn't been captured before will prevent the debug session from continuing.</value>
</data>
<data name="Ceasing_to_capture_variable_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Ceasing to capture variable '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Deleting_captured_variable_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Deleting captured variable '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Changing_the_type_of_a_captured_variable_0_previously_of_type_1_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Changing the type of a captured variable '{0}' previously of type '{1}' will prevent the debug session from continuing.</value>
</data>
<data name="Changing_the_parameters_of_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Changing the parameters of '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Changing_the_return_type_of_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Changing the return type of '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Changing_the_type_of_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Changing the type of '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Changing_the_declaration_scope_of_a_captured_variable_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Changing the declaration scope of a captured variable '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Accessing_captured_variable_0_that_hasn_t_been_accessed_before_in_1_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Accessing captured variable '{0}' that hasn't been accessed before in {1} will prevent the debug session from continuing.</value>
</data>
<data name="Ceasing_to_access_captured_variable_0_in_1_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Ceasing to access captured variable '{0}' in {1} will prevent the debug session from continuing.</value>
</data>
<data name="Adding_0_that_accesses_captured_variables_1_and_2_declared_in_different_scopes_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding '{0}' that accesses captured variables '{1}' and '{2}' declared in different scopes will prevent the debug session from continuing.</value>
</data>
<data name="Removing_0_that_accessed_captured_variables_1_and_2_declared_in_different_scopes_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Removing '{0}' that accessed captured variables '{1}' and '{2}' declared in different scopes will prevent the debug session from continuing.</value>
</data>
<data name="Adding_0_into_a_1_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding '{0}' into a '{1}' will prevent the debug session from continuing.</value>
</data>
<data name="Adding_0_into_an_interface_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding '{0}' into an interface will prevent the debug session from continuing.</value>
</data>
<data name="Adding_0_into_an_interface_method_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding '{0}' into an interface method will prevent the debug session from continuing.</value>
</data>
<data name="Adding_0_into_a_class_with_explicit_or_sequential_layout_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding '{0}' into a class with explicit or sequential layout will prevent the debug session from continuing.</value>
</data>
<data name="Updating_the_modifiers_of_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating the modifiers of '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Updating_the_Handles_clause_of_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating the Handles clause of '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Adding_0_with_the_Handles_clause_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding '{0}' with the Handles clause will prevent the debug session from continuing.</value>
</data>
<data name="Updating_the_Implements_clause_of_a_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating the Implements clause of a '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Changing_the_constraint_from_0_to_1_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Changing the constraint from '{0}' to '{1}' will prevent the debug session from continuing.</value>
</data>
<data name="Updating_the_variance_of_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating the variance of '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Updating_the_type_of_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating the type of '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Updating_the_initializer_of_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating the initializer of '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Updating_the_size_of_a_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating the size of a '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Updating_the_underlying_type_of_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating the underlying type of '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Updating_the_base_class_and_or_base_interface_s_of_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating the base class and/or base interface(s) of '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Updating_a_field_to_an_event_or_vice_versa_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating a field to an event or vice versa will prevent the debug session from continuing.</value>
</data>
<data name="Updating_the_kind_of_a_type_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating the kind of a type will prevent the debug session from continuing.</value>
</data>
<data name="Updating_the_kind_of_an_property_event_accessor_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating the kind of an property/event accessor will prevent the debug session from continuing.</value>
</data>
<data name="Updating_the_kind_of_a_method_Sub_Function_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating the kind of a method (Sub/Function) will prevent the debug session from continuing.</value>
</data>
<data name="Updating_the_library_name_of_Declare_Statement_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating the library name of Declare Statement will prevent the debug session from continuing.</value>
</data>
<data name="Updating_the_alias_of_Declare_Statement_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating the alias of Declare Statement will prevent the debug session from continuing.</value>
</data>
<data name="Renaming_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Renaming '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Adding_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Adding_an_abstract_0_or_overriding_an_inherited_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding an abstract '{0}' or overriding an inherited '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Adding_a_MustOverride_0_or_overriding_an_inherited_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding a MustOverride '{0}' or overriding an inherited '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Adding_an_extern_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding an extern '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Adding_an_imported_method_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding an imported method will prevent the debug session from continuing.</value>
</data>
<data name="Adding_a_user_defined_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding a user defined '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Adding_a_generic_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding a generic '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Adding_0_around_an_active_statement_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding '{0}' around an active statement will prevent the debug session from continuing.</value>
</data>
<data name="Moving_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Moving '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Deleting_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Deleting '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Deleting_0_around_an_active_statement_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Deleting '{0}' around an active statement will prevent the debug session from continuing.</value>
</data>
<data name="Adding_a_method_body_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding a method body will prevent the debug session from continuing.</value>
</data>
<data name="Deleting_a_method_body_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Deleting a method body will prevent the debug session from continuing.</value>
</data>
<data name="An_active_statement_has_been_removed_from_its_original_method_You_must_revert_your_changes_to_continue_or_restart_the_debugging_session" xml:space="preserve">
<value>An active statement has been removed from its original method. You must revert your changes to continue or restart the debugging session.</value>
</data>
<data name="Updating_a_0_around_an_active_statement_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating a '{0}' around an active statement will prevent the debug session from continuing.</value>
</data>
<data name="Updating_async_or_iterator_modifier_around_an_active_statement_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating async or iterator modifier around an active statement will prevent the debug session from continuing.</value>
<comment>{Locked="async"}{Locked="iterator"} "async" and "iterator" are C#/VB keywords and should not be localized.</comment>
</data>
<data name="Changing_0_from_asynchronous_to_synchronous_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Changing '{0}' from asynchronous to synchronous will prevent the debug session from continuing.</value>
</data>
<data name="Modifying_a_generic_method_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Modifying a generic method will prevent the debug session from continuing.</value>
</data>
<data name="Modifying_whitespace_or_comments_in_a_generic_0_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Modifying whitespace or comments in a generic '{0}' will prevent the debug session from continuing.</value>
</data>
<data name="Modifying_a_method_inside_the_context_of_a_generic_type_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Modifying a method inside the context of a generic type will prevent the debug session from continuing.</value>
</data>
<data name="Modifying_whitespace_or_comments_in_0_inside_the_context_of_a_generic_type_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Modifying whitespace or comments in '{0}' inside the context of a generic type will prevent the debug session from continuing.</value>
</data>
<data name="Modifying_the_initializer_of_0_in_a_generic_type_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Modifying the initializer of '{0}' in a generic type will prevent the debug session from continuing.</value>
</data>
<data name="Modifying_the_initializer_of_0_in_a_partial_type_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Modifying the initializer of '{0}' in a partial type will prevent the debug session from continuing.</value>
</data>
<data name="Adding_a_constructor_to_a_type_with_a_field_or_property_initializer_that_contains_an_anonymous_function_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding a constructor to a type with a field or property initializer that contains an anonymous function will prevent the debug session from continuing.</value>
</data>
<data name="Renaming_a_captured_variable_from_0_to_1_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Renaming a captured variable, from '{0}' to '{1}' will prevent the debug session from continuing.</value>
</data>
<data name="Modifying_a_catch_finally_handler_with_an_active_statement_in_the_try_block_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Modifying a catch/finally handler with an active statement in the try block will prevent the debug session from continuing.</value>
</data>
<data name="Modifying_a_try_catch_finally_statement_when_the_finally_block_is_active_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Modifying a try/catch/finally statement when the finally block is active will prevent the debug session from continuing.</value>
</data>
<data name="Modifying_a_catch_handler_around_an_active_statement_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Modifying a catch handler around an active statement will prevent the debug session from continuing.</value>
</data>
<data name="Modifying_0_which_contains_the_stackalloc_operator_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Modifying '{0}' which contains the 'stackalloc' operator will prevent the debug session from continuing.</value>
</data>
<data name="Modifying_0_which_contains_a_switch_expression_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Modifying '{0}' which contains a switch expression will prevent the debug session from continuing.</value>
</data>
<data name="Modifying_an_active_0_which_contains_On_Error_or_Resume_statements_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Modifying an active '{0}' which contains 'On Error' or 'Resume' statements will prevent the debug session from continuing.</value>
</data>
<data name="Modifying_0_which_contains_an_Aggregate_Group_By_or_Join_query_clauses_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Modifying '{0}' which contains an Aggregate, Group By, or Join query clauses will prevent the debug session from continuing.</value>
</data>
<data name="Modifying_source_with_experimental_language_features_enabled_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Modifying source with experimental language features enabled will prevent the debug session from continuing.</value>
</data>
<data name="Updating_an_active_statement_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Updating an active statement will prevent the debug session from continuing.</value>
</data>
<data name="Removing_0_that_contains_an_active_statement_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Removing '{0}' that contains an active statement will prevent the debug session from continuing.</value>
</data>
<data name="Adding_a_new_file_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Adding a new file will prevent the debug session from continuing.</value>
</data>
<data name="Attribute_0_is_missing_Updating_an_async_method_or_an_iterator_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Attribute '{0}' is missing. Updating an async method or an iterator will prevent the debug session from continuing.</value>
</data>
<data name="Unexpected_interface_member_kind_colon_0" xml:space="preserve">
<value>Unexpected interface member kind: {0}</value>
</data>
<data name="Unknown_symbol_kind" xml:space="preserve">
<value>Unknown symbol kind</value>
</data>
<data name="Generate_abstract_property_1_0" xml:space="preserve">
<value>Generate abstract property '{1}.{0}'</value>
</data>
<data name="Generate_abstract_method_1_0" xml:space="preserve">
<value>Generate abstract method '{1}.{0}'</value>
</data>
<data name="Generate_method_1_0" xml:space="preserve">
<value>Generate method '{1}.{0}'</value>
</data>
<data name="Requested_assembly_already_loaded_from_0" xml:space="preserve">
<value>Requested assembly already loaded from '{0}'.</value>
</data>
<data name="The_symbol_does_not_have_an_icon" xml:space="preserve">
<value>The symbol does not have an icon.</value>
</data>
<data name="Unknown" xml:space="preserve">
<value>Unknown</value>
</data>
<data name="Extract_Method" xml:space="preserve">
<value>Extract Method</value>
</data>
<data name="Extract_Method_plus_Local" xml:space="preserve">
<value>Extract Method + Local</value>
</data>
<data name="Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket" xml:space="preserve">
<value>Asynchronous method cannot have ref/out parameters : [{0}]</value>
</data>
<data name="The_member_is_defined_in_metadata" xml:space="preserve">
<value>The member is defined in metadata.</value>
</data>
<data name="You_can_only_change_the_signature_of_a_constructor_indexer_method_or_delegate" xml:space="preserve">
<value>You can only change the signature of a constructor, indexer, method or delegate.</value>
</data>
<data name="This_symbol_has_related_definitions_or_references_in_metadata_Changing_its_signature_may_result_in_build_errors_Do_you_want_to_continue" xml:space="preserve">
<value>This symbol has related definitions or references in metadata. Changing its signature may result in build errors.
Do you want to continue?</value>
</data>
<data name="Change_signature" xml:space="preserve">
<value>Change signature...</value>
</data>
<data name="Generate_new_type" xml:space="preserve">
<value>Generate new type...</value>
</data>
<data name="User_Diagnostic_Analyzer_Failure" xml:space="preserve">
<value>User Diagnostic Analyzer Failure.</value>
</data>
<data name="Analyzer_0_threw_an_exception_of_type_1_with_message_2" xml:space="preserve">
<value>Analyzer '{0}' threw an exception of type '{1}' with message '{2}'.</value>
</data>
<data name="Analyzer_0_threw_the_following_exception_colon_1" xml:space="preserve">
<value>Analyzer '{0}' threw the following exception:
'{1}'.</value>
</data>
<data name="Remove_Unnecessary_Cast" xml:space="preserve">
<value>Remove Unnecessary Cast</value>
</data>
<data name="Simplify_Names" xml:space="preserve">
<value>Simplify Names</value>
</data>
<data name="Simplify_Member_Access" xml:space="preserve">
<value>Simplify Member Access</value>
</data>
<data name="Remove_qualification" xml:space="preserve">
<value>Remove qualification</value>
</data>
<data name="This_signature_does_not_contain_parameters_that_can_be_changed" xml:space="preserve">
<value>This signature does not contain parameters that can be changed.</value>
</data>
<data name="Unknown_error_occurred" xml:space="preserve">
<value>Unknown error occurred</value>
</data>
<data name="Available" xml:space="preserve">
<value>Available</value>
</data>
<data name="Not_Available" xml:space="preserve">
<value>Not Available</value>
</data>
<data name="_0_1" xml:space="preserve">
<value> {0} - {1}</value>
</data>
<data name="You_can_use_the_navigation_bar_to_switch_context" xml:space="preserve">
<value>You can use the navigation bar to switch context.</value>
</data>
<data name="in_Source" xml:space="preserve">
<value>in Source</value>
</data>
<data name="in_Suppression_File" xml:space="preserve">
<value>in Suppression File</value>
</data>
<data name="Remove_Suppression_0" xml:space="preserve">
<value>Remove Suppression {0}</value>
</data>
<data name="Remove_Suppression" xml:space="preserve">
<value>Remove Suppression</value>
</data>
<data name="Configure_0_severity" xml:space="preserve">
<value>Configure {0} severity</value>
</data>
<data name="Configure_0_code_style" xml:space="preserve">
<value>Configure {0} code style</value>
</data>
<data name="Pending" xml:space="preserve">
<value><Pending></value>
</data>
<data name="Awaited_task_returns" xml:space="preserve">
<value>Awaited task returns</value>
</data>
<data name="no_value" xml:space="preserve">
<value>no value.</value>
</data>
<data name="Note_colon_Tab_twice_to_insert_the_0_snippet" xml:space="preserve">
<value>Note: Tab twice to insert the '{0}' snippet.</value>
</data>
<data name="Implement_interface_explicitly_with_Dispose_pattern" xml:space="preserve">
<value>Implement interface explicitly with Dispose pattern</value>
</data>
<data name="Implement_interface_with_Dispose_pattern" xml:space="preserve">
<value>Implement interface with Dispose pattern</value>
</data>
<data name="Compiler1" xml:space="preserve">
<value>Compiler</value>
</data>
<data name="Style" xml:space="preserve">
<value>Style</value>
</data>
<data name="Suppress_0" xml:space="preserve">
<value>Suppress {0}</value>
</data>
<data name="Re_triage_0_currently_1" xml:space="preserve">
<value>Re-triage {0}(currently '{1}')</value>
</data>
<data name="Argument_cannot_have_a_null_element" xml:space="preserve">
<value>Argument cannot have a null element.</value>
</data>
<data name="Argument_cannot_be_empty" xml:space="preserve">
<value>Argument cannot be empty.</value>
</data>
<data name="Reported_diagnostic_with_ID_0_is_not_supported_by_the_analyzer" xml:space="preserve">
<value>Reported diagnostic with ID '{0}' is not supported by the analyzer.</value>
</data>
<data name="Computing_fix_all_occurrences_code_fix" xml:space="preserve">
<value>Computing fix all occurrences code fix...</value>
</data>
<data name="Fix_all_occurrences" xml:space="preserve">
<value>Fix all occurrences</value>
</data>
<data name="Document" xml:space="preserve">
<value>Document</value>
</data>
<data name="Project" xml:space="preserve">
<value>Project</value>
</data>
<data name="Solution" xml:space="preserve">
<value>Solution</value>
</data>
<data name="TODO_colon_dispose_managed_state_managed_objects" xml:space="preserve">
<value>TODO: dispose managed state (managed objects).</value>
</data>
<data name="TODO_colon_set_large_fields_to_null" xml:space="preserve">
<value>TODO: set large fields to null.</value>
</data>
<data name="To_detect_redundant_calls" xml:space="preserve">
<value>To detect redundant calls</value>
</data>
<data name="Modifying_0_which_contains_a_static_variable_will_prevent_the_debug_session_from_continuing" xml:space="preserve">
<value>Modifying '{0}' which contains a static variable will prevent the debug session from continuing.</value>
</data>
<data name="Compiler2" xml:space="preserve">
<value>Compiler</value>
</data>
<data name="EditAndContinue" xml:space="preserve">
<value>Edit and Continue</value>
</data>
<data name="Live" xml:space="preserve">
<value>Live</value>
</data>
<data name="namespace_" xml:space="preserve">
<value>namespace</value>
<comment>{Locked}</comment>
</data>
<data name="class_" xml:space="preserve">
<value>class</value>
<comment>{Locked}</comment>
</data>
<data name="interface_" xml:space="preserve">
<value>interface</value>
<comment>{Locked}</comment>
</data>
<data name="enum_" xml:space="preserve">
<value>enum</value>
<comment>{Locked}</comment>
</data>
<data name="enum_value" xml:space="preserve">
<value>enum value</value>
<comment>{Locked="enum"} "enum" is a C#/VB keyword and should not be localized.</comment>
</data>
<data name="delegate_" xml:space="preserve">
<value>delegate</value>
<comment>{Locked}</comment>
</data>
<data name="const_field" xml:space="preserve">
<value>const field</value>
<comment>{Locked="const"} "const" is a C#/VB keyword and should not be localized.</comment>
</data>
<data name="method" xml:space="preserve">
<value>method</value>
</data>
<data name="operator_" xml:space="preserve">
<value>operator</value>
</data>
<data name="constructor" xml:space="preserve">
<value>constructor</value>
</data>
<data name="auto_property" xml:space="preserve">
<value>auto-property</value>
</data>
<data name="property_" xml:space="preserve">
<value>property</value>
</data>
<data name="event_" xml:space="preserve">
<value>event</value>
<comment>{Locked}</comment>
</data>
<data name="event_accessor" xml:space="preserve">
<value>event accessor</value>
</data>
<data name="type_constraint" xml:space="preserve">
<value>type constraint</value>
</data>
<data name="type_parameter" xml:space="preserve">
<value>type parameter</value>
</data>
<data name="attribute" xml:space="preserve">
<value>attribute</value>
</data>
<data name="Use_auto_property" xml:space="preserve">
<value>Use auto property</value>
</data>
<data name="Replace_0_and_1_with_property" xml:space="preserve">
<value>Replace '{0}' and '{1}' with property</value>
</data>
<data name="Replace_0_with_property" xml:space="preserve">
<value>Replace '{0}' with property</value>
</data>
<data name="Method_referenced_implicitly" xml:space="preserve">
<value>Method referenced implicitly</value>
</data>
<data name="Generate_type_0" xml:space="preserve">
<value>Generate type '{0}'</value>
</data>
<data name="Generate_0_1" xml:space="preserve">
<value>Generate {0} '{1}'</value>
</data>
<data name="Change_0_to_1" xml:space="preserve">
<value>Change '{0}' to '{1}'.</value>
</data>
<data name="Non_invoked_method_cannot_be_replaced_with_property" xml:space="preserve">
<value>Non-invoked method cannot be replaced with property.</value>
</data>
<data name="Only_methods_with_a_single_argument_which_is_not_an_out_variable_declaration_can_be_replaced_with_a_property" xml:space="preserve">
<value>Only methods with a single argument, which is not an out variable declaration, can be replaced with a property.</value>
</data>
<data name="Roslyn_HostError" xml:space="preserve">
<value>Roslyn.HostError</value>
</data>
<data name="An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2" xml:space="preserve">
<value>An instance of analyzer {0} cannot be created from {1}: {2}.</value>
</data>
<data name="The_assembly_0_does_not_contain_any_analyzers" xml:space="preserve">
<value>The assembly {0} does not contain any analyzers.</value>
</data>
<data name="Unable_to_load_Analyzer_assembly_0_colon_1" xml:space="preserve">
<value>Unable to load Analyzer assembly {0}: {1}</value>
</data>
<data name="Make_method_synchronous" xml:space="preserve">
<value>Make method synchronous</value>
</data>
<data name="Add_this_or_Me_qualification" xml:space="preserve">
<value>Add 'this' or 'Me' qualification.</value>
</data>
<data name="Fix_Name_Violation_colon_0" xml:space="preserve">
<value>Fix Name Violation: {0}</value>
</data>
<data name="Naming_rule_violation_0" xml:space="preserve">
<value>Naming rule violation: {0}</value>
<comment>{0} is the rule title, {1} is the way in which the rule was violated</comment>
</data>
<data name="Naming_Styles" xml:space="preserve">
<value>Naming Styles</value>
</data>
<data name="from_0" xml:space="preserve">
<value>from {0}</value>
</data>
<data name="Find_and_install_latest_version" xml:space="preserve">
<value>Find and install latest version</value>
</data>
<data name="Use_local_version_0" xml:space="preserve">
<value>Use local version '{0}'</value>
</data>
<data name="Use_locally_installed_0_version_1_This_version_used_in_colon_2" xml:space="preserve">
<value>Use locally installed '{0}' version '{1}'
This version used in: {2}</value>
</data>
<data name="Find_and_install_latest_version_of_0" xml:space="preserve">
<value>Find and install latest version of '{0}'</value>
</data>
<data name="Install_with_package_manager" xml:space="preserve">
<value>Install with package manager...</value>
</data>
<data name="Install_0_1" xml:space="preserve">
<value>Install '{0} {1}'</value>
</data>
<data name="Install_version_0" xml:space="preserve">
<value>Install version '{0}'</value>
</data>
<data name="Generate_variable_0" xml:space="preserve">
<value>Generate variable '{0}'</value>
</data>
<data name="Classes" xml:space="preserve">
<value>Classes</value>
</data>
<data name="Constants" xml:space="preserve">
<value>Constants</value>
</data>
<data name="Delegates" xml:space="preserve">
<value>Delegates</value>
</data>
<data name="Enums" xml:space="preserve">
<value>Enums</value>
</data>
<data name="Events" xml:space="preserve">
<value>Events</value>
</data>
<data name="Extension_methods" xml:space="preserve">
<value>Extension methods</value>
</data>
<data name="Fields" xml:space="preserve">
<value>Fields</value>
</data>
<data name="Interfaces" xml:space="preserve">
<value>Interfaces</value>
</data>
<data name="Locals" xml:space="preserve">
<value>Locals</value>
</data>
<data name="Methods" xml:space="preserve">
<value>Methods</value>
</data>
<data name="Modules" xml:space="preserve">
<value>Modules</value>
</data>
<data name="Namespaces" xml:space="preserve">
<value>Namespaces</value>
</data>
<data name="Properties" xml:space="preserve">
<value>Properties</value>
</data>
<data name="Structures" xml:space="preserve">
<value>Structures</value>
</data>
<data name="Parameters_colon" xml:space="preserve">
<value>Parameters:</value>
</data>
<data name="Add_missing_cases" xml:space="preserve">
<value>Add missing cases</value>
</data>
<data name="Add_both" xml:space="preserve">
<value>Add both</value>
</data>
<data name="Add_default_case" xml:space="preserve">
<value>Add default case</value>
</data>
<data name="Variadic_SignatureHelpItem_must_have_at_least_one_parameter" xml:space="preserve">
<value>Variadic SignatureHelpItem must have at least one parameter.</value>
</data>
<data name="Add_braces" xml:space="preserve">
<value>Add braces</value>
</data>
<data name="Replace_0_with_method" xml:space="preserve">
<value>Replace '{0}' with method</value>
</data>
<data name="Replace_0_with_methods" xml:space="preserve">
<value>Replace '{0}' with methods</value>
</data>
<data name="Property_referenced_implicitly" xml:space="preserve">
<value>Property referenced implicitly</value>
</data>
<data name="Property_cannot_safely_be_replaced_with_a_method_call" xml:space="preserve">
<value>Property cannot safely be replaced with a method call</value>
</data>
<data name="Convert_to_interpolated_string" xml:space="preserve">
<value>Convert to interpolated string</value>
</data>
<data name="Move_type_to_0" xml:space="preserve">
<value>Move type to {0}</value>
</data>
<data name="Rename_file_to_0" xml:space="preserve">
<value>Rename file to {0}</value>
</data>
<data name="Rename_type_to_0" xml:space="preserve">
<value>Rename type to {0}</value>
</data>
<data name="Remove_tag" xml:space="preserve">
<value>Remove tag</value>
</data>
<data name="Add_missing_param_nodes" xml:space="preserve">
<value>Add missing param nodes</value>
</data>
<data name="Make_containing_scope_async" xml:space="preserve">
<value>Make containing scope async</value>
</data>
<data name="Make_containing_scope_async_return_Task" xml:space="preserve">
<value>Make containing scope async (return Task)</value>
</data>
<data name="paren_Unknown_paren" xml:space="preserve">
<value>(Unknown)</value>
</data>