-
Notifications
You must be signed in to change notification settings - Fork 748
Expand file tree
/
Copy pathResources.Designer.cs
More file actions
2711 lines (2409 loc) · 98.4 KB
/
Resources.Designer.cs
File metadata and controls
2711 lines (2409 loc) · 98.4 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
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace NuGet.PackageManagement.UI {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("NuGet.PackageManagement.UI.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Not sorted, press space to sort ascending.
/// </summary>
public static string Accessibility_ColumnNotSortedHelpText {
get {
return ResourceManager.GetString("Accessibility_ColumnNotSortedHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sorted ascending, press space to sort descending.
/// </summary>
public static string Accessibility_ColumnSortedAscendingHelpText {
get {
return ResourceManager.GetString("Accessibility_ColumnSortedAscendingHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Sorted descending, press space to sort ascending.
/// </summary>
public static string Accessibility_ColumnSortedDescendingHelpText {
get {
return ResourceManager.GetString("Accessibility_ColumnSortedDescendingHelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package deprecation.
/// </summary>
public static string Accessibility_PackageDeprecation {
get {
return ResourceManager.GetString("Accessibility_PackageDeprecation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package details URL icon.
/// </summary>
public static string Accessibility_PackageDetailsUrlIcon {
get {
return ResourceManager.GetString("Accessibility_PackageDetailsUrlIcon", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package icon.
/// </summary>
public static string Accessibility_PackageIcon {
get {
return ResourceManager.GetString("Accessibility_PackageIcon", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} version {1}.
/// </summary>
public static string Accessibility_PackageIdentity {
get {
return ResourceManager.GetString("Accessibility_PackageIdentity", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package manager.
/// </summary>
public static string Accessibility_PackageManager {
get {
return ResourceManager.GetString("Accessibility_PackageManager", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package metadata.
/// </summary>
public static string Accessibility_PackageMetadata {
get {
return ResourceManager.GetString("Accessibility_PackageMetadata", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Packages.
/// </summary>
public static string Accessibility_Packages {
get {
return ResourceManager.GetString("Accessibility_Packages", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package details.
/// </summary>
public static string Accessibility_PackagesDetails {
get {
return ResourceManager.GetString("Accessibility_PackagesDetails", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Packages list.
/// </summary>
public static string Accessibility_PackagesList {
get {
return ResourceManager.GetString("Accessibility_PackagesList", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package vulnerabilities.
/// </summary>
public static string Accessibility_PackageVulnerabilities {
get {
return ResourceManager.GetString("Accessibility_PackageVulnerabilities", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prefix reserved.
/// </summary>
public static string Accessibility_PrefixReserved {
get {
return ResourceManager.GetString("Accessibility_PrefixReserved", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Promote all to top level dependencies.
/// </summary>
public static string Accessibility_PromoteAllToTopLevel {
get {
return ResourceManager.GetString("Accessibility_PromoteAllToTopLevel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Promote to a top level dependency.
/// </summary>
public static string Accessibility_PromoteToTopLevel {
get {
return ResourceManager.GetString("Accessibility_PromoteToTopLevel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use arrow keys to change the size of the sections.
/// </summary>
public static string Accessibility_ThumbHelp {
get {
return ResourceManager.GetString("Accessibility_ThumbHelp", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to splitter for Packages list.
/// </summary>
public static string Accessibility_ThumbName {
get {
return ResourceManager.GetString("Accessibility_ThumbName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Package vulnerability description.
/// </summary>
public static string Accessibility_VulnerabilitiesDescriptionName {
get {
return ResourceManager.GetString("Accessibility_VulnerabilitiesDescriptionName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Consolidate.
/// </summary>
public static string Action_Consolidate {
get {
return ResourceManager.GetString("Action_Consolidate", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to All.
/// </summary>
public static string AggregateSourceName {
get {
return ResourceManager.GetString("AggregateSourceName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Argument cannot be null or empty..
/// </summary>
public static string ArgumentNullOrEmpty {
get {
return ResourceManager.GetString("ArgumentNullOrEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Consider migrating this project's NuGet package management format from 'packages.config' to 'PackageReference'..
/// </summary>
public static string AskForPRMigrator {
get {
return ResourceManager.GetString("AskForPRMigrator", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Some NuGet packages are missing from this solution. Click to restore from your online package sources..
/// </summary>
public static string AskForRestoreMessage {
get {
return ResourceManager.GetString("AskForRestoreMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A new version of NuGet Package Manager is available..
/// </summary>
public static string AskForUpdateMessage {
get {
return ResourceManager.GetString("AskForUpdateMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Implicitly referenced by an SDK. To update the package, update the SDK to which it belongs..
/// </summary>
public static string AutoReferenced {
get {
return ResourceManager.GetString("AutoReferenced", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0:G3}B.
/// </summary>
public static string Billion {
get {
return ResourceManager.GetString("Billion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select a Package Source Folder.
/// </summary>
public static string BrowseFolderDialogDescription {
get {
return ResourceManager.GetString("BrowseFolderDialogDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select.
/// </summary>
public static string BrowseFolderDialogSelectButton {
get {
return ResourceManager.GetString("BrowseFolderDialogSelectButton", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Apply.
/// </summary>
public static string Button_Apply {
get {
return ResourceManager.GetString("Button_Apply", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Cancel.
/// </summary>
public static string Button_Cancel {
get {
return ResourceManager.GetString("Button_Cancel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Co_py.
/// </summary>
public static string Button_Copy {
get {
return ResourceManager.GetString("Button_Copy", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Dismiss.
/// </summary>
public static string Button_Dismiss {
get {
return ResourceManager.GetString("Button_Dismiss", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to I _Accept.
/// </summary>
public static string Button_IAccept {
get {
return ResourceManager.GetString("Button_IAccept", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to I _Decline.
/// </summary>
public static string Button_IDecline {
get {
return ResourceManager.GetString("Button_IDecline", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Install.
/// </summary>
public static string Button_Install {
get {
return ResourceManager.GetString("Button_Install", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _No.
/// </summary>
public static string Button_No {
get {
return ResourceManager.GetString("Button_No", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No to A_ll.
/// </summary>
public static string Button_NoToAll {
get {
return ResourceManager.GetString("Button_NoToAll", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _OK.
/// </summary>
public static string Button_OK {
get {
return ResourceManager.GetString("Button_OK", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Preview.
/// </summary>
public static string Button_Preview {
get {
return ResourceManager.GetString("Button_Preview", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Restart search.
/// </summary>
public static string Button_RestartSearch {
get {
return ResourceManager.GetString("Button_RestartSearch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show errors in output.
/// </summary>
public static string Button_ShowErrors {
get {
return ResourceManager.GetString("Button_ShowErrors", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show {0} more results.
/// </summary>
public static string Button_ShowMoreResults {
get {
return ResourceManager.GetString("Button_ShowMoreResults", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Uninstall.
/// </summary>
public static string Button_Uninstall {
get {
return ResourceManager.GetString("Button_Uninstall", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Update.
/// </summary>
public static string Button_Update {
get {
return ResourceManager.GetString("Button_Update", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Yes.
/// </summary>
public static string Button_Yes {
get {
return ResourceManager.GetString("Button_Yes", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Yes to _All.
/// </summary>
public static string Button_YesToAll {
get {
return ResourceManager.GetString("Button_YesToAll", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Check.
/// </summary>
public static string CheckBox_DefaultAction_Check {
get {
return ResourceManager.GetString("CheckBox_DefaultAction_Check", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Uncheck.
/// </summary>
public static string CheckBox_DefaultAction_Uncheck {
get {
return ResourceManager.GetString("CheckBox_DefaultAction_Uncheck", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allow format selection on first package install.
/// </summary>
public static string CheckBox_DefaultPackageFormat {
get {
return ResourceManager.GetString("CheckBox_DefaultPackageFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Force uninstall, even if there are dependencies on it.
/// </summary>
public static string Checkbox_ForceRemove {
get {
return ResourceManager.GetString("Checkbox_ForceRemove", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Include prerelease.
/// </summary>
public static string Checkbox_IncludePrerelease {
get {
return ResourceManager.GetString("Checkbox_IncludePrerelease", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} project(s).
/// </summary>
public static string Checkbox_ProjectSelection {
get {
return ResourceManager.GetString("Checkbox_ProjectSelection", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove dependencies.
/// </summary>
public static string Checkbox_RemoveDependencies {
get {
return ResourceManager.GetString("Checkbox_RemoveDependencies", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select all packages.
/// </summary>
public static string Checkbox_SelectAllPackages {
get {
return ResourceManager.GetString("Checkbox_SelectAllPackages", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select All Projects.
/// </summary>
public static string CheckBox_SelectAllProjects {
get {
return ResourceManager.GetString("CheckBox_SelectAllProjects", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select this checkbox to install the NuGet Package to all projects in the solution.
/// </summary>
public static string CheckBox_SelectAllProjects_HelpText {
get {
return ResourceManager.GetString("CheckBox_SelectAllProjects_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Selected.
/// </summary>
public static string CheckBox_Selected {
get {
return ResourceManager.GetString("CheckBox_Selected", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select this checkbox to install the NuGet Package to the project '{0}'.
/// </summary>
public static string CheckBox_SelectProject_HelpText {
get {
return ResourceManager.GetString("CheckBox_SelectProject_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show only vulnerable.
/// </summary>
public static string Checkbox_Show_Vulnerable_Only {
get {
return ResourceManager.GetString("Checkbox_Show_Vulnerable_Only", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Show preview window.
/// </summary>
public static string Checkbox_ShowPreviewWindow {
get {
return ResourceManager.GetString("Checkbox_ShowPreviewWindow", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Installed.
/// </summary>
public static string ColumnHeader_InstalledVersion {
get {
return ResourceManager.GetString("ColumnHeader_InstalledVersion", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Project.
/// </summary>
public static string ColumnHeader_Project {
get {
return ResourceManager.GetString("ColumnHeader_Project", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Version.
/// </summary>
public static string ColumnHeader_Requested {
get {
return ResourceManager.GetString("ColumnHeader_Requested", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Selected.
/// </summary>
public static string ColumnHeader_Selected {
get {
return ResourceManager.GetString("ColumnHeader_Selected", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Getting Configuration Files....
/// </summary>
public static string ConfigurationFilesOptions_OnActivated {
get {
return ResourceManager.GetString("ConfigurationFilesOptions_OnActivated", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Highest.
/// </summary>
public static string DependencyBehavior_Highest {
get {
return ResourceManager.GetString("DependencyBehavior_Highest", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Highest Minor.
/// </summary>
public static string DependencyBehavior_HighestMinor {
get {
return ResourceManager.GetString("DependencyBehavior_HighestMinor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Highest Patch.
/// </summary>
public static string DependencyBehavior_HighestPatch {
get {
return ResourceManager.GetString("DependencyBehavior_HighestPatch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ignore Dependencies.
/// </summary>
public static string DependencyBehavior_IgnoreDependencies {
get {
return ResourceManager.GetString("DependencyBehavior_IgnoreDependencies", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Lowest.
/// </summary>
public static string DependencyBehavior_Lowest {
get {
return ResourceManager.GetString("DependencyBehavior_Lowest", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select to view the alternative package..
/// </summary>
public static string Deprecation_LinkTooltip {
get {
return ResourceManager.GetString("Deprecation_LinkTooltip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to More info.
/// </summary>
public static string Deprecation_MoreInfo {
get {
return ResourceManager.GetString("Deprecation_MoreInfo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This package version is deprecated..
/// </summary>
public static string Deprecation_PackageItemMessage {
get {
return ResourceManager.GetString("Deprecation_PackageItemMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This package version is deprecated. Use {0} instead..
/// </summary>
public static string Deprecation_PackageItemMessageAlternative {
get {
return ResourceManager.GetString("Deprecation_PackageItemMessageAlternative", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Learn more.
/// </summary>
public static string Description_LearnMore {
get {
return ResourceManager.GetString("Description_LearnMore", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to _Don't show this again.
/// </summary>
public static string DoNotShowThisAgain {
get {
return ResourceManager.GetString("DoNotShowThisAgain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to find metadata of {0}.
/// </summary>
public static string Error_MetadataNotFound {
get {
return ResourceManager.GetString("Error_MetadataNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Project {0} does not exist in the project system cache..
/// </summary>
public static string Error_ProjectNotInCache {
get {
return ResourceManager.GetString("Error_ProjectNotInCache", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The package `{0}` is available in the Global packages folder, but the source it came from `{1}` is not one of the configured sources..
/// </summary>
public static string Error_SourceMapping_GPF_NotEnabled {
get {
return ResourceManager.GetString("Error_SourceMapping_GPF_NotEnabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Operation failed.
/// </summary>
public static string ErrorDialogBoxTitle {
get {
return ResourceManager.GetString("ErrorDialogBoxTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ignore All.
/// </summary>
public static string FileConflictAction_IgnoreAll {
get {
return ResourceManager.GetString("FileConflictAction_IgnoreAll", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Overwrite All.
/// </summary>
public static string FileConflictAction_OverwriteAll {
get {
return ResourceManager.GetString("FileConflictAction_OverwriteAll", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prompt.
/// </summary>
public static string FileConflictAction_Prompt {
get {
return ResourceManager.GetString("FileConflictAction_Prompt", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Install and Update Options.
/// </summary>
public static string GroupBoxHeader_InstallOptions {
get {
return ResourceManager.GetString("GroupBoxHeader_InstallOptions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Uninstall Options.
/// </summary>
public static string GroupBoxHeader_UninstallOptions {
get {
return ResourceManager.GetString("GroupBoxHeader_UninstallOptions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Advisory URL.
/// </summary>
public static string Hyperlink_AdvisoryUrl {
get {
return ResourceManager.GetString("Hyperlink_AdvisoryUrl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to License.
/// </summary>
public static string Hyperlink_License {
get {
return ResourceManager.GetString("Hyperlink_License", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Configure.
/// </summary>
public static string Hyperlink_PackageSourceMappingSettings {
get {
return ResourceManager.GetString("Hyperlink_PackageSourceMappingSettings", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Project URL.
/// </summary>
public static string Hyperlink_ProjectUrl {
get {
return ResourceManager.GetString("Hyperlink_ProjectUrl", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Readme.
/// </summary>
public static string Hyperlink_Readme {
get {
return ResourceManager.GetString("Hyperlink_Readme", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Report Abuse.
/// </summary>
public static string Hyperlink_ReportAbuse {
get {
return ResourceManager.GetString("Hyperlink_ReportAbuse", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Ignore for now.
/// </summary>
public static string IgnoreUpgrade {
get {
return ResourceManager.GetString("IgnoreUpgrade", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Help icon.
/// </summary>
public static string ImageCaption_HelpIcon {
get {
return ResourceManager.GetString("ImageCaption_HelpIcon", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Action:.
/// </summary>
public static string Label_Action {
get {
return ResourceManager.GetString("Label_Action", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Author(s): .
/// </summary>
public static string Label_Authors {
get {
return ResourceManager.GetString("Label_Authors", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Browse.
/// </summary>
public static string Label_Browse {
get {
return ResourceManager.GetString("Label_Browse", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creating source mappings to '{0}':.
/// </summary>
public static string Label_CreatingSourceMappings {
get {
return ResourceManager.GetString("Label_CreatingSourceMappings", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Date published:.
/// </summary>
public static string Label_DatePublished {
get {
return ResourceManager.GetString("Label_DatePublished", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Dependencies.
/// </summary>
public static string Label_Dependencies {
get {
return ResourceManager.GetString("Label_Dependencies", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Dependency behavior:.
/// </summary>
public static string Label_DependencyBehavior {
get {
return ResourceManager.GetString("Label_DependencyBehavior", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deprecated.
/// </summary>
public static string Label_Deprecated {
get {
return ResourceManager.GetString("Label_Deprecated", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Alternate package.
/// </summary>
public static string Label_DeprecationAlternatePackage {
get {
return ResourceManager.GetString("Label_DeprecationAlternatePackage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deprecation reason.
/// </summary>
public static string Label_DeprecationReasons {
get {
return ResourceManager.GetString("Label_DeprecationReasons", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This package has been deprecated as it has critical bugs..