forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParserStrings.resx
More file actions
1376 lines (1363 loc) · 73.5 KB
/
Copy pathParserStrings.resx
File metadata and controls
1376 lines (1363 loc) · 73.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="https://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="https://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="TypeNotFound" xml:space="preserve">
<value>Unable to find type [{0}].</value>
</data>
<data name="TypeNotFoundWithMessage" xml:space="preserve">
<value>Unable to find type [{0}]. Details: {1}</value>
</data>
<data name="IncompleteString" xml:space="preserve">
<value>Incomplete string token.</value>
</data>
<data name="InvalidUnicodeEscapeSequence" xml:space="preserve">
<value>The Unicode escape sequence is not valid. A valid sequence is `u{ followed by one to six hex digits and a closing '}'.</value>
</data>
<data name="InvalidUnicodeEscapeSequenceValue" xml:space="preserve">
<value>The Unicode escape sequence value is out of range. The maximum value is 0x10FFFF.</value>
</data>
<data name="MissingUnicodeEscapeSequenceTerminator" xml:space="preserve">
<value>The Unicode escape sequence is missing the closing '}'.</value>
</data>
<data name="TooManyDigitsInUnicodeEscapeSequence" xml:space="preserve">
<value>The Unicode escape sequence contains more than the maximum of six hex digits between braces.</value>
</data>
<data name="ReferenceNeedsToBeByItselfInTypeConstraint" xml:space="preserve">
<value>Cannot use [ref] with other types in a type constraint.</value>
</data>
<data name="ReferenceNeedsToBeLastTypeInTypeConversion" xml:space="preserve">
<value>[ref] can only be the final type in type conversion sequence.</value>
</data>
<data name="ReferenceNeedsToBeByItselfInTypeSequence" xml:space="preserve">
<value>Cannot have two occurrences of [ref] in a type sequence.</value>
</data>
<data name="BadNumericConstant" xml:space="preserve">
<value>The numeric constant {0} is not valid.</value>
</data>
<data name="InvalidRegularExpression" xml:space="preserve">
<value>The regular expression pattern {0} is not valid.</value>
</data>
<data name="EmptyVariableReference" xml:space="preserve">
<value>An empty ${} variable reference was found. A name is required inside the braces.</value>
</data>
<data name="InvalidVariableReference" xml:space="preserve">
<value>Variable reference is not valid. '$' was not followed by a valid variable name character. Consider using ${} to delimit the name.</value>
</data>
<data name="InvokeMethodOnNull" xml:space="preserve">
<value>You cannot call a method on a null-valued expression.</value>
</data>
<data name="MethodNotFound" xml:space="preserve">
<value>Method invocation failed because [{0}] does not contain a method named '{1}'.</value>
</data>
<data name="ParameterizedPropertyAssignmentFailed" xml:space="preserve">
<value>Assignment failed because [{0}] does not contain a property '{1}()' that can be set.</value>
</data>
<data name="UnexpectedToken" xml:space="preserve">
<value>Unexpected token '{0}' in expression or statement.</value>
</data>
<data name="SplattingNotPermitted" xml:space="preserve">
<value>The splatting operator '@' cannot be used to reference variables in an expression. '@{0}' can be used only as an argument to a command. To reference variables in an expression use '${0}'.</value>
</data>
<data name="InvalidParameter" xml:space="preserve">
<value>Parameter '{0}' is not valid</value>
</data>
<data name="MissingExpression" xml:space="preserve">
<value>Missing expression after '{0}' in pipeline element.</value>
</data>
<data name="BadExpression" xml:space="preserve">
<value>The expression after '{0}' in a pipeline element produced an object that was not valid. It must result in a command name, a script block, or a CommandInfo object.</value>
</data>
<data name="ParameterRequiresArgument" xml:space="preserve">
<value>Parameter {0} requires an argument.</value>
</data>
<data name="ParameterCannotHaveArgument" xml:space="preserve">
<value>Parameter {0} cannot have an argument.</value>
</data>
<data name="DuplicateFormalParameter" xml:space="preserve">
<value>Duplicate parameter ${0} in parameter list.</value>
</data>
<data name="MissingArgument" xml:space="preserve">
<value>Missing argument in parameter list.</value>
</data>
<data name="SplattingNotPermittedInArgumentList" xml:space="preserve">
<value>Splatted variables like '@{0}' cannot be part of a comma-separated list of arguments.</value>
</data>
<data name="MissingFileSpecification" xml:space="preserve">
<value>Missing file specification after redirection operator.</value>
</data>
<data name="RedirectionNotSupported" xml:space="preserve">
<value>The '{0}' operator is reserved for future use.</value>
</data>
<data name="RedirectionFailed" xml:space="preserve">
<value>Redirection to '{0}' failed: {1}</value>
</data>
<data name="ExpressionsMustBeFirstInPipeline" xml:space="preserve">
<value>Expressions are only allowed as the first element of a pipeline.</value>
</data>
<data name="EmptyPipeElement" xml:space="preserve">
<value>An empty pipe element is not allowed.</value>
</data>
<data name="InvalidLeftHandSide" xml:space="preserve">
<value>The assignment expression is not valid. The input to an assignment operator must be an object that is able to accept assignments, such as a variable or a property.</value>
</data>
<data name="AddHashTableToNonHashTable" xml:space="preserve">
<value>A hash table can only be added to another hash table.</value>
</data>
<data name="IsOperatorRequiresType" xml:space="preserve">
<value>The right operand of '-is' must be a type.</value>
</data>
<data name="AsOperatorRequiresType" xml:space="preserve">
<value>The right operand of '-as' must be a type.</value>
</data>
<data name="FormatError" xml:space="preserve">
<value>Error formatting a string: {0}.</value>
</data>
<data name="BadOperatorArgument" xml:space="preserve">
<value>The argument to operator '{0}' is not valid: {1}.</value>
</data>
<data name="OperatorFailed" xml:space="preserve">
<value>The '{0}' operator failed: {1}.</value>
</data>
<data name="BadReplaceArgument" xml:space="preserve">
<value>The {0} operator allows only two elements to follow it, not {1}.</value>
</data>
<data name="ExpectedValueExpression" xml:space="preserve">
<value>You must provide a value expression following the '{0}' operator.</value>
</data>
<data name="OperatorRequiresVariableOrProperty" xml:space="preserve">
<value>The '{0}' operator works only on variables or on properties.</value>
</data>
<data name="OrderedAttributeOnlyOnHashLiteralNode" xml:space="preserve">
<value>The {0} attribute can be specified only on a hash literal node.</value>
</data>
<data name="MissingArrayIndexExpression" xml:space="preserve">
<value>Array index expression is missing or not valid.</value>
</data>
<data name="MissingPropertyName" xml:space="preserve">
<value>Missing property name after reference operator.</value>
</data>
<data name="PropertyNotFound" xml:space="preserve">
<value>The property '{0}' cannot be found on this object. Verify that the property exists and can be set.</value>
</data>
<data name="PropertyNotFoundStrict" xml:space="preserve">
<value>The property '{0}' cannot be found on this object. Verify that the property exists.</value>
</data>
<data name="NullArrayIndex" xml:space="preserve">
<value>Index operation failed; the array index evaluated to null.</value>
</data>
<data name="NullArray" xml:space="preserve">
<value>Cannot index into a null array.</value>
</data>
<data name="CannotIndex" xml:space="preserve">
<value>Unable to index into an object of type "{0}".</value>
</data>
<data name="CannotIndexWithByRefLikeReturnType" xml:space="preserve">
<value>Unable to index into an object of type "{0}" with the ByRef-like return type "{1}". ByRef-like types are not supported in PowerShell.</value>
</data>
<data name="ArrayHasTooManyDimensions" xml:space="preserve">
<value>The array has too many dimensions: {0}. The number of dimensions for an array must be less than or equal to 32.</value>
</data>
<data name="ArraySliceAssignmentFailed" xml:space="preserve">
<value>Array assignment to [{0}] failed because assignment to slices is not supported.</value>
</data>
<data name="NeedMultidimensionalIndex" xml:space="preserve">
<value>You cannot index into a {0} dimensional array with index [{1}].</value>
</data>
<data name="IndexOutOfRange" xml:space="preserve">
<value>Array assignment failed because index '{0}' was out of range.</value>
</data>
<data name="MissingExpressionAfterToken" xml:space="preserve">
<value>Missing expression after '{0}'.</value>
</data>
<data name="IncompleteDollarVariableReference" xml:space="preserve">
<value>${{variable}} reference starting is missing the closing '}}'.</value>
</data>
<data name="IncompleteDollarSubexpressionReference" xml:space="preserve">
<value>$(subexpression) is missing the closing ')'.</value>
</data>
<data name="UnexpectedUnaryOperator" xml:space="preserve">
<value>Internal error - unexpected unary operator {0}.</value>
</data>
<data name="NonExistingVariableReference" xml:space="preserve">
<value>[ref] cannot be applied to a variable that does not exist.</value>
</data>
<data name="VariableIsUndefined" xml:space="preserve">
<value>The variable '${0}' cannot be retrieved because it has not been set.</value>
</data>
<data name="DuplicateKeyInHashLiteral" xml:space="preserve">
<value>Duplicate keys '{0}' are not allowed in hash literals.</value>
</data>
<data name="DuplicateNamedArgument" xml:space="preserve">
<value>Duplicate named arguments '{0}' are not allowed.</value>
</data>
<data name="OperatorRequiresNumber" xml:space="preserve">
<value>The '{0}' operator works only on numbers. The operand is a '{1}'.</value>
</data>
<data name="ExpectedExpression" xml:space="preserve">
<value>An expression was expected after '('.</value>
</data>
<data name="MissingEqualsInHashLiteral" xml:space="preserve">
<value>Missing '=' operator after key in hash literal.</value>
</data>
<data name="MissingStatementInHashLiteral" xml:space="preserve">
<value>Missing statement after '=' in hash literal.</value>
</data>
<data name="MissingExpressionInNamedArgument" xml:space="preserve">
<value>Missing statement after '=' in named argument.</value>
</data>
<data name="MissingPropertyTerminator" xml:space="preserve">
<value>Missing ';' or end-of-line in property definition.</value>
</data>
<data name="MissingExpressionAfterOperator" xml:space="preserve">
<value>Missing expression after unary operator '{0}'.</value>
</data>
<data name="IfStatementMissingCondition" xml:space="preserve">
<value>Missing condition in if statement after '{0} ('.</value>
</data>
<data name="MissingStatementBlock" xml:space="preserve">
<value>Missing statement block after {0} ( condition ).</value>
</data>
<data name="MissingStatementBlockAfterElse" xml:space="preserve">
<value>Missing statement block after 'else' keyword.</value>
</data>
<data name="FileReadError" xml:space="preserve">
<value>The file could not be read: {0}.</value>
</data>
<data name="FileOpenError" xml:space="preserve">
<value>The current provider ({0}) cannot open a file.</value>
</data>
<data name="FileNotFound" xml:space="preserve">
<value>No files matching '{0}' were found.</value>
</data>
<data name="AmbiguousPath" xml:space="preserve">
<value>The path cannot be processed because it resolved to more than one file; only one file at a time can be processed.</value>
</data>
<data name="KeywordParameterReservedForFutureUse" xml:space="preserve">
<value>The {0} '-{1}' parameter is reserved for future use.</value>
</data>
<data name="MissingFilenameOption" xml:space="preserve">
<value>Cannot process the 'switch' statement because of a missing file name argument to the -file option.</value>
</data>
<data name="InvalidFilenameOption" xml:space="preserve">
<value>The file name argument to -file in the switch statement is not valid.</value>
</data>
<data name="InvalidSwitchFlag" xml:space="preserve">
<value>The parameter {0} is not valid for the switch statement.</value>
</data>
<data name="InvalidForeachFlag" xml:space="preserve">
<value>The parameter {0} is not valid for the foreach statement.</value>
</data>
<data name="PipelineValueRequired" xml:space="preserve">
<value>A switch statement must have one of the following: '-file file_name' or '( expression )'.</value>
</data>
<data name="MissingSwitchConditionExpression" xml:space="preserve">
<value>Missing condition in switch statement clause.</value>
</data>
<data name="MultipleSwitchDefaultClauses" xml:space="preserve">
<value>A switch statement can have only one default clause.</value>
</data>
<data name="MissingSwitchStatementClause" xml:space="preserve">
<value>Missing statement block in switch statement clause.</value>
</data>
<data name="MissingForeachExpression" xml:space="preserve">
<value>Missing expression in foreach loop.
The correct form is: foreach ($a in $b) {...}</value>
</data>
<data name="MissingForeachStatement" xml:space="preserve">
<value>Missing statement body in foreach loop.
The correct form is: foreach ($a in $b) {...}</value>
</data>
<data name="OnlyOneParameterListAllowed" xml:space="preserve">
<value>The param statement cannot be used if arguments were specified in the function declaration.</value>
</data>
<data name="NotADefinedOperationForType" xml:space="preserve">
<value>The operation '[{0}] {1} [{2}]' is not defined.</value>
</data>
<data name="BadEnumeration" xml:space="preserve">
<value>An error occurred while enumerating through a collection: {0}.</value>
</data>
<data name="COMException" xml:space="preserve">
<value>An unhandled COM interop exception occurred: {0}</value>
</data>
<data name="InvalidComObjectException" xml:space="preserve">
<value>A COM object was accessed after it was already released: {0}</value>
</data>
<data name="ScriptTooComplicated" xml:space="preserve">
<value>Processing was stopped because the script is too complex.</value>
</data>
<data name="ScriptsNotAllowed" xml:space="preserve">
<value>The syntax is not supported by this runspace. This can occur if the runspace is in no-language mode.</value>
</data>
<data name="InvalidSplitOptionCombination" xml:space="preserve">
<value>The combination of options with the -split operator is not valid.</value>
</data>
<data name="InvalidSplitOptionWithPredicate" xml:space="preserve">
<value>Options are not allowed on the -split operator with a predicate.</value>
</data>
<data name="InvalidEndOfLine" xml:space="preserve">
<value>The token '{0}' is not a valid statement separator in this version.</value>
</data>
<data name="ReservedKeywordNotAllowed" xml:space="preserve">
<value>The '{0}' keyword is not supported in this version of the language.</value>
</data>
<data name="MissingExpressionAfterKeyword" xml:space="preserve">
<value>Missing expression after '{0}' in loop.</value>
</data>
<data name="MissingLoopStatement" xml:space="preserve">
<value>Missing statement body in {0} loop.</value>
</data>
<data name="MissingTrapStatement" xml:space="preserve">
<value>The 'trap' statement was incomplete. A trap statement requires a body.</value>
</data>
<data name="MissingTryStatement" xml:space="preserve">
<value>Incomplete 'try' statement. A try statement requires a body.</value>
</data>
<data name="InvalidFunctionParameter" xml:space="preserve">
<value>Parameter declarations are a comma-separated list of variable names with optional initializer expressions.</value>
</data>
<data name="MissingFunctionBody" xml:space="preserve">
<value>Missing function body in function declaration.</value>
</data>
<data name="DuplicateScriptCommandClause" xml:space="preserve">
<value>Script command clause '{0}' has already been defined.</value>
</data>
<data name="MissingNamedBlocks" xml:space="preserve">
<value>unexpected token '{0}', expected 'begin', 'process', 'end', 'clean', or 'dynamicparam'.</value>
</data>
<data name="MissingEndCurlyBrace" xml:space="preserve">
<value>Missing closing '}' in statement block or type definition.</value>
</data>
<data name="MissingEndParenthesisInMethodCall" xml:space="preserve">
<value>Missing ')' in method call.</value>
</data>
<data name="MissingEndSquareBracket" xml:space="preserve">
<value>Missing ']' after array index expression.</value>
</data>
<data name="MissingEndParenthesisInExpression" xml:space="preserve">
<value>Missing closing ')' in expression.</value>
</data>
<data name="MissingEndParenthesisInSubexpression" xml:space="preserve">
<value>Missing closing ')' in subexpression.</value>
</data>
<data name="MissingOpenParenthesisInIfStatement" xml:space="preserve">
<value>Missing '(' after '{0}' in if statement.</value>
</data>
<data name="MissingEndParenthesisInSwitchStatement" xml:space="preserve">
<value>Missing ')' after expression in switch statement.</value>
</data>
<data name="MissingCurlyBraceInSwitchStatement" xml:space="preserve">
<value>Missing '{' in switch statement.</value>
</data>
<data name="MissingVariableNameAfterForeach" xml:space="preserve">
<value>Missing variable name after foreach.
The correct form is: foreach ($a in $b) {...}</value>
</data>
<data name="MissingInInForeach" xml:space="preserve">
<value>Missing 'in' after variable in foreach loop.
The correct form is: foreach ($a in $b) {...}</value>
</data>
<data name="MissingEndParenthesisAfterForeach" xml:space="preserve">
<value>Missing closing ')' after expression part of foreach loop.
The correct form is: foreach ($a in $b) {...}</value>
</data>
<data name="MissingOpenParenthesisAfterKeyword" xml:space="preserve">
<value>Missing opening '(' after keyword '{0}'.</value>
</data>
<data name="MissingWhileOrUntilInDoWhile" xml:space="preserve">
<value>Missing while or until keyword in do loop.</value>
</data>
<data name="MissingEndParenthesisAfterStatement" xml:space="preserve">
<value>Missing closing ')' after expression in '{0}' statement.</value>
</data>
<data name="MissingNameAfterKeyword" xml:space="preserve">
<value>Missing name after {0} keyword.</value>
</data>
<data name="MissingEndParenthesisInFunctionParameterList" xml:space="preserve">
<value>Missing ')' in function parameter list.</value>
</data>
<data name="BackupParserMessage" xml:space="preserve">
<value>An error '{0}' occurred while processing this script. Text describing this error could not be loaded.</value>
</data>
<data name="BackupParserMessageWithException" xml:space="preserve">
<value>An error '{0}' occurred while processing this script. Text describing this error could not be loaded due to error '{1}'.</value>
</data>
<data name="ScriptBlockDelegateInvokedFromWrongThread" xml:space="preserve">
<value>There is no Runspace available to run scripts in this thread. You can provide one in the DefaultRunspace property of the System.Management.Automation.Runspaces.Runspace type. The script block you attempted to invoke was: {0}</value>
</data>
<data name="UnrecognizedToken" xml:space="preserve">
<value>Unrecognized token in source text.</value>
</data>
<data name="ExceptionActionPromptCaption" xml:space="preserve">
<value>Action to take for this exception:</value>
</data>
<data name="ContinueLabel" xml:space="preserve">
<value>&Continue</value>
</data>
<data name="ContinueHelpMessage" xml:space="preserve">
<value>Report the error then continue with the next script statement.</value>
</data>
<data name="SilentlyContinueLabel" xml:space="preserve">
<value>S&ilently Continue</value>
</data>
<data name="SilentlyContinueHelpMessage" xml:space="preserve">
<value>Do not report this error, just continue with the next script statement.</value>
</data>
<data name="BreakLabel" xml:space="preserve">
<value>&Break</value>
</data>
<data name="BreakHelpMessage" xml:space="preserve">
<value>Do not continue processing, throw the exception instead.</value>
</data>
<data name="SuspendLabel" xml:space="preserve">
<value>&Suspend</value>
</data>
<data name="SuspendHelpMessage" xml:space="preserve">
<value>Pause the current pipeline and return to the command prompt. Type exit to resume operation when you are done.</value>
</data>
<data name="CantActivateDocumentInPipeline" xml:space="preserve">
<value>Cannot run a document in the middle of a pipeline: {0}.</value>
</data>
<data name="ProgramFailedToExecute" xml:space="preserve">
<value>Program '{0}' failed to run: {1}{2}.</value>
</data>
<data name="CantInvokeInBinaryModule" xml:space="preserve">
<value>Cannot use '&' to invoke in the context of binary module '{0}'. Specify a non-binary module after the '&' and try the operation again.</value>
</data>
<data name="CantInvokeInNonImportedModule" xml:space="preserve">
<value>Cannot use '&' to invoke in the context of module '{0}' because it is not imported. Import the module '{0}' and try the operation again.</value>
</data>
<data name="TokenAfterEndOfValidScriptText" xml:space="preserve">
<value>Executable script code found in signature block.</value>
</data>
<data name="TextForWordLine" xml:space="preserve">
<value>line</value>
</data>
<data name="TextForPositionMessage" xml:space="preserve">
<value>At {0}:{1} char:{2}
+ {3}</value>
</data>
<data name="TraceScriptLineMessage" xml:space="preserve">
<value>{0,4}+ {1}</value>
</data>
<data name="TraceVariableAssignment" xml:space="preserve">
<value> ! SET ${0} = '{1}'.</value>
</data>
<data name="TraceEnteringFunction" xml:space="preserve">
<value> ! CALL function '{0}'</value>
</data>
<data name="TraceEnteringFunctionDefinedInFile" xml:space="preserve">
<value> ! CALL function '{0}' (defined in file '{1}')</value>
</data>
<data name="TraceMethodCall" xml:space="preserve">
<value> ! CALL method '{0}'</value>
</data>
<data name="TerminatorExpectedAtEndOfString" xml:space="preserve">
<value>The string is missing the terminator: {0}.</value>
</data>
<data name="WhitespaceBeforeHereStringFooter" xml:space="preserve">
<value>White space is not allowed before the string terminator.</value>
</data>
<data name="EndSquareBracketExpectedAtEndOfType" xml:space="preserve">
<value>Missing ] at end of type token.</value>
</data>
<data name="OpenBraceNeedsToBeBackTickedInVariableName" xml:space="preserve">
<value>Use `{ instead of { in variable names.</value>
</data>
<data name="MissingStatementBlockForDataSection" xml:space="preserve">
<value>The Data section is missing its statement block.</value>
</data>
<data name="InvalidParameterForDataSectionStatement" xml:space="preserve">
<value>The "{0}" parameter of the Data section is not valid. The valid Data section parameter is SupportedCommand.</value>
</data>
<data name="ArrayReferenceNotSupportedInDataSection" xml:space="preserve">
<value>Array references are not allowed in restricted language mode or a Data section.</value>
</data>
<data name="AssignmentStatementNotSupportedInDataSection" xml:space="preserve">
<value>Assignment statements are not allowed in restricted language mode or a Data section.</value>
</data>
<data name="RedirectionNotSupportedInDataSection" xml:space="preserve">
<value>Redirection is not allowed in restricted language mode or a Data section.</value>
</data>
<data name="DoWhileStatementNotSupportedInDataSection" xml:space="preserve">
<value>The Do and While statements are not allowed in restricted language mode or a Data section.</value>
</data>
<data name="ExpandableStringNotSupportedInDataSection" xml:space="preserve">
<value>Expandable strings are not allowed in restricted language mode or a Data section.</value>
</data>
<data name="OperatorNotSupportedInDataSection" xml:space="preserve">
<value>The '{0}' operator is not allowed in restricted language mode or a Data section.</value>
</data>
<data name="TrapStatementNotSupportedInDataSection" xml:space="preserve">
<value>The Trap statement is not allowed in restricted language mode or a Data section.</value>
</data>
<data name="TryStatementNotSupportedInDataSection" xml:space="preserve">
<value>The Try statement is not allowed in restricted language mode or a Data section.</value>
</data>
<data name="FlowControlStatementNotSupportedInDataSection" xml:space="preserve">
<value>Flow control statements such as Break, Continue, Return, Exit, and Throw are not allowed in restricted language mode or a Data section.</value>
</data>
<data name="ForeachStatementNotSupportedInDataSection" xml:space="preserve">
<value>Foreach statements are not allowed in restricted language mode or a Data section.</value>
</data>
<data name="ForWhileStatementNotSupportedInDataSection" xml:space="preserve">
<value>For and While statements are not allowed in restricted language mode or a Data section.</value>
</data>
<data name="FunctionDeclarationNotSupportedInDataSection" xml:space="preserve">
<value>Function declarations are not allowed in restricted language mode or a Data section.</value>
</data>
<data name="MethodCallNotSupportedInDataSection" xml:space="preserve">
<value>Method calls are not allowed in restricted language mode or a Data section.</value>
</data>
<data name="ParameterDeclarationNotSupportedInDataSection" xml:space="preserve">
<value>Parameter declarations are not allowed in restricted language mode or a Data section.</value>
</data>
<data name="PropertyReferenceNotSupportedInDataSection" xml:space="preserve">
<value>Property references are not allowed in restricted language mode or a Data section.</value>
</data>
<data name="ScriptBlockNotSupportedInDataSection" xml:space="preserve">
<value>Script block literals are not allowed in restricted language mode or a Data section.</value>
</data>
<data name="SwitchStatementNotSupportedInDataSection" xml:space="preserve">
<value>The switch statement is not allowed in restricted language mode or a Data section.</value>
</data>
<data name="VariableReferenceNotSupportedInDataSection" xml:space="preserve">
<value>A variable that cannot be referenced in restricted language mode or a Data section is being referenced. Variables that can be referenced include the following: {0}.</value>
</data>
<data name="CmdletNotInAllowedListForDataSection" xml:space="preserve">
<value>The command '{0}' is not allowed in restricted language mode or a Data section.</value>
</data>
<data name="DataSectionStatementNotSupportedInDataSection" xml:space="preserve">
<value>The data statement is not allowed in restricted language mode or another Data section.</value>
</data>
<data name="MissingValueForSupportedCommandInDataSectionStatement" xml:space="preserve">
<value>The SupportedCommand parameter of the Data section is missing a value. Supply a cmdlet or function name to the parameter.</value>
</data>
<data name="InvalidScriptBlockInDataSection" xml:space="preserve">
<value>A Begin statement block, Process statement block, or parameter statement is not allowed in a Data section.</value>
</data>
<data name="StringMultiplyToolongInDataSection" xml:space="preserve">
<value>String multiplication results with more than "{0}" characters are not allowed in restricted language mode or a Data section.</value>
</data>
<data name="ArrayMultiplyToolongInDataSection" xml:space="preserve">
<value>Array multiplication resulting in more than {0} elements is not allowed in restricted language mode or a Data section.</value>
</data>
<data name="DotSourcingNotSupportedInDataSection" xml:space="preserve">
<value>Dot sourcing is not allowed in restricted language mode or a Data section.</value>
</data>
<data name="ParameterAttributeArgumentNeedsToBeConstantOrScriptBlock" xml:space="preserve">
<value>Attribute argument must be a constant or a script block.</value>
</data>
<data name="CustomAttributeTypeNotFound" xml:space="preserve">
<value>Cannot find the type for custom attribute '{0}'. Make sure that the assembly that contains this type is loaded.</value>
</data>
<data name="PropertyNotFoundForType" xml:space="preserve">
<value>Property '{0}' cannot be found for type '{1}'.</value>
</data>
<data name="UnexpectedAttribute" xml:space="preserve">
<value>Unexpected attribute '{0}'.</value>
</data>
<data name="EndSquareBracketExpectedAtEndOfAttribute" xml:space="preserve">
<value>Missing ] at end of attribute or type literal.</value>
</data>
<data name="StrictModeFunctionCallWithParens" xml:space="preserve">
<value>The function or command was called as if it were a method. Parameters should be separated by spaces. For information about parameters, see the about_Parameters Help topic.</value>
</data>
<data name="MissingTryStatementBlock" xml:space="preserve">
<value>The Try statement is missing its statement block.</value>
</data>
<data name="MissingCatchOrFinally" xml:space="preserve">
<value>The Try statement is missing its Catch or Finally block.</value>
</data>
<data name="MissingCatchHandlerBlock" xml:space="preserve">
<value>The Catch block is missing its statement block.</value>
</data>
<data name="MissingFinallyStatementBlock" xml:space="preserve">
<value>The Finally block is missing its statement block.</value>
</data>
<data name="ExceptionTypeAlreadyCaught" xml:space="preserve">
<value>Exception type {0} is already handled by a previous handler.</value>
</data>
<data name="EmptyCatchNotLast" xml:space="preserve">
<value>Catch block must be the last catch block.</value>
</data>
<data name="MissingTypeLiteralToken" xml:space="preserve">
<value>Missing type literal.</value>
</data>
<data name="MissingTerminatorMultiLineComment" xml:space="preserve">
<value>The terminator '#>' is missing from the multiline comment.</value>
</data>
<data name="UnexpectedCharactersAfterHereStringHeader" xml:space="preserve">
<value>No characters are allowed after a here-string header but before the end of the line.</value>
</data>
<data name="ErrorCollection" xml:space="preserve">
<value>Parser errors were detected.</value>
</data>
<data name="MissingNamedStatementBlock" xml:space="preserve">
<value>Missing statement block after '{0}'.</value>
</data>
<data name="TypeNotAllowedBeforeParam" xml:space="preserve">
<value>Unexpected type [{0}] was found in the parameter statement.</value>
</data>
<data name="TypeNotAllowedBeforeStatement" xml:space="preserve">
<value>Unexpected type [{0}] was found before statement.</value>
</data>
<data name="InvalidNullKey" xml:space="preserve">
<value>A null key is not allowed in a hash literal.</value>
</data>
<data name="AttributeNotSupportedInDataSection" xml:space="preserve">
<value>Attributes are not allowed in restricted language mode or a Data section.</value>
</data>
<data name="TypeNotAllowedInDataSection" xml:space="preserve">
<value>The type {0} is not allowed in restricted language mode or a Data section.</value>
</data>
<data name="PropertyIsReadOnly" xml:space="preserve">
<value>'{0}' is a ReadOnly property.</value>
</data>
<data name="MissingAssemblyNameSpecification" xml:space="preserve">
<value>The type name is missing the assembly name specification.</value>
</data>
<data name="ControlLeavingFinally" xml:space="preserve">
<value>Flow of control cannot leave a Finally block.</value>
</data>
<data name="UnrecoverableParserError" xml:space="preserve">
<value>Unrecoverable error in PowerShell.</value>
</data>
<data name="AstIsReused" xml:space="preserve">
<value>An AST cannot be used as the child of more than one AST. To use this AST in another AST, call the Copy() method and use its result.</value>
</data>
<data name="InvalidUsingExpression" xml:space="preserve">
<value>Expression is not allowed in a Using expression.</value>
</data>
<data name="UsingWithoutInvokeCommand" xml:space="preserve">
<value>A Using variable cannot be retrieved. A Using variable can be used only with Invoke-Command, Start-Job, or InlineScript in the script workflow. When it is used with Invoke-Command, the Using variable is valid only if the script block is invoked on a remote computer.</value>
</data>
<data name="InvalidBracedVariableReference" xml:space="preserve">
<value>Variable reference is not valid. The variable name is missing.</value>
</data>
<data name="InvalidVariableReferenceWithDrive" xml:space="preserve">
<value>Variable reference is not valid. ':' was not followed by a valid variable name character. Consider using ${} to delimit the name.</value>
</data>
<data name="TooManyErrors" xml:space="preserve">
<value>Not all parse errors were reported. Correct the reported errors and try again.</value>
</data>
<data name="MissingTypename" xml:space="preserve">
<value>Missing type name after '['.</value>
</data>
<data name="AllStream" xml:space="preserve">
<value>* stream</value>
</data>
<data name="DebugStream" xml:space="preserve">
<value>debug stream</value>
</data>
<data name="ErrorStream" xml:space="preserve">
<value>error stream</value>
</data>
<data name="OutputStream" xml:space="preserve">
<value>output stream</value>
</data>
<data name="StreamAlreadyRedirected" xml:space="preserve">
<value>The {0} for this command is already redirected.</value>
</data>
<data name="VerboseStream" xml:space="preserve">
<value>verbose stream</value>
</data>
<data name="WarningStream" xml:space="preserve">
<value>warning stream</value>
</data>
<data name="MissingStatementAfterKeyword" xml:space="preserve">
<value>Missing statement body after keyword '{0}'.</value>
</data>
<data name="ParallelAndSequenceBlockNotSupportedInDataSection" xml:space="preserve">
<value>Parallel and sequence blocks are not allowed in restricted language mode or a Data section.</value>
</data>
<data name="UnexpectedKeyword" xml:space="preserve">
<value>Unexpected keyword '{0}'.</value>
</data>
<data name="VoidTypeConstraintNotAllowed" xml:space="preserve">
<value>[void] cannot be used as a parameter type, or on the left side of an assignment.</value>
</data>
<data name="CannotInvoke" xml:space="preserve">
<value>The method cannot be invoked.</value>
</data>
<data name="HashtableToObjectConversionNotSupportedInDataSection" xml:space="preserve">
<value>Cannot convert hashtable to an object of the following type: {0}. Hashtable-to-Object conversion is not supported in restricted language mode or a Data section.</value>
</data>
<data name="RequiresArgumentMustBeConstant" xml:space="preserve">
<value>Argument must be constant.</value>
</data>
<data name="RequiresInvalidStringArgument" xml:space="preserve">
<value>The argument for the {0} parameter is not valid. Specify a valid string argument.</value>
</data>
<data name="RequiresModuleInvalid" xml:space="preserve">
<value>The argument for the Module parameter is not valid. {0}</value>
</data>
<data name="RequiresVersionInvalid" xml:space="preserve">
<value>The argument for the Version parameter is not valid. Specify a valid PowerShell version, in the format major.minor version.</value>
</data>
<data name="RequiresPSEditionInvalid" xml:space="preserve">
<value>The argument for the {0} parameter is not valid. Specify a valid PowerShell edition.</value>
</data>
<data name="RequiresPSEditionValueIsAlreadySpecified" xml:space="preserve">
<value>The argument for the {0} parameter contains duplicate values. Do not specify duplicate PowerShell edition values.</value>
</data>
<data name="WildCardModuleNameError" xml:space="preserve">
<value>Wildcard characters are not supported for module names.</value>
</data>
<data name="InvokeMethodConstrainedLanguage" xml:space="preserve">
<value>Cannot invoke method. Method invocation is supported only on core types in this language mode.</value>
</data>
<data name="PropertySetConstrainedLanguage" xml:space="preserve">
<value>Cannot set property. Property setting is supported only on core types in this language mode.</value>
</data>
<data name="ConfigurationInvalidPropertyName" xml:space="preserve">
<value>An attribute name for resource '{0}' was found that is not valid. An attribute name must be a simple string, and cannot contain variables or expressions. Replace '{1}' with a simple string.</value>
</data>
<data name="InvalidInstanceProperty" xml:space="preserve">
<value>The member '{0}' is not valid. Valid members are
'{1}'.</value>
</data>
<data name="MissingBraceInObjectDefinition" xml:space="preserve">
<value>Missing '{' in object definition.</value>
</data>
<data name="RequiredNameOrExpressionMissing" xml:space="preserve">
<value>A required name or expression was missing.</value>
</data>
<data name="SchemaFileNotFound" xml:space="preserve">
<value>The schema file {0} was not found. Verify that any modules specified in a configuration statement contain a schema.mof file, and then try running the script again.</value>
</data>
<data name="DataSectionAllowedCommandDisallowed" xml:space="preserve">
<value>Cannot define data section. Definition of additional supported commands is not supported in this language mode.</value>
</data>
<data name="MissingCurlyInConfigurationStatement" xml:space="preserve">
<value>Missing '{' in configuration statement.</value>
</data>
<data name="ExceptionParsingMOFFile" xml:space="preserve">
<value>Exception parsing MOF file '{0}':{1}.</value>
</data>
<data name="MissingConfigurationName" xml:space="preserve">
<value>The name for the configuration is missing. Provide the missing name as a simple name, string, or string-valued expression.</value>
</data>
<data name="ModuleNotFoundDuringParse" xml:space="preserve">
<value>Could not find the module '{0}'.</value>
</data>
<data name="MultipleModuleEntriesFoundDuringParse" xml:space="preserve">
<value>Multiple versions of the module '{0}' were found. You can run 'Get-Module -ListAvailable -FullyQualifiedName {0}' to see available versions on the system, and then use the fully qualified name '@{{ModuleName="{0}"; RequiredVersion="Version"}}'.</value>
</data>
<data name="MissingThrottleLimit" xml:space="preserve">
<value>The ThrottleLimit parameter of the foreach statement is missing a value. Supply a throttle limit to the parameter.</value>
<comment>'ThrottleLimit' must not be localized.</comment>
</data>
<data name="ThrottleLimitRequiresParallelFlag" xml:space="preserve">
<value>The ThrottleLimit parameter is only supported on foreach statements that use the Parallel parameter.</value>
<comment>'ThrottleLimit' and 'Parallel' must not be localized.</comment>
</data>
<data name="ConfigurationBodyEmpty" xml:space="preserve">
<value>The configuration block results were null or empty. Verify that configurations were defined in the block.</value>
</data>
<data name="UnexpectedNameForType" xml:space="preserve">
<value>The '{0}' resource can only be used once per configuration, and therefore cannot have a name. Remove '{1}', and then run the script again.</value>
</data>
<data name="IncompletePropertyAssignmentBlock" xml:space="preserve">
<value>There is an incomplete property assignment block in the instance definition.</value>
</data>
<data name="MissingEqualsInPropertyAssignmentBlock" xml:space="preserve">
<value>Missing '=' operator after key in property assignment.</value>
</data>
<data name="DuplicatePropertyInInstanceDefinition" xml:space="preserve">
<value>Duplicate property assignments are not allowed in an instance definition.</value>
</data>
<data name="DuplicateCimClassDefinition" xml:space="preserve">
<value>A second CIM class definition for '{0}' was found while processing the schema file '{1}'. This class was already defined in the file(s) '{2}'. Remove the redundant definition, and then try again.</value>
</data>
<data name="DuplicateKeywordDefinition" xml:space="preserve">
<value>Resource name '{0}' is already being used by another Resource or Configuration.</value>
</data>
<data name="ClassNameNotSameAsDefiningFile" xml:space="preserve">
<value>The class name '{0}' does not match '{1}', the name of the file in which it is defined. Rename either the file name to match the class name or vice versa</value>
</data>
<data name="DuplicateResourceIdInNodeStatement" xml:space="preserve">
<value>A duplicate resource identifier '{0}' was found while processing the specification for node '{1}'. Change the name of this resource so that it is unique within the node specification.</value>
</data>
<data name="UnexpectedTokenInDynamicKeyword" xml:space="preserve">
<value>There is no whitespace between the name and the scriptblock in dynamic keyword '{0}' body statement.</value>
</data>
<data name="EmptyFunctionNameInFunctionDefinitionDictionary" xml:space="preserve">
<value>The key property for an entry in the dictionary of functions to define cannot be empty because the key property is used as the function name. Specify a non-empty string as the value of the key property, and then try the operation again.</value>
</data>
<data name="GetBadlyFormedRequiredResourceId" xml:space="preserve">
<value>The format of the resource reference '{0}' in the Requires list for resource '{1}' is not valid. A required resource name should be in the format '[<typename>]<name>', with alphanumeric characters, spaces, '_', '-', '.' and '\'.</value>
<comment>The capitalized word Requires should not be localized. The words <typename> and <name> should be localized but the <> characters must be preserved.</comment>
</data>
<data name="GetBadlyFormedExclusiveResourceId" xml:space="preserve">
<value>The format of the resource reference '{0}' in the exclusive list for resource '{1}' is not valid. An exclusive resource name should be in the format '<typename>\<name>', with no spaces.</value>
</data>
<data name="GetPullModeNeedConfigurationSource" xml:space="preserve">
<value>The PartialConfiguration '{0}' is set to pull mode which requires a ConfigurationSource property.</value>
</data>
<data name="NullEntryInVariablesDefinitionList" xml:space="preserve">
<value>A null entry was found in the list of variable entries to create in the script block scope. Remove the entry at index {0}, or replace it with a non-null entry, and then try again.</value>
</data>
<data name="NullFunctionBodyInFunctionDefinitionDictionary" xml:space="preserve">
<value>The script block that defines function '{0}' cannot be null or empty. Provide a non-empty script block in the function definition dictionary, and then try the operation again.</value>
</data>
<data name="ImportDscResourceNeedParams" xml:space="preserve">
<value>The syntax of the Import-DscResource dynamic keyword is:
Import-DscResource [-Name <ResourceName(s)>] [-ModuleName <ModuleName(s)>] [-ModuleVersion <ModuleVersion>].
Name : Names of one or more resources to import.
ModuleName : Module names or ModuleSpecification objects of one or more modules to import.
ModuleVersion : Version of module to import. If used, ModuleName must represent only one module by name.</value>
</data>
<data name="ImportDscResourceMultipleModulesNotSupportedWithName" xml:space="preserve">
<value>Import-DscResource dynamic keyword supports only one module when Name parameter is specified.</value>
</data>
<data name="ImportDscResourcePositionalParamsNotSupported" xml:space="preserve">
<value>Positional parameters are not supported for the Import-DscResource dynamic keyword. The syntax of Import-DscResource dynamic keyword is: "Import-DscResource [-Name <ResourceName(s)>] [-ModuleName <ModuleName(s)>] [-ModuleVersion <ModuleVersion>]</value>
</data>
<data name="DscResourcesNotFoundDuringParsing" xml:space="preserve">
<value>Unable to load resource '{0}': Resource not found.</value>
</data>
<data name="ConfigurationNotAllowedInConstrainedLanguage" xml:space="preserve">
<value>Configuration keyword is not allowed in constrainedLanguage mode.</value>
</data>
<data name="InvalidConfigurationName" xml:space="preserve">
<value>The configuration name '{0}' is not valid. Standard names may only contain letters (a-z, A-Z), numbers (0-9), period (.), hyphen (-) and underscore (_). The name may not be null or empty, and should start with a letter.</value>
</data>
<data name="UnsupportedNamedBlockInConfiguration" xml:space="preserve">
<value>Configuration only supports the End block in its body. Begin, Process and DynamicParam blocks are not allowed in a configuration.</value>
</data>
<data name="CimDeserializationError" xml:space="preserve">
<value>Cim deserializer threw an error when deserializing file {0}.</value>
</data>
<data name="InvalidValueForProperty" xml:space="preserve">
<value>'{0}' is not a valid value for property '{1}' on class '{2}'. Please change the value to one of the following strings: {3}.</value>
</data>
<data name="UnsupportedValueForProperty" xml:space="preserve">
<value>At least one of the values '{0}' is not supported or valid for property '{1}' on class '{2}'. Please specify only supported values:
{3}.</value>
</data>
<data name="MissingValueForMandatoryProperty" xml:space="preserve">
<value>Resource '{0}' requires that a value of type '{1}' be provided for property '{2}'.</value>
</data>
<data name="ValueNotInRange" xml:space="preserve">
<value>Property '{0}' of Resource '{1}' has value '{2}' which is not between valid range '{3}' and '{4}'.</value>
</data>
<data name="CannotLoadPowerShellDataFile" xml:space="preserve">
<value>Failed to load the PowerShell data file '{0}' with the following error:
{1}</value>
</data>
<data name="CannotResolvePowerShellDataFilePath" xml:space="preserve">
<value>Cannot resolve the path '{0}' to a single .psd1 file.</value>
</data>
<data name="InvalidPowerShellDataFile" xml:space="preserve">
<value>The PowerShell data file '{0}' is invalid since it cannot be evaluated into a Hashtable object.</value>
</data>
<data name="ConfigurationNotAllowedOnWinPE" xml:space="preserve">
<value>Configuration is not supported on WinPE.</value>
</data>
<data name="EmptyExpressionRequiresANonDefaultMode" xml:space="preserve">
<value>If the expression passed to the Where() operator is null then you must specify a non-Default value for the selection mode argument. Please change the value of the mode argument to a value other than Default and try running your script again.</value>
</data>
<data name="ForEachBadGenericConversionTypeSpecified" xml:space="preserve">
<value>The generic collection type [{0}] passed to ForEach() has too many type arguments. Please change the specified type to be a generic collection with only one type argument then try running your script again.</value>
</data>
<data name="ForEachTypeConversionFailed" xml:space="preserve">
<value>Unable to convert input to the target type [{0}] passed to the ForEach() operator. Please check the specified type and try running your script again.</value>
</data>
<data name="ForEachNotSupportCleanBlock" xml:space="preserve">
<value>Script block with a 'clean' block is not supported by the 'ForEach' method.</value>
</data>
<data name="NumberToReturnMustBeGreaterThanZero" xml:space="preserve">
<value>The 'numberToReturn' value provided to the third argument of the Where() operator must be greater than zero. Please correct the argument's value and try running your script again.</value>
</data>
<data name="RedirectionStreamCanOnlyMergeToOutputStream" xml:space="preserve">
<value>Redirection only allows another stream to be merged with the output stream. Please correct the redirection operation to merge into the output stream then try running your script again.</value>
</data>
<data name="ForEachNonexistentMemberReference" xml:space="preserve">
<value>The ForEach() operator could not find a member '{0}' on the target object. Please verify that the named member exists and then try running your script again.</value>
</data>
<data name="UnsupportedReservedKeyword" xml:space="preserve">
<value>The '{0}' keyword is not supported in this version of the language.</value>
</data>
<data name="UnsupportedReservedProperty" xml:space="preserve">
<value>The '{0}' property is not supported in this version of the language.</value>