-
Notifications
You must be signed in to change notification settings - Fork 391
/
Copy pathStrings.Designer.cs
3330 lines (2959 loc) · 148 KB
/
Strings.Designer.cs
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.Windows.PowerShell.ScriptAnalyzer {
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()]
internal class Strings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Strings() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Windows.PowerShell.ScriptAnalyzer.Strings", typeof(Strings).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)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Align assignment statement.
/// </summary>
internal static string AlignAssignmentStatementCommonName {
get {
return ResourceManager.GetString("AlignAssignmentStatementCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Line up assignment statements such that the assignment operator are aligned..
/// </summary>
internal static string AlignAssignmentStatementDescription {
get {
return ResourceManager.GetString("AlignAssignmentStatementDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Assignment statements are not aligned.
/// </summary>
internal static string AlignAssignmentStatementError {
get {
return ResourceManager.GetString("AlignAssignmentStatementError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AlignAssignmentStatement.
/// </summary>
internal static string AlignAssignmentStatementName {
get {
return ResourceManager.GetString("AlignAssignmentStatementName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidAssignmentToAutomaticVariable.
/// </summary>
internal static string AvoidAssignmentToAutomaticVariableName {
get {
return ResourceManager.GetString("AvoidAssignmentToAutomaticVariableName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use a different variable name.
/// </summary>
internal static string AvoidAssignmentToReadOnlyAutomaticVariable {
get {
return ResourceManager.GetString("AvoidAssignmentToReadOnlyAutomaticVariable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Changing automtic variables might have undesired side effects.
/// </summary>
internal static string AvoidAssignmentToReadOnlyAutomaticVariableCommonName {
get {
return ResourceManager.GetString("AvoidAssignmentToReadOnlyAutomaticVariableCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This automatic variables is built into PowerShell and readonly..
/// </summary>
internal static string AvoidAssignmentToReadOnlyAutomaticVariableDescription {
get {
return ResourceManager.GetString("AvoidAssignmentToReadOnlyAutomaticVariableDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Variable '{0}' cannot be assigned since it is a readonly automatic variable that is built into PowerShell, please use a different name..
/// </summary>
internal static string AvoidAssignmentToReadOnlyAutomaticVariableError {
get {
return ResourceManager.GetString("AvoidAssignmentToReadOnlyAutomaticVariableError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Starting from PowerShell 6.0, the Variable '{0}' cannot be assigned any more since it is a readonly automatic variable that is built into PowerShell, please use a different name..
/// </summary>
internal static string AvoidAssignmentToReadOnlyAutomaticVariableIntroducedInPowerShell6_0Error {
get {
return ResourceManager.GetString("AvoidAssignmentToReadOnlyAutomaticVariableIntroducedInPowerShell6_0Error", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Variable '{0}' is an automatic variable that is built into PowerShell, assigning to it might have undesired side effects. If assignment is not by design, please use a different name..
/// </summary>
internal static string AvoidAssignmentToWritableAutomaticVariableError {
get {
return ResourceManager.GetString("AvoidAssignmentToWritableAutomaticVariableError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid Using ComputerName Hardcoded.
/// </summary>
internal static string AvoidComputerNameHardcodedCommonName {
get {
return ResourceManager.GetString("AvoidComputerNameHardcodedCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The ComputerName parameter of a cmdlet should not be hardcoded as this will expose sensitive information about the system..
/// </summary>
internal static string AvoidComputerNameHardcodedDescription {
get {
return ResourceManager.GetString("AvoidComputerNameHardcodedDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The ComputerName parameter of cmdlet '{0}' is hardcoded. This will expose sensitive information about the system if the script is shared..
/// </summary>
internal static string AvoidComputerNameHardcodedError {
get {
return ResourceManager.GetString("AvoidComputerNameHardcodedError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidUsingComputerNameHardcoded.
/// </summary>
internal static string AvoidComputerNameHardcodedName {
get {
return ResourceManager.GetString("AvoidComputerNameHardcodedName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid Default Value For Mandatory Parameter.
/// </summary>
internal static string AvoidDefaultValueForMandatoryParameterCommonName {
get {
return ResourceManager.GetString("AvoidDefaultValueForMandatoryParameterCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Mandatory parameter should not be initialized with a default value in the param block because this value will be ignored.. To fix a violation of this rule, please avoid initializing a value for the mandatory parameter in the param block..
/// </summary>
internal static string AvoidDefaultValueForMandatoryParameterDescription {
get {
return ResourceManager.GetString("AvoidDefaultValueForMandatoryParameterDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Mandatory Parameter '{0}' is initialized in the Param block. To fix a violation of this rule, please leave it uninitialized..
/// </summary>
internal static string AvoidDefaultValueForMandatoryParameterError {
get {
return ResourceManager.GetString("AvoidDefaultValueForMandatoryParameterError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidDefaultValueForMandatoryParameter.
/// </summary>
internal static string AvoidDefaultValueForMandatoryParameterName {
get {
return ResourceManager.GetString("AvoidDefaultValueForMandatoryParameterName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Switch Parameters Should Not Default To True.
/// </summary>
internal static string AvoidDefaultValueSwitchParameterCommonName {
get {
return ResourceManager.GetString("AvoidDefaultValueSwitchParameterCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Switch parameter should not default to true..
/// </summary>
internal static string AvoidDefaultValueSwitchParameterDescription {
get {
return ResourceManager.GetString("AvoidDefaultValueSwitchParameterDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File '{0}' has a switch parameter default to true..
/// </summary>
internal static string AvoidDefaultValueSwitchParameterError {
get {
return ResourceManager.GetString("AvoidDefaultValueSwitchParameterError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Script definition has a switch parameter default to true..
/// </summary>
internal static string AvoidDefaultValueSwitchParameterErrorScriptDefinition {
get {
return ResourceManager.GetString("AvoidDefaultValueSwitchParameterErrorScriptDefinition", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidDefaultValueSwitchParameter.
/// </summary>
internal static string AvoidDefaultValueSwitchParameterName {
get {
return ResourceManager.GetString("AvoidDefaultValueSwitchParameterName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Empty catch block is used. Please use Write-Error or throw statements in catch blocks..
/// </summary>
internal static string AvoidEmptyCatchBlockError {
get {
return ResourceManager.GetString("AvoidEmptyCatchBlockError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to General catch block is used.
/// </summary>
internal static string AvoidGeneralCatchError {
get {
return ResourceManager.GetString("AvoidGeneralCatchError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string when no specific exception is caught.
/// </summary>
internal static string AvoidGeneralCatchErrorEmpty {
get {
return ResourceManager.GetString("AvoidGeneralCatchErrorEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid global aliases..
/// </summary>
internal static string AvoidGlobalAliasesCommonName {
get {
return ResourceManager.GetString("AvoidGlobalAliasesCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Checks that global aliases are not used. Global aliases are strongly discouraged as they overwrite desired aliases with name conflicts..
/// </summary>
internal static string AvoidGlobalAliasesDescription {
get {
return ResourceManager.GetString("AvoidGlobalAliasesDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid creating aliases with a Global scope..
/// </summary>
internal static string AvoidGlobalAliasesError {
get {
return ResourceManager.GetString("AvoidGlobalAliasesError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidGlobalAliases.
/// </summary>
internal static string AvoidGlobalAliasesName {
get {
return ResourceManager.GetString("AvoidGlobalAliasesName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid global functiosn and aliases.
/// </summary>
internal static string AvoidGlobalFunctionsCommonName {
get {
return ResourceManager.GetString("AvoidGlobalFunctionsCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Checks that global functions and aliases are not used. Global functions are strongly discouraged as they can cause errors across different systems..
/// </summary>
internal static string AvoidGlobalFunctionsDescription {
get {
return ResourceManager.GetString("AvoidGlobalFunctionsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid creating functions with a Global scope..
/// </summary>
internal static string AvoidGlobalFunctionsError {
get {
return ResourceManager.GetString("AvoidGlobalFunctionsError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidGlobalFunctions.
/// </summary>
internal static string AvoidGlobalFunctionsName {
get {
return ResourceManager.GetString("AvoidGlobalFunctionsName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No Global Variables.
/// </summary>
internal static string AvoidGlobalVarsCommonName {
get {
return ResourceManager.GetString("AvoidGlobalVarsCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Checks that global variables are not used. Global variables are strongly discouraged as they can cause errors across different systems..
/// </summary>
internal static string AvoidGlobalVarsDescription {
get {
return ResourceManager.GetString("AvoidGlobalVarsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Found global variable '{0}'..
/// </summary>
internal static string AvoidGlobalVarsError {
get {
return ResourceManager.GetString("AvoidGlobalVarsError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidGlobalVars.
/// </summary>
internal static string AvoidGlobalVarsName {
get {
return ResourceManager.GetString("AvoidGlobalVarsName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid Invoking Empty Members.
/// </summary>
internal static string AvoidInvokingEmptyMembersCommonName {
get {
return ResourceManager.GetString("AvoidInvokingEmptyMembersCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Invoking non-constant members would cause potential bugs. Please double check the syntax to make sure members invoked are non-constant..
/// </summary>
internal static string AvoidInvokingEmptyMembersDescription {
get {
return ResourceManager.GetString("AvoidInvokingEmptyMembersDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '{0}' has non-constant members. Invoking non-constant members may cause bugs in the script..
/// </summary>
internal static string AvoidInvokingEmptyMembersError {
get {
return ResourceManager.GetString("AvoidInvokingEmptyMembersError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidInvokingEmptyMembers.
/// </summary>
internal static string AvoidInvokingEmptyMembersName {
get {
return ResourceManager.GetString("AvoidInvokingEmptyMembersName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid long lines.
/// </summary>
internal static string AvoidLongLinesCommonName {
get {
return ResourceManager.GetString("AvoidLongLinesCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Line lengths should be less than the configured maximum.
/// </summary>
internal static string AvoidLongLinesDescription {
get {
return ResourceManager.GetString("AvoidLongLinesDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Line exceeds the configured maximum length of {0} characters.
/// </summary>
internal static string AvoidLongLinesError {
get {
return ResourceManager.GetString("AvoidLongLinesError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidLongLines.
/// </summary>
internal static string AvoidLongLinesName {
get {
return ResourceManager.GetString("AvoidLongLinesName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid multiple type specifiers on parameters.
/// </summary>
internal static string AvoidMultipleTypeAttributesCommonName {
get {
return ResourceManager.GetString("AvoidMultipleTypeAttributesCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Prameter should not have more than one type specifier..
/// </summary>
internal static string AvoidMultipleTypeAttributesDescription {
get {
return ResourceManager.GetString("AvoidMultipleTypeAttributesDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter '{0}' has more than one type specifier..
/// </summary>
internal static string AvoidMultipleTypeAttributesError {
get {
return ResourceManager.GetString("AvoidMultipleTypeAttributesError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidMultipleTypeAttributes.
/// </summary>
internal static string AvoidMultipleTypeAttributesName {
get {
return ResourceManager.GetString("AvoidMultipleTypeAttributesName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid using null or empty HelpMessage parameter attribute..
/// </summary>
internal static string AvoidNullOrEmptyHelpMessageAttributeCommonName {
get {
return ResourceManager.GetString("AvoidNullOrEmptyHelpMessageAttributeCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Setting the HelpMessage attribute to an empty string or null value causes PowerShell interpreter to throw an error while executing the corresponding function..
/// </summary>
internal static string AvoidNullOrEmptyHelpMessageAttributeDescription {
get {
return ResourceManager.GetString("AvoidNullOrEmptyHelpMessageAttributeDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to HelpMessage parameter attribute should not be null or empty. To fix a violation of this rule, please set its value to a non-empty string..
/// </summary>
internal static string AvoidNullOrEmptyHelpMessageAttributeError {
get {
return ResourceManager.GetString("AvoidNullOrEmptyHelpMessageAttributeError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidNullOrEmptyHelpMessageAttribute.
/// </summary>
internal static string AvoidNullOrEmptyHelpMessageAttributeName {
get {
return ResourceManager.GetString("AvoidNullOrEmptyHelpMessageAttributeName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid overwriting built in cmdlets.
/// </summary>
internal static string AvoidOverwritingBuiltInCmdletsCommonName {
get {
return ResourceManager.GetString("AvoidOverwritingBuiltInCmdletsCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Do not overwrite the definition of a cmdlet that is included with PowerShell.
/// </summary>
internal static string AvoidOverwritingBuiltInCmdletsDescription {
get {
return ResourceManager.GetString("AvoidOverwritingBuiltInCmdletsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '{0}' is a cmdlet that is included with PowerShell (version {1}) whose definition should not be overridden.
/// </summary>
internal static string AvoidOverwritingBuiltInCmdletsError {
get {
return ResourceManager.GetString("AvoidOverwritingBuiltInCmdletsError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidOverwritingBuiltInCmdlets.
/// </summary>
internal static string AvoidOverwritingBuiltInCmdletsName {
get {
return ResourceManager.GetString("AvoidOverwritingBuiltInCmdletsName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid semicolons as line terminators.
/// </summary>
internal static string AvoidSemicolonsAsLineTerminatorsCommonName {
get {
return ResourceManager.GetString("AvoidSemicolonsAsLineTerminatorsCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Line should not end with a semicolon.
/// </summary>
internal static string AvoidSemicolonsAsLineTerminatorsDescription {
get {
return ResourceManager.GetString("AvoidSemicolonsAsLineTerminatorsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Line ends with a semicolon.
/// </summary>
internal static string AvoidSemicolonsAsLineTerminatorsError {
get {
return ResourceManager.GetString("AvoidSemicolonsAsLineTerminatorsError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidSemicolonsAsLineTerminators.
/// </summary>
internal static string AvoidSemicolonsAsLineTerminatorsName {
get {
return ResourceManager.GetString("AvoidSemicolonsAsLineTerminatorsName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid Using ShouldContinue Without Boolean Force Parameter.
/// </summary>
internal static string AvoidShouldContinueWithoutForceCommonName {
get {
return ResourceManager.GetString("AvoidShouldContinueWithoutForceCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Functions that use ShouldContinue should have a boolean force parameter to allow user to bypass it..
/// </summary>
internal static string AvoidShouldContinueWithoutForceDescription {
get {
return ResourceManager.GetString("AvoidShouldContinueWithoutForceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Function '{0}' in file '{1}' uses ShouldContinue but does not have a boolean force parameter. The force parameter will allow users of the script to bypass ShouldContinue prompt.
/// </summary>
internal static string AvoidShouldContinueWithoutForceError {
get {
return ResourceManager.GetString("AvoidShouldContinueWithoutForceError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Function '{0}' in script definition uses ShouldContinue but does not have a boolean force parameter. The force parameter will allow users of the script to bypass ShouldContinue prompt.
/// </summary>
internal static string AvoidShouldContinueWithoutForceErrorScriptDefinition {
get {
return ResourceManager.GetString("AvoidShouldContinueWithoutForceErrorScriptDefinition", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidShouldContinueWithoutForce.
/// </summary>
internal static string AvoidShouldContinueWithoutForceName {
get {
return ResourceManager.GetString("AvoidShouldContinueWithoutForceName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid trailing whitespace.
/// </summary>
internal static string AvoidTrailingWhitespaceCommonName {
get {
return ResourceManager.GetString("AvoidTrailingWhitespaceCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Each line should have no trailing whitespace..
/// </summary>
internal static string AvoidTrailingWhitespaceDescription {
get {
return ResourceManager.GetString("AvoidTrailingWhitespaceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Line has trailing whitespace.
/// </summary>
internal static string AvoidTrailingWhitespaceError {
get {
return ResourceManager.GetString("AvoidTrailingWhitespaceError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidTrailingWhitespace.
/// </summary>
internal static string AvoidTrailingWhitespaceName {
get {
return ResourceManager.GetString("AvoidTrailingWhitespaceName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Module Must Be Loadable.
/// </summary>
internal static string AvoidUnloadableModuleCommonName {
get {
return ResourceManager.GetString("AvoidUnloadableModuleCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to If a script file is in a PowerShell module folder, then that folder must be loadable..
/// </summary>
internal static string AvoidUnloadableModuleDescription {
get {
return ResourceManager.GetString("AvoidUnloadableModuleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot load the module '{0}' that file '{1}' is in..
/// </summary>
internal static string AvoidUnloadableModuleError {
get {
return ResourceManager.GetString("AvoidUnloadableModuleError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidUnloadableModule.
/// </summary>
internal static string AvoidUnloadableModuleName {
get {
return ResourceManager.GetString("AvoidUnloadableModuleName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid Using Username and Password Parameters.
/// </summary>
internal static string AvoidUsernameAndPasswordParamsCommonName {
get {
return ResourceManager.GetString("AvoidUsernameAndPasswordParamsCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Functions should take in a Credential parameter of type PSCredential (with a Credential transformation attribute defined after it in PowerShell 4.0 or earlier) or set the Password parameter to type SecureString..
/// </summary>
internal static string AvoidUsernameAndPasswordParamsDescription {
get {
return ResourceManager.GetString("AvoidUsernameAndPasswordParamsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Function '{0}' has both Username and Password parameters. Either set the type of the Password parameter to SecureString or replace the Username and Password parameters with a Credential parameter of type PSCredential. If using a Credential parameter in PowerShell 4.0 or earlier, please define a credential transformation attribute after the PSCredential type attribute..
/// </summary>
internal static string AvoidUsernameAndPasswordParamsError {
get {
return ResourceManager.GetString("AvoidUsernameAndPasswordParamsError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidUsingUsernameAndPasswordParams.
/// </summary>
internal static string AvoidUsernameAndPasswordParamsName {
get {
return ResourceManager.GetString("AvoidUsernameAndPasswordParamsName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid Using Broken Hash Algorithms.
/// </summary>
internal static string AvoidUsingBrokenHashAlgorithmsCommonName {
get {
return ResourceManager.GetString("AvoidUsingBrokenHashAlgorithmsCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid using the broken algorithms MD5 or SHA-1..
/// </summary>
internal static string AvoidUsingBrokenHashAlgorithmsDescription {
get {
return ResourceManager.GetString("AvoidUsingBrokenHashAlgorithmsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Algorithm parameter of cmdlet '{0}' was used with the broken algorithm '{1}'..
/// </summary>
internal static string AvoidUsingBrokenHashAlgorithmsError {
get {
return ResourceManager.GetString("AvoidUsingBrokenHashAlgorithmsError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidUsingBrokenHashAlgorithms.
/// </summary>
internal static string AvoidUsingBrokenHashAlgorithmsName {
get {
return ResourceManager.GetString("AvoidUsingBrokenHashAlgorithmsName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid Using Clear-Host.
/// </summary>
internal static string AvoidUsingClearHostCommonName {
get {
return ResourceManager.GetString("AvoidUsingClearHostCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Using Clear-Host is not recommended because the cmdlet may not work in some hosts or there may even be no hosts at all..
/// </summary>
internal static string AvoidUsingClearHostDescription {
get {
return ResourceManager.GetString("AvoidUsingClearHostDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File '{0}' uses Clear-Host. This is not recommended because it may not work in some hosts or there may even be no hosts at all..
/// </summary>
internal static string AvoidUsingClearHostError {
get {
return ResourceManager.GetString("AvoidUsingClearHostError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidUsingClearHost.
/// </summary>
internal static string AvoidUsingClearHostName {
get {
return ResourceManager.GetString("AvoidUsingClearHostName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid Using Cmdlet Aliases or omitting the 'Get-' prefix..
/// </summary>
internal static string AvoidUsingCmdletAliasesCommonName {
get {
return ResourceManager.GetString("AvoidUsingCmdletAliasesCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Replace {0} with {1}.
/// </summary>
internal static string AvoidUsingCmdletAliasesCorrectionDescription {
get {
return ResourceManager.GetString("AvoidUsingCmdletAliasesCorrectionDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to An alias is an alternate name or nickname for a cmdlet or for a command element, such as a function, script, file, or executable file. An implicit alias is also the omission of the 'Get-' prefix for commands with this prefix. But when writing scripts that will potentially need to be maintained over time, either by the original author or another Windows PowerShell scripter, please consider using full cmdlet name instead of alias. Aliases can introduce these problems, readability, understandability and availa [rest of string was truncated]";.
/// </summary>
internal static string AvoidUsingCmdletAliasesDescription {
get {
return ResourceManager.GetString("AvoidUsingCmdletAliasesDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '{0}' is an alias of '{1}'. Alias can introduce possible problems and make scripts hard to maintain. Please consider changing alias to its full content..
/// </summary>
internal static string AvoidUsingCmdletAliasesError {
get {
return ResourceManager.GetString("AvoidUsingCmdletAliasesError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to '{0}' is implicitly aliasing '{1}' because it is missing the 'Get-' prefix. This can introduce possible problems and make scripts hard to maintain. Please consider changing command to its full name..
/// </summary>
internal static string AvoidUsingCmdletAliasesMissingGetPrefixError {
get {
return ResourceManager.GetString("AvoidUsingCmdletAliasesMissingGetPrefixError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidUsingCmdletAliases.
/// </summary>
internal static string AvoidUsingCmdletAliasesName {
get {
return ResourceManager.GetString("AvoidUsingCmdletAliasesName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File '{0}' uses Console.'{1}'. Using Console to write is not recommended because it may not work in all hosts or there may even be no hosts at all. Use Write-Output instead..
/// </summary>
internal static string AvoidUsingConsoleWriteError {
get {
return ResourceManager.GetString("AvoidUsingConsoleWriteError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid Using SecureString With Plain Text.
/// </summary>
internal static string AvoidUsingConvertToSecureStringWithPlainTextCommonName {
get {
return ResourceManager.GetString("AvoidUsingConvertToSecureStringWithPlainTextCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Using ConvertTo-SecureString with plain text will expose secure information..
/// </summary>
internal static string AvoidUsingConvertToSecureStringWithPlainTextDescription {
get {
return ResourceManager.GetString("AvoidUsingConvertToSecureStringWithPlainTextDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File '{0}' uses ConvertTo-SecureString with plaintext. This will expose secure information. Encrypted standard strings should be used instead..
/// </summary>
internal static string AvoidUsingConvertToSecureStringWithPlainTextError {
get {
return ResourceManager.GetString("AvoidUsingConvertToSecureStringWithPlainTextError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Script definition uses ConvertTo-SecureString with plaintext. This will expose secure information. Encrypted standard strings should be used instead..
/// </summary>
internal static string AvoidUsingConvertToSecureStringWithPlainTextErrorScriptDefinition {
get {
return ResourceManager.GetString("AvoidUsingConvertToSecureStringWithPlainTextErrorScriptDefinition", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidUsingConvertToSecureStringWithPlainText.
/// </summary>
internal static string AvoidUsingConvertToSecureStringWithPlainTextName {
get {
return ResourceManager.GetString("AvoidUsingConvertToSecureStringWithPlainTextName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid Using Deprecated Manifest Fields.
/// </summary>
internal static string AvoidUsingDeprecatedManifestFieldsCommonName {
get {
return ResourceManager.GetString("AvoidUsingDeprecatedManifestFieldsCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to "ModuleToProcess" is obsolete in the latest PowerShell version. Please update with the latest field "RootModule" in manifest files to avoid PowerShell version inconsistency..
/// </summary>
internal static string AvoidUsingDeprecatedManifestFieldsDescription {
get {
return ResourceManager.GetString("AvoidUsingDeprecatedManifestFieldsDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to AvoidUsingDeprecatedManifestFields.
/// </summary>
internal static string AvoidUsingDeprecatedManifestFieldsName {
get {
return ResourceManager.GetString("AvoidUsingDeprecatedManifestFieldsName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Avoid using double quotes if the string is constant..
/// </summary>
internal static string AvoidUsingDoubleQuotesForConstantStringCommonName {
get {
return ResourceManager.GetString("AvoidUsingDoubleQuotesForConstantStringCommonName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use single quotes if the string is constant..