-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathResources.Designer.cs
More file actions
3863 lines (3433 loc) · 158 KB
/
Resources.Designer.cs
File metadata and controls
3863 lines (3433 loc) · 158 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 Microsoft.WingetCreateCLI.Properties {
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("Microsoft.WingetCreateCLI.Properties.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 ADD.
/// </summary>
public static string Add_MenuItem {
get {
return ResourceManager.GetString("Add_MenuItem", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Would you like to add additional locale properties?.
/// </summary>
public static string AddAdditionalLocaleProperties_Message {
get {
return ResourceManager.GetString("AddAdditionalLocaleProperties_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Additional metadata needed for installer from {0}.
/// </summary>
public static string AdditionalMetadataNeeded_Message {
get {
return ResourceManager.GetString("AdditionalMetadataNeeded_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The additional properties for future minor version compatibility.
/// </summary>
public static string AdditionalProperties_KeywordDescription {
get {
return ResourceManager.GetString("AdditionalProperties_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ADD NEW ITEM.
/// </summary>
public static string AddNewItem_MenuItem {
get {
return ResourceManager.GetString("AddNewItem_MenuItem", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The agreement text content.
/// </summary>
public static string Agreement_KeywordDescription {
get {
return ResourceManager.GetString("Agreement_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The agreement text content.
/// </summary>
public static string AgreementContent_KeywordDescription {
get {
return ResourceManager.GetString("AgreementContent_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The label of the Agreement. i.e. EULA, AgeRating, etc. This field should be localized. Either Agreement or AgreementUrl is required. When we show the agreements, we would Bold the AgreementLabel.
/// </summary>
public static string AgreementLabel_KeywordDescription {
get {
return ResourceManager.GetString("AgreementLabel_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The agreements for the package.
/// </summary>
public static string Agreements_KeywordDescription {
get {
return ResourceManager.GetString("Agreements_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The agreement URL.
/// </summary>
public static string AgreementUrl_KeywordDescription {
get {
return ResourceManager.GetString("AgreementUrl_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ALL INSTALLERS.
/// </summary>
public static string AllInstallers_MenuItem {
get {
return ResourceManager.GetString("AllInstallers_MenuItem", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The included installer target markets.
/// </summary>
public static string AllowedMarkets_KeywordDescription {
get {
return ResourceManager.GetString("AllowedMarkets_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Allow unsecure downloads (HTTP) for this operation..
/// </summary>
public static string AllowUnsecureDownloads_HelpText {
get {
return ResourceManager.GetString("AllowUnsecureDownloads_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The manifest creation command line utility generates manifest for submitting apps to the Windows Package Manager repo..
/// </summary>
public static string AppDescription_HelpText {
get {
return ResourceManager.GetString("AppDescription_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The most common package term.
/// </summary>
public static string AppMoniker_KeywordDescription {
get {
return ResourceManager.GetString("AppMoniker_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Various key values under installer's ARP entry.
/// </summary>
public static string AppsAndFeaturesEntries_KeywordDescription {
get {
return ResourceManager.GetString("AppsAndFeaturesEntries_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The installer target architecture.
/// </summary>
public static string Arch_KeywordDescription {
get {
return ResourceManager.GetString("Arch_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The installer target architecture.
/// </summary>
public static string Architecture_KeywordDescription {
get {
return ResourceManager.GetString("Architecture_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to If the installer you provided fails to match an existing installer even when overriding the architecture, you may need to override the scope or edit the existing manifest manually. Make sure that the existing manifest has a single installer that matches the overriding architecture, scope and installer type of the new installer. To modify an existing manifest, use the '--interactive' flag with the update command and submit the new changes. Once the changes are published, please try again..
/// </summary>
public static string ArchitectureOverride_Warning {
get {
return ResourceManager.GetString("ArchitectureOverride_Warning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Indicates whether the install location should be added directly to the PATH environment variable. Only applies to an archive containing portable packages..
/// </summary>
public static string ArchiveBinariesDependOnPath_KeywordDescription {
get {
return ResourceManager.GetString("ArchiveBinariesDependOnPath_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Too many arguments specified for the following installer URL: {0}.
/// </summary>
public static string ArgumentLimitExceeded_Error {
get {
return ResourceManager.GetString("ArgumentLimitExceeded_Error", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Authentication information for secured private sources.
/// </summary>
public static string Authentication_KeywordDescription {
get {
return ResourceManager.GetString("Authentication_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The type of authentication to use.
/// </summary>
public static string AuthenticationType_KeywordDescription {
get {
return ResourceManager.GetString("AuthenticationType_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The package author.
/// </summary>
public static string Author_KeywordDescription {
get {
return ResourceManager.GetString("Author_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Vanity URL detected. The submission will automatically replace the previous version..
/// </summary>
public static string AutoReplacingPreviousVersion_Message {
get {
return ResourceManager.GetString("AutoReplacingPreviousVersion_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to BACK.
/// </summary>
public static string Back_MenuItem {
get {
return ResourceManager.GetString("Back_MenuItem", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The forked repository could not be synced with the upstream commits due to a merge conflict. Resolve conflicts manually and try again..
/// </summary>
public static string BranchMergeConflict_Message {
get {
return ResourceManager.GetString("BranchMergeConflict_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Web browser failed to launch: {0}.
/// </summary>
public static string BrowserFailedToLaunch_Error {
get {
return ResourceManager.GetString("BrowserFailedToLaunch_Error", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Manage downloaded installers stored in cache.
/// </summary>
public static string CacheCommand_HelpText {
get {
return ResourceManager.GetString("CacheCommand_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to List of MSIX capabilities.
/// </summary>
public static string Capabilities_KeywordDescription {
get {
return ResourceManager.GetString("Capabilities_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Output directory changed to current directory: {0}.
/// </summary>
public static string ChangeOutputDirToCurrDir_Message {
get {
return ResourceManager.GetString("ChangeOutputDirToCurrDir_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The distribution channel.
/// </summary>
public static string Channel_KeywordDescription {
get {
return ResourceManager.GetString("Channel_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deletes all downloaded installers in the cache folder.
/// </summary>
public static string Clean_HelpText {
get {
return ResourceManager.GetString("Clean_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clear the cached GitHub token.
/// </summary>
public static string Clear_HelpText {
get {
return ResourceManager.GetString("Clear_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Clearing GitHub token cache.
/// </summary>
public static string ClearToken_Message {
get {
return ResourceManager.GetString("ClearToken_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to List of commands or aliases to run the package.
/// </summary>
public static string Commands_KeywordDescription {
get {
return ResourceManager.GetString("Commands_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The following commands are available:.
/// </summary>
public static string CommandsAvailable_Message {
get {
return ResourceManager.GetString("CommandsAvailable_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please ensure that the updated manifest you are submitting is different from the existing package..
/// </summary>
public static string CompareUpdatedManifestWithExisting_Message {
get {
return ResourceManager.GetString("CompareUpdatedManifestWithExisting_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Would you like to submit your manifest to the Windows Package Manager repository?.
/// </summary>
public static string ConfirmGitHubSubmitManifest_Message {
get {
return ResourceManager.GetString("ConfirmGitHubSubmitManifest_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Would you like to make changes to this manifest?.
/// </summary>
public static string ConfirmManifestCreation_Message {
get {
return ResourceManager.GetString("ConfirmManifestCreation_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Is this a portable package?.
/// </summary>
public static string ConfirmPortablePackage_Message {
get {
return ResourceManager.GetString("ConfirmPortablePackage_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Does this executable depend on DLLs or any other files present in the zip archive?.
/// </summary>
public static string ConfirmZippedBinary_Message {
get {
return ResourceManager.GetString("ConfirmZippedBinary_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The package copyright.
/// </summary>
public static string Copyright_KeywordDescription {
get {
return ResourceManager.GetString("Copyright_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The package copyright page.
/// </summary>
public static string CopyrightUrl_KeywordDescription {
get {
return ResourceManager.GetString("CopyrightUrl_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not populate manifest metadata through GitHub's API..
/// </summary>
public static string CouldNotPopulateGitHubMetadata_Warning {
get {
return ResourceManager.GetString("CouldNotPopulateGitHubMetadata_Warning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Would you like to create another locale?.
/// </summary>
public static string CreateAnotherLocale_Message {
get {
return ResourceManager.GetString("CreateAnotherLocale_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The custom installer switches.
/// </summary>
public static string Custom_KeywordDescription {
get {
return ResourceManager.GetString("Custom_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Represents the default installed package location. Used for deeper installation detection.
/// </summary>
public static string DefaultInstallLocation_KeywordDescription {
get {
return ResourceManager.GetString("DefaultInstallLocation_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The package meta-data default locale |e.g. en-US|.
/// </summary>
public static string DefaultLocale_KeywordDescription {
get {
return ResourceManager.GetString("DefaultLocale_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Default locale.
/// </summary>
public static string DefaultLocale_MenuItem {
get {
return ResourceManager.GetString("DefaultLocale_MenuItem", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Display the default locale manifest of the package..
/// </summary>
public static string DefaultLocaleManifest_HelpText {
get {
return ResourceManager.GetString("DefaultLocaleManifest_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Default Locale ({0}) Manifest:.
/// </summary>
public static string DefaultLocaleManifest_Message {
get {
return ResourceManager.GetString("DefaultLocaleManifest_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Default locale manifest preview:.
/// </summary>
public static string DefaultLocaleManifestPreview_Message {
get {
return ResourceManager.GetString("DefaultLocaleManifestPreview_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Operation did not complete successfully because the downloaded file contains a virus or potentially unwanted software. For more information on potentially unwanted software and what options are available, see https://aka.ms/winget-create-security.
/// </summary>
public static string DefenderVirus_ErrorMessage {
get {
return ResourceManager.GetString("DefenderVirus_ErrorMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cached token was invalid, deleting token from cache....
/// </summary>
public static string DeletingInvalidCachedToken_Message {
get {
return ResourceManager.GetString("DeletingInvalidCachedToken_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Deleting {0}.
/// </summary>
public static string DeletingItem_Message {
get {
return ResourceManager.GetString("DeletingItem_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Collection of package dependencies.
/// </summary>
public static string Dependencies_KeywordDescription {
get {
return ResourceManager.GetString("Dependencies_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The full package description.
/// </summary>
public static string Description_KeywordDescription {
get {
return ResourceManager.GetString("Description_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The architecture detected from the binary might be different than what is specified in the installer URL for the following installer(s):.
/// </summary>
public static string DetectedArchMismatch_Message {
get {
return ResourceManager.GetString("DetectedArchMismatch_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} directories found in {1}.
/// </summary>
public static string DirectoriesFound_Message {
get {
return ResourceManager.GetString("DirectoriesFound_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Would you like to discard this update and start over?.
/// </summary>
public static string DiscardUpdateAndStartOver_Message {
get {
return ResourceManager.GetString("DiscardUpdateAndStartOver_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Indicates whether winget should display a warning message if the install or upgrade is known to interfere with running applications.
/// </summary>
public static string DisplayInstallWarnings_KeywordDescription {
get {
return ResourceManager.GetString("DisplayInstallWarnings_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Name to be used when updating the display name field..
/// </summary>
public static string DisplayName_HelpText {
get {
return ResourceManager.GetString("DisplayName_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The DisplayName of the package or file.
/// </summary>
public static string DisplayName_KeywordDescription {
get {
return ResourceManager.GetString("DisplayName_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DISPLAY PREVIEW.
/// </summary>
public static string DisplayPreview_MenuItem {
get {
return ResourceManager.GetString("DisplayPreview_MenuItem", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Displaying preview of [{0}]:.
/// </summary>
public static string DisplayPreviewOfItems {
get {
return ResourceManager.GetString("DisplayPreviewOfItems", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Displaying a preview of the selected installer:.
/// </summary>
public static string DisplayPreviewOfSelectedInstaller_Message {
get {
return ResourceManager.GetString("DisplayPreviewOfSelectedInstaller_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Version to be used when updating the display version field. Version provided in the installer URL arguments will take precedence over this value..
/// </summary>
public static string DisplayVersion_HelpText {
get {
return ResourceManager.GetString("DisplayVersion_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The DisplayVersion registry value.
/// </summary>
public static string DisplayVersion_KeywordDescription {
get {
return ResourceManager.GetString("DisplayVersion_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to List of documentation.
/// </summary>
public static string Documentations_KeywordDescription {
get {
return ResourceManager.GetString("Documentations_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The label of the documentation for providing software guides such as manuals and troubleshooting URLs.
/// </summary>
public static string DocumentLabel_KeywordDescription {
get {
return ResourceManager.GetString("DocumentLabel_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The documentation URL.
/// </summary>
public static string DocumentUrl_KeywordDescription {
get {
return ResourceManager.GetString("DocumentUrl_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DONE.
/// </summary>
public static string Done_MenuItem {
get {
return ResourceManager.GetString("Done_MenuItem", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DONE.
/// </summary>
public static string DoneSymbol_String {
get {
return ResourceManager.GetString("DoneSymbol_String", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Indicates whether the installer is prohibited from being downloaded for offline installation.
/// </summary>
public static string DownloadCommandProhibited_KeywordDescription {
get {
return ResourceManager.GetString("DownloadCommandProhibited_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to complete the download request as the connection has timed out. Please verify your installer URL and try again..
/// </summary>
public static string DownloadConnectionTimeout_Error {
get {
return ResourceManager.GetString("DownloadConnectionTimeout_Error", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to download installer..
/// </summary>
public static string DownloadFile_Error {
get {
return ResourceManager.GetString("DownloadFile_Error", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to URL points to file larger than the maximum size of {0}MB.
/// </summary>
public static string DownloadFileExceedsMaxSize_Error {
get {
return ResourceManager.GetString("DownloadFileExceedsMaxSize_Error", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Only HTTPS URLs are supported without "--allow-unsecure-downloads"..
/// </summary>
public static string DownloadHttpsOnly_Error {
get {
return ResourceManager.GetString("DownloadHttpsOnly_Error", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Downloading and parsing: {0}....
/// </summary>
public static string DownloadInstaller_Message {
get {
return ResourceManager.GetString("DownloadInstaller_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Only HTTPS URLs are supported for downloads. Use the "--allow-unsecure-downloads" option to allow HTTP URLs..
/// </summary>
public static string DownloadProtocolNotSupported_Error {
get {
return ResourceManager.GetString("DownloadProtocolNotSupported_Error", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DSC v3 resource commands.
/// </summary>
public static string DscCommand_HelpText {
get {
return ResourceManager.GetString("DscCommand_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Get all state instances.
/// </summary>
public static string DscExport_HelpText {
get {
return ResourceManager.GetString("DscExport_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Get the resource state.
/// </summary>
public static string DscGet_HelpText {
get {
return ResourceManager.GetString("DscGet_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The input for the DSC resource.
/// </summary>
public static string DscInput_HelpText {
get {
return ResourceManager.GetString("DscInput_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The input for the {0} DSC operation is required.
/// </summary>
public static string DscInputRequired_Message {
get {
return ResourceManager.GetString("DscInputRequired_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The name of the DSC resource to manage.
/// </summary>
public static string DscResourceName_HelpText {
get {
return ResourceManager.GetString("DscResourceName_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DSC resource not found: {0}. Valid resources: {1}.
/// </summary>
public static string DscResourceNameNotFound_Message {
get {
return ResourceManager.GetString("DscResourceNameNotFound_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DSC resource operation failed.
/// </summary>
public static string DscResourceOperationFailed_Message {
get {
return ResourceManager.GetString("DscResourceOperationFailed_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No operation specified. Use --help to see available operations..
/// </summary>
public static string DscResourceOperationNotSpecified_Message {
get {
return ResourceManager.GetString("DscResourceOperationNotSpecified_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The action used to apply the settings.
/// </summary>
public static string DscResourcePropertyDescriptionAction {
get {
return ResourceManager.GetString("DscResourcePropertyDescriptionAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Indicates whether an instance is in the desired state.
/// </summary>
public static string DscResourcePropertyDescriptionInDesiredState {
get {
return ResourceManager.GetString("DscResourcePropertyDescriptionInDesiredState", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The settings content.
/// </summary>
public static string DscResourcePropertyDescriptionSettings {
get {
return ResourceManager.GetString("DscResourcePropertyDescriptionSettings", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Outputs schema of the resource.
/// </summary>
public static string DscSchema_HelpText {
get {
return ResourceManager.GetString("DscSchema_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Set the resource state.
/// </summary>
public static string DscSet_HelpText {
get {
return ResourceManager.GetString("DscSet_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Test the resource state.
/// </summary>
public static string DscTest_HelpText {
get {
return ResourceManager.GetString("DscTest_HelpText", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Would you like to edit your manifests?.
/// </summary>
public static string EditManifests_Message {
get {
return ResourceManager.GetString("EditManifests_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Would you like to edit the {0} field?.
/// </summary>
public static string EditObjectTypeField_Message {
get {
return ResourceManager.GetString("EditObjectTypeField_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The installer's elevation requirement.
/// </summary>
public static string ElevationRequirement_KeywordDescription {
get {
return ResourceManager.GetString("ElevationRequirement_KeywordDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please enter values for the following fields:.
/// </summary>
public static string EnterFollowingFields_Message {
get {
return ResourceManager.GetString("EnterFollowingFields_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Please enter the following user verification code when prompted: {0}.
/// </summary>
public static string EnterUserCode_Message {
get {
return ResourceManager.GetString("EnterUserCode_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ERROR: {0}.
/// </summary>
public static string Error_Prefix {
get {
return ResourceManager.GetString("Error_Prefix", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Error parsing file: {0}..
/// </summary>
public static string ErrorParsingSettingsFile_Message {
get {
return ResourceManager.GetString("ErrorParsingSettingsFile_Message", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Download installer and extract metadata.
/// </summary>
public static string Example_NewCommand_DownloadInstaller {
get {
return ResourceManager.GetString("Example_NewCommand_DownloadInstaller", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Save locally and submit a pull request.