-
Notifications
You must be signed in to change notification settings - Fork 338
/
Copy pathStrings.cs
878 lines (731 loc) · 74.8 KB
/
Strings.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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
namespace Microsoft.PowerFx.Core.Localization
{
internal static class TexlStrings
{
public delegate string StringGetter(string locale = null);
public static StringGetter AboutChar = (b) => StringResources.Get("AboutChar", b);
public static StringGetter CharArg1 = (b) => StringResources.Get("CharArg1", b);
public static StringGetter AboutCharT = (b) => StringResources.Get("AboutCharT", b);
public static StringGetter CharTArg1 = (b) => StringResources.Get("CharTArg1", b);
public static StringGetter AboutIf = (b) => StringResources.Get("AboutIf", b);
public static StringGetter IfArgCond = (b) => StringResources.Get("IfArgCond", b);
public static StringGetter IfArgTrueValue = (b) => StringResources.Get("IfArgTrueValue", b);
public static StringGetter IfArgElseValue = (b) => StringResources.Get("IfArgElseValue", b);
public static StringGetter AboutSwitch = (b) => StringResources.Get("AboutSwitch", b);
public static StringGetter SwitchExpression = (b) => StringResources.Get("SwitchExpression", b);
public static StringGetter SwitchDefaultReturn = (b) => StringResources.Get("SwitchDefaultReturn", b);
public static StringGetter SwitchCaseExpr = (b) => StringResources.Get("SwitchCaseExpr", b);
public static StringGetter SwitchCaseArg = (b) => StringResources.Get("SwitchCaseArg", b);
public static StringGetter AboutAnd = (b) => StringResources.Get("AboutAnd", b);
public static StringGetter AboutOr = (b) => StringResources.Get("AboutOr", b);
public static StringGetter AboutNot = (b) => StringResources.Get("AboutNot", b);
public static StringGetter LogicalFuncParam = (b) => StringResources.Get("LogicalFuncParam", b);
public static StringGetter AboutCount = (b) => StringResources.Get("AboutCount", b);
public static StringGetter AboutCountA = (b) => StringResources.Get("AboutCountA", b);
public static StringGetter AboutCountRows = (b) => StringResources.Get("AboutCountRows", b);
public static StringGetter CountArg1 = (b) => StringResources.Get("CountArg1", b);
public static StringGetter AboutCountIf = (b) => StringResources.Get("AboutCountIf", b);
public static StringGetter CountIfArg1 = (b) => StringResources.Get("CountIfArg1", b);
public static StringGetter CountIfArg2 = (b) => StringResources.Get("CountIfArg2", b);
public static StringGetter AboutSet = (b) => StringResources.Get("AboutSet", b);
public static StringGetter SetArg1 = (b) => StringResources.Get("SetArg1", b);
public static StringGetter SetArg2 = (b) => StringResources.Get("SetArg2", b);
public static StringGetter AboutSumT = (b) => StringResources.Get("AboutSumT", b);
public static StringGetter AboutMaxT = (b) => StringResources.Get("AboutMaxT", b);
public static StringGetter AboutMinT = (b) => StringResources.Get("AboutMinT", b);
public static StringGetter AboutAverageT = (b) => StringResources.Get("AboutAverageT", b);
public static StringGetter StatisticalTArg1 = (b) => StringResources.Get("StatisticalTArg1", b);
public static StringGetter StatisticalTArg2 = (b) => StringResources.Get("StatisticalTArg2", b);
public static StringGetter AboutSum = (b) => StringResources.Get("AboutSum", b);
public static StringGetter AboutMax = (b) => StringResources.Get("AboutMax", b);
public static StringGetter AboutMin = (b) => StringResources.Get("AboutMin", b);
public static StringGetter AboutAverage = (b) => StringResources.Get("AboutAverage", b);
public static StringGetter StatisticalArg = (b) => StringResources.Get("StatisticalArg", b);
public static StringGetter AboutAddColumns = (b) => StringResources.Get("AboutAddColumns", b);
public static StringGetter AddColumnsArg1 = (b) => StringResources.Get("AddColumnsArg1", b);
public static StringGetter AddColumnsArg2 = (b) => StringResources.Get("AddColumnsArg2", b);
public static StringGetter AddColumnsArg3 = (b) => StringResources.Get("AddColumnsArg3", b);
public static StringGetter AboutDropColumns = (b) => StringResources.Get("AboutDropColumns", b);
public static StringGetter DropColumnsArg1 = (b) => StringResources.Get("DropColumnsArg1", b);
public static StringGetter DropColumnsArg2 = (b) => StringResources.Get("DropColumnsArg2", b);
public static StringGetter AboutShowColumns = (b) => StringResources.Get("AboutShowColumns", b);
public static StringGetter ShowColumnsArg1 = (b) => StringResources.Get("ShowColumnsArg1", b);
public static StringGetter ShowColumnsArg2 = (b) => StringResources.Get("ShowColumnsArg2", b);
public static StringGetter AboutRenameColumns = (b) => StringResources.Get("AboutRenameColumns", b);
public static StringGetter RenameColumnsArg1 = (b) => StringResources.Get("RenameColumnsArg1", b);
public static StringGetter RenameColumnsArg2 = (b) => StringResources.Get("RenameColumnsArg2", b);
public static StringGetter RenameColumnsArg3 = (b) => StringResources.Get("RenameColumnsArg3", b);
public static StringGetter AboutFilter = (b) => StringResources.Get("AboutFilter", b);
public static StringGetter FilterArg1 = (b) => StringResources.Get("FilterArg1", b);
public static StringGetter FilterArg2 = (b) => StringResources.Get("FilterArg2", b);
public static StringGetter AboutFirst = (b) => StringResources.Get("AboutFirst", b);
public static StringGetter AboutLast = (b) => StringResources.Get("AboutLast", b);
public static StringGetter FirstLastArg1 = (b) => StringResources.Get("FirstLastArg1", b);
public static StringGetter AboutFirstN = (b) => StringResources.Get("AboutFirstN", b);
public static StringGetter AboutLastN = (b) => StringResources.Get("AboutLastN", b);
public static StringGetter FirstLastNArg1 = (b) => StringResources.Get("FirstLastNArg1", b);
public static StringGetter FirstLastNArg2 = (b) => StringResources.Get("FirstLastNArg2", b);
public static StringGetter AboutText = (b) => StringResources.Get("AboutText", b);
public static StringGetter TextArg1 = (b) => StringResources.Get("TextArg1", b);
public static StringGetter TextArg2 = (b) => StringResources.Get("TextArg2", b);
public static StringGetter TextArg3 = (b) => StringResources.Get("TextArg3", b);
public static StringGetter AboutValue = (b) => StringResources.Get("AboutValue", b);
public static StringGetter AboutFloat = (b) => StringResources.Get("AboutFloat", b);
public static StringGetter AboutDecimal = (b) => StringResources.Get("AboutDecimal", b);
public static StringGetter ValueArg1 = (b) => StringResources.Get("ValueArg1", b);
public static StringGetter ValueArg2 = (b) => StringResources.Get("ValueArg2", b);
public static StringGetter AboutBoolean = (b) => StringResources.Get("AboutBoolean", b);
public static StringGetter BooleanArg1 = (b) => StringResources.Get("BooleanArg1", b);
public static StringGetter AboutBooleanT = (b) => StringResources.Get("AboutBooleanT", b);
public static StringGetter BooleanTArg1 = (b) => StringResources.Get("BooleanTArg1", b);
public static StringGetter AboutBooleanN = (b) => StringResources.Get("AboutBooleanN", b);
public static StringGetter BooleanNArg1 = (b) => StringResources.Get("BooleanNArg1", b);
public static StringGetter AboutBooleanNT = (b) => StringResources.Get("AboutBooleanNT", b);
public static StringGetter BooleanNTArg1 = (b) => StringResources.Get("BooleanNTArg1", b);
public static StringGetter AboutBooleanW = (b) => StringResources.Get("AboutBooleanW", b);
public static StringGetter BooleanWArg1 = (b) => StringResources.Get("BooleanWArg1", b);
public static StringGetter AboutBooleanWT = (b) => StringResources.Get("AboutBooleanWT", b);
public static StringGetter BooleanWTArg1 = (b) => StringResources.Get("BooleanWTArg1", b);
public static StringGetter AboutBooleanB = (b) => StringResources.Get("AboutBooleanB", b);
public static StringGetter BooleanBArg1 = (b) => StringResources.Get("BooleanBArg1", b);
public static StringGetter AboutBooleanBT = (b) => StringResources.Get("AboutBooleanBT", b);
public static StringGetter BooleanBTArg1 = (b) => StringResources.Get("BooleanBTArg1", b);
public static StringGetter AboutBooleanL = (b) => StringResources.Get("AboutBooleanL", b);
public static StringGetter BooleanLArg1 = (b) => StringResources.Get("BooleanLArg1", b);
public static StringGetter AboutBooleanLT = (b) => StringResources.Get("AboutBooleanLT", b);
public static StringGetter BooleanLTArg1 = (b) => StringResources.Get("BooleanLTArg1", b);
public static StringGetter AboutConcatenate = (b) => StringResources.Get("AboutConcatenate", b);
public static StringGetter ConcatenateArg1 = (b) => StringResources.Get("ConcatenateArg1", b);
public static StringGetter AboutConcatenateT = (b) => StringResources.Get("AboutConcatenateT", b);
public static StringGetter ConcatenateTArg1 = (b) => StringResources.Get("ConcatenateTArg1", b);
public static StringGetter AboutCoalesce = (b) => StringResources.Get("AboutCoalesce", b);
public static StringGetter CoalesceArg1 = (b) => StringResources.Get("CoalesceArg1", b);
public static StringGetter AboutIfError = (b) => StringResources.Get("AboutIfError", b);
public static StringGetter IfErrorArg1 = (b) => StringResources.Get("IfErrorArg1", b);
public static StringGetter IfErrorArg2 = (b) => StringResources.Get("IfErrorArg2", b);
public static StringGetter AboutError = (b) => StringResources.Get("AboutError", b);
public static StringGetter ErrorArg1 = (b) => StringResources.Get("ErrorArg1", b);
public static StringGetter AboutIsError = (b) => StringResources.Get("AboutIsError", b);
public static StringGetter IsErrorArg = (b) => StringResources.Get("IsErrorArg", b);
public static StringGetter AboutConcat = (b) => StringResources.Get("AboutConcat", b);
public static StringGetter ConcatArg1 = (b) => StringResources.Get("ConcatArg1", b);
public static StringGetter ConcatArg2 = (b) => StringResources.Get("ConcatArg2", b);
public static StringGetter ConcatArg3 = (b) => StringResources.Get("ConcatArg3", b);
public static StringGetter AboutLen = (b) => StringResources.Get("AboutLen", b);
public static StringGetter AboutLenT = (b) => StringResources.Get("AboutLenT", b);
public static StringGetter LenArg1 = (b) => StringResources.Get("LenArg1", b);
public static StringGetter LenTArg1 = (b) => StringResources.Get("LenTArg1", b);
public static StringGetter AboutUpper = (b) => StringResources.Get("AboutUpper", b);
public static StringGetter AboutUpperT = (b) => StringResources.Get("AboutUpperT", b);
public static StringGetter AboutLower = (b) => StringResources.Get("AboutLower", b);
public static StringGetter AboutLowerT = (b) => StringResources.Get("AboutLowerT", b);
public static StringGetter AboutProper = (b) => StringResources.Get("AboutProper", b);
public static StringGetter AboutProperT = (b) => StringResources.Get("AboutProperT", b);
public static StringGetter AboutTrim = (b) => StringResources.Get("AboutTrim", b);
public static StringGetter AboutTrimEnds = (b) => StringResources.Get("AboutTrimEnds", b);
public static StringGetter AboutMid = (b) => StringResources.Get("AboutMid", b);
public static StringGetter AboutMidT = (b) => StringResources.Get("AboutMidT", b);
public static StringGetter StringFuncArg1 = (b) => StringResources.Get("StringFuncArg1", b);
public static StringGetter StringTFuncArg1 = (b) => StringResources.Get("StringTFuncArg1", b);
public static StringGetter StringFuncArg2 = (b) => StringResources.Get("StringFuncArg2", b);
public static StringGetter StringFuncArg3 = (b) => StringResources.Get("StringFuncArg3", b);
public static StringGetter AboutReplace = (b) => StringResources.Get("AboutReplace", b);
public static StringGetter AboutReplaceT = (b) => StringResources.Get("AboutReplaceT", b);
public static StringGetter ReplaceFuncArg1 = (b) => StringResources.Get("ReplaceFuncArg1", b);
public static StringGetter ReplaceFuncArg4 = (b) => StringResources.Get("ReplaceFuncArg4", b);
public static StringGetter AboutSubstitute = (b) => StringResources.Get("AboutSubstitute", b);
public static StringGetter AboutSubstituteT = (b) => StringResources.Get("AboutSubstituteT", b);
public static StringGetter SubstituteFuncArg1 = (b) => StringResources.Get("SubstituteFuncArg1", b);
public static StringGetter SubstituteTFuncArg1 = (b) => StringResources.Get("SubstituteTFuncArg1", b);
public static StringGetter SubstituteFuncArg2 = (b) => StringResources.Get("SubstituteFuncArg2", b);
public static StringGetter SubstituteFuncArg3 = (b) => StringResources.Get("SubstituteFuncArg3", b);
public static StringGetter SubstituteFuncArg4 = (b) => StringResources.Get("SubstituteFuncArg4", b);
public static StringGetter AboutSort = (b) => StringResources.Get("AboutSort", b);
public static StringGetter SortArg1 = (b) => StringResources.Get("SortArg1", b);
public static StringGetter SortArg2 = (b) => StringResources.Get("SortArg2", b);
public static StringGetter SortArg3 = (b) => StringResources.Get("SortArg3", b);
public static StringGetter AboutDistinct = (b) => StringResources.Get("AboutDistinct", b);
public static StringGetter DistinctArg1 = (b) => StringResources.Get("DistinctArg1", b);
public static StringGetter DistinctArg2 = (b) => StringResources.Get("DistinctArg2", b);
public static StringGetter AboutSortByColumns = (b) => StringResources.Get("AboutSortByColumns", b);
public static StringGetter SortByColumnsArg1 = (b) => StringResources.Get("SortByColumnsArg1", b);
public static StringGetter SortByColumnsArg2 = (b) => StringResources.Get("SortByColumnsArg2", b);
public static StringGetter SortByColumnsArg3 = (b) => StringResources.Get("SortByColumnsArg3", b);
public static StringGetter SortByColumnsWithOrderValuesArg3 = (b) => StringResources.Get("SortByColumnsWithOrderValuesArg3", b);
public static StringGetter AboutRand = (b) => StringResources.Get("AboutRand", b);
public static StringGetter AboutRandBetween = (b) => StringResources.Get("AboutRandBetween", b);
public static StringGetter RandBetweenArg1 = (b) => StringResources.Get("RandBetweenArg1", b);
public static StringGetter RandBetweenArg2 = (b) => StringResources.Get("RandBetweenArg2", b);
public static StringGetter AboutNow = (b) => StringResources.Get("AboutNow", b);
public static StringGetter AboutUTCNow = (b) => StringResources.Get("AboutUTCNow", b);
public static StringGetter AboutToday = (b) => StringResources.Get("AboutToday", b);
public static StringGetter AboutUTCToday = (b) => StringResources.Get("AboutUTCToday", b);
public static StringGetter AboutGUID = (b) => StringResources.Get("AboutGUID", b);
public static StringGetter GUIDArg = (b) => StringResources.Get("GUIDArg", b);
public static StringGetter AboutTimeZoneOffset = (b) => StringResources.Get("AboutTimeZoneOffset", b);
public static StringGetter TimeZoneOffsetArg1 = (b) => StringResources.Get("TimeZoneOffsetArg1", b);
public static StringGetter AboutIsToday = (b) => StringResources.Get("AboutIsToday", b);
public static StringGetter IsTodayFuncArg1 = (b) => StringResources.Get("IsTodayFuncArg1", b);
public static StringGetter AboutIsUTCToday = (b) => StringResources.Get("AboutIsUTCToday", b);
public static StringGetter IsUTCTodayFuncArg1 = (b) => StringResources.Get("IsUTCTodayFuncArg1", b);
public static StringGetter AboutRound = (b) => StringResources.Get("AboutRound", b);
public static StringGetter AboutRoundUp = (b) => StringResources.Get("AboutRoundUp", b);
public static StringGetter AboutRoundDown = (b) => StringResources.Get("AboutRoundDown", b);
public static StringGetter RoundArg1 = (b) => StringResources.Get("RoundArg1", b);
public static StringGetter RoundArg2 = (b) => StringResources.Get("RoundArg2", b);
public static StringGetter AboutRoundT = (b) => StringResources.Get("AboutRoundT", b);
public static StringGetter AboutRoundUpT = (b) => StringResources.Get("AboutRoundUpT", b);
public static StringGetter AboutRoundDownT = (b) => StringResources.Get("AboutRoundDownT", b);
public static StringGetter RoundTArg1 = (b) => StringResources.Get("RoundTArg1", b);
public static StringGetter RoundTArg2 = (b) => StringResources.Get("RoundTArg2", b);
public static StringGetter AboutRGBA = (b) => StringResources.Get("AboutRGBA", b);
public static StringGetter RGBAArg1 = (b) => StringResources.Get("RGBAArg1", b);
public static StringGetter RGBAArg2 = (b) => StringResources.Get("RGBAArg2", b);
public static StringGetter RGBAArg3 = (b) => StringResources.Get("RGBAArg3", b);
public static StringGetter RGBAArg4 = (b) => StringResources.Get("RGBAArg4", b);
public static StringGetter AboutColorFade = (b) => StringResources.Get("AboutColorFade", b);
public static StringGetter ColorFadeArg1 = (b) => StringResources.Get("ColorFadeArg1", b);
public static StringGetter ColorFadeArg2 = (b) => StringResources.Get("ColorFadeArg2", b);
public static StringGetter AboutColorFadeT = (b) => StringResources.Get("AboutColorFadeT", b);
public static StringGetter ColorFadeTArg1 = (b) => StringResources.Get("ColorFadeTArg1", b);
public static StringGetter ColorFadeTArg2 = (b) => StringResources.Get("ColorFadeTArg2", b);
public static StringGetter AboutAbs = (b) => StringResources.Get("AboutAbs", b);
public static StringGetter AboutAbsT = (b) => StringResources.Get("AboutAbsT", b);
public static StringGetter AboutSqrt = (b) => StringResources.Get("AboutSqrt", b);
public static StringGetter AboutSqrtT = (b) => StringResources.Get("AboutSqrtT", b);
public static StringGetter MathFuncArg1 = (b) => StringResources.Get("MathFuncArg1", b);
public static StringGetter MathTFuncArg1 = (b) => StringResources.Get("MathTFuncArg1", b);
public static StringGetter MathFuncArg2 = (b) => StringResources.Get("MathFuncArg2", b);
public static StringGetter MathTFuncArg2 = (b) => StringResources.Get("MathTFuncArg2", b);
public static StringGetter AboutInt = (b) => StringResources.Get("AboutInt", b);
public static StringGetter AboutIntT = (b) => StringResources.Get("AboutIntT", b);
public static StringGetter AboutTrunc = (b) => StringResources.Get("AboutTrunc", b);
public static StringGetter TruncArg1 = (b) => StringResources.Get("TruncArg1", b);
public static StringGetter TruncArg2 = (b) => StringResources.Get("TruncArg2", b);
public static StringGetter AboutTruncT = (b) => StringResources.Get("AboutTruncT", b);
public static StringGetter TruncTArg1 = (b) => StringResources.Get("TruncTArg1", b);
public static StringGetter TruncTArg2 = (b) => StringResources.Get("TruncTArg2", b);
public static StringGetter AboutLeft = (b) => StringResources.Get("AboutLeft", b);
public static StringGetter AboutRight = (b) => StringResources.Get("AboutRight", b);
public static StringGetter AboutLeftT = (b) => StringResources.Get("AboutLeftT", b);
public static StringGetter AboutRightT = (b) => StringResources.Get("AboutRightT", b);
public static StringGetter LeftRightArg1 = (b) => StringResources.Get("LeftRightArg1", b);
public static StringGetter LeftRightTArg1 = (b) => StringResources.Get("LeftRightTArg1", b);
public static StringGetter LeftRightArg2 = (b) => StringResources.Get("LeftRightArg2", b);
public static StringGetter AboutIsBlank = (b) => StringResources.Get("AboutIsBlank", b);
public static StringGetter IsBlankArg1 = (b) => StringResources.Get("IsBlankArg1", b);
public static StringGetter AboutIsBlankOrError = (b) => StringResources.Get("AboutIsBlankOrError", b);
public static StringGetter IsBlankOrErrorArg1 = (b) => StringResources.Get("IsBlankOrErrorArg1", b);
public static StringGetter AboutIsEmpty = (b) => StringResources.Get("AboutIsEmpty", b);
public static StringGetter IsEmptyArg1 = (b) => StringResources.Get("IsEmptyArg1", b);
public static StringGetter AboutIsNumeric = (b) => StringResources.Get("AboutIsNumeric", b);
public static StringGetter IsNumericArg1 = (b) => StringResources.Get("IsNumericArg1", b);
public static StringGetter AboutShuffle = (b) => StringResources.Get("AboutShuffle", b);
public static StringGetter ShuffleArg1 = (b) => StringResources.Get("ShuffleArg1", b);
public static StringGetter AboutLookUp = (b) => StringResources.Get("AboutLookUp", b);
public static StringGetter LookUpArg1 = (b) => StringResources.Get("LookUpArg1", b);
public static StringGetter LookUpArg2 = (b) => StringResources.Get("LookUpArg2", b);
public static StringGetter LookUpArg3 = (b) => StringResources.Get("LookUpArg3", b);
public static StringGetter AboutStdevP = (b) => StringResources.Get("AboutStdevP", b);
public static StringGetter AboutStdevPT = (b) => StringResources.Get("AboutStdevPT", b);
public static StringGetter AboutVarP = (b) => StringResources.Get("AboutVarP", b);
public static StringGetter AboutVarPT = (b) => StringResources.Get("AboutVarPT", b);
public static StringGetter AboutSin = (b) => StringResources.Get("AboutSin", b);
public static StringGetter AboutSinT = (b) => StringResources.Get("AboutSinT", b);
public static StringGetter AboutAsin = (b) => StringResources.Get("AboutAsin", b);
public static StringGetter AboutAsinT = (b) => StringResources.Get("AboutAsinT", b);
public static StringGetter AboutCos = (b) => StringResources.Get("AboutCos", b);
public static StringGetter AboutCosT = (b) => StringResources.Get("AboutCosT", b);
public static StringGetter AboutAcos = (b) => StringResources.Get("AboutAcos", b);
public static StringGetter AboutAcosT = (b) => StringResources.Get("AboutAcosT", b);
public static StringGetter AboutTan = (b) => StringResources.Get("AboutTan", b);
public static StringGetter AboutTanT = (b) => StringResources.Get("AboutTanT", b);
public static StringGetter AboutAtan = (b) => StringResources.Get("AboutAtan", b);
public static StringGetter AboutAtanT = (b) => StringResources.Get("AboutAtanT", b);
public static StringGetter AboutCot = (b) => StringResources.Get("AboutCot", b);
public static StringGetter AboutCotT = (b) => StringResources.Get("AboutCotT", b);
public static StringGetter AboutAcot = (b) => StringResources.Get("AboutAcot", b);
public static StringGetter AboutAcotT = (b) => StringResources.Get("AboutAcotT", b);
public static StringGetter AboutLn = (b) => StringResources.Get("AboutLn", b);
public static StringGetter AboutLnT = (b) => StringResources.Get("AboutLnT", b);
public static StringGetter AboutLog = (b) => StringResources.Get("AboutLog", b);
public static StringGetter AboutLogT = (b) => StringResources.Get("AboutLogT", b);
public static StringGetter LogBase = (b) => StringResources.Get("LogBase", b);
public static StringGetter AboutExp = (b) => StringResources.Get("AboutExp", b);
public static StringGetter AboutExpT = (b) => StringResources.Get("AboutExpT", b);
public static StringGetter AboutRadians = (b) => StringResources.Get("AboutRadians", b);
public static StringGetter AboutRadiansT = (b) => StringResources.Get("AboutRadiansT", b);
public static StringGetter AboutDegrees = (b) => StringResources.Get("AboutDegrees", b);
public static StringGetter AboutDegreesT = (b) => StringResources.Get("AboutDegreesT", b);
public static StringGetter AboutAtan2 = (b) => StringResources.Get("AboutAtan2", b);
public static StringGetter AboutAtan2Arg1 = (b) => StringResources.Get("AboutAtan2Arg1", b);
public static StringGetter AboutAtan2Arg2 = (b) => StringResources.Get("AboutAtan2Arg2", b);
public static StringGetter AboutPi = (b) => StringResources.Get("AboutPi", b);
public static StringGetter AboutDate = (b) => StringResources.Get("AboutDate", b);
public static StringGetter DateArg1 = (b) => StringResources.Get("DateArg1", b);
public static StringGetter DateArg2 = (b) => StringResources.Get("DateArg2", b);
public static StringGetter DateArg3 = (b) => StringResources.Get("DateArg3", b);
public static StringGetter AboutTime = (b) => StringResources.Get("AboutTime", b);
public static StringGetter TimeArg1 = (b) => StringResources.Get("TimeArg1", b);
public static StringGetter TimeArg2 = (b) => StringResources.Get("TimeArg2", b);
public static StringGetter TimeArg3 = (b) => StringResources.Get("TimeArg3", b);
public static StringGetter TimeArg4 = (b) => StringResources.Get("TimeArg4", b);
public static StringGetter AboutYear = (b) => StringResources.Get("AboutYear", b);
public static StringGetter YearArg1 = (b) => StringResources.Get("YearArg1", b);
public static StringGetter AboutMonth = (b) => StringResources.Get("AboutMonth", b);
public static StringGetter MonthArg1 = (b) => StringResources.Get("MonthArg1", b);
public static StringGetter AboutDay = (b) => StringResources.Get("AboutDay", b);
public static StringGetter DayArg1 = (b) => StringResources.Get("DayArg1", b);
public static StringGetter AboutHour = (b) => StringResources.Get("AboutHour", b);
public static StringGetter HourArg1 = (b) => StringResources.Get("HourArg1", b);
public static StringGetter AboutMinute = (b) => StringResources.Get("AboutMinute", b);
public static StringGetter MinuteArg1 = (b) => StringResources.Get("MinuteArg1", b);
public static StringGetter AboutSecond = (b) => StringResources.Get("AboutSecond", b);
public static StringGetter SecondArg1 = (b) => StringResources.Get("SecondArg1", b);
public static StringGetter AboutWeekday = (b) => StringResources.Get("AboutWeekday", b);
public static StringGetter WeekdayArg1 = (b) => StringResources.Get("WeekdayArg1", b);
public static StringGetter WeekdayArg2 = (b) => StringResources.Get("WeekdayArg2", b);
public static StringGetter AboutWeekNum = (b) => StringResources.Get("AboutWeekNum", b);
public static StringGetter WeekNumArg1 = (b) => StringResources.Get("WeekNumArg1", b);
public static StringGetter WeekNumArg2 = (b) => StringResources.Get("WeekNumArg2", b);
public static StringGetter AboutISOWeekNum = (b) => StringResources.Get("AboutISOWeekNum", b);
public static StringGetter ISOWeekNumArg1 = (b) => StringResources.Get("ISOWeekNumArg1", b);
public static StringGetter AboutEDate = (b) => StringResources.Get("AboutEDate", b);
public static StringGetter EDateArg1 = (b) => StringResources.Get("EDateArg1", b);
public static StringGetter EDateArg2 = (b) => StringResources.Get("EDateArg2", b);
public static StringGetter AboutEOMonth = (b) => StringResources.Get("AboutEOMonth", b);
public static StringGetter EOMonthArg1 = (b) => StringResources.Get("EOMonthArg1", b);
public static StringGetter EOMonthArg2 = (b) => StringResources.Get("EOMonthArg2", b);
public static StringGetter AboutCalendar__MonthsLong = (b) => StringResources.Get("AboutCalendar__MonthsLong", b);
public static StringGetter AboutCalendar__MonthsShort = (b) => StringResources.Get("AboutCalendar__MonthsShort", b);
public static StringGetter AboutCalendar__WeekdaysLong = (b) => StringResources.Get("AboutCalendar__WeekdaysLong", b);
public static StringGetter AboutCalendar__WeekdaysShort = (b) => StringResources.Get("AboutCalendar__WeekdaysShort", b);
public static StringGetter AboutClock__AmPm = (b) => StringResources.Get("AboutClock__AmPm", b);
public static StringGetter AboutClock__AmPmShort = (b) => StringResources.Get("AboutClock__AmPmShort", b);
public static StringGetter AboutClock__IsClock24 = (b) => StringResources.Get("AboutClock__IsClock24", b);
public static StringGetter AboutDateTime = (b) => StringResources.Get("AboutDateTime", b);
public static StringGetter AboutDateValue = (b) => StringResources.Get("AboutDateValue", b);
public static StringGetter DateValueArg1 = (b) => StringResources.Get("DateValueArg1", b);
public static StringGetter DateValueArg2 = (b) => StringResources.Get("DateValueArg2", b);
public static StringGetter AboutTimeValue = (b) => StringResources.Get("AboutTimeValue", b);
public static StringGetter TimeValueArg1 = (b) => StringResources.Get("TimeValueArg1", b);
public static StringGetter TimeValueArg2 = (b) => StringResources.Get("TimeValueArg2", b);
public static StringGetter SupportedDateTimeLanguageCodes = (b) => StringResources.Get("SupportedDateTimeLanguageCodes", b);
public static StringGetter AboutDateTimeValue = (b) => StringResources.Get("AboutDateTimeValue", b);
public static StringGetter DateTimeValueArg1 = (b) => StringResources.Get("DateTimeValueArg1", b);
public static StringGetter DateTimeValueArg2 = (b) => StringResources.Get("DateTimeValueArg2", b);
public static StringGetter AboutDateAdd = (b) => StringResources.Get("AboutDateAdd", b);
public static StringGetter DateAddArg1 = (b) => StringResources.Get("DateAddArg1", b);
public static StringGetter DateAddArg2 = (b) => StringResources.Get("DateAddArg2", b);
public static StringGetter DateAddArg3 = (b) => StringResources.Get("DateAddArg3", b);
public static StringGetter AboutWorkday = (b) => StringResources.Get("AboutWorkday", b);
public static StringGetter WorkdayArg1 = (b) => StringResources.Get("WorkdayArg1", b);
public static StringGetter WorkdayArg2 = (b) => StringResources.Get("WorkdayArg2", b);
public static StringGetter WorkdayArg3 = (b) => StringResources.Get("WorkdayArg3", b);
public static StringGetter AboutDateAddT = (b) => StringResources.Get("AboutDateAddT", b);
public static StringGetter DateAddTArg1 = (b) => StringResources.Get("DateAddTArg1", b);
public static StringGetter DateAddTArg2 = (b) => StringResources.Get("DateAddTArg2", b);
public static StringGetter DateAddTArg3 = (b) => StringResources.Get("DateAddTArg3", b);
public static StringGetter AboutDateDiff = (b) => StringResources.Get("AboutDateDiff", b);
public static StringGetter DateDiffArg1 = (b) => StringResources.Get("DateDiffArg1", b);
public static StringGetter DateDiffArg2 = (b) => StringResources.Get("DateDiffArg2", b);
public static StringGetter DateDiffArg3 = (b) => StringResources.Get("DateDiffArg3", b);
public static StringGetter AboutDateDiffT = (b) => StringResources.Get("AboutDateDiffT", b);
public static StringGetter DateDiffTArg1 = (b) => StringResources.Get("DateDiffTArg1", b);
public static StringGetter DateDiffTArg2 = (b) => StringResources.Get("DateDiffTArg2", b);
public static StringGetter DateDiffTArg3 = (b) => StringResources.Get("DateDiffTArg3", b);
public static StringGetter AboutFind = (b) => StringResources.Get("AboutFind", b);
public static StringGetter FindArg1 = (b) => StringResources.Get("FindArg1", b);
public static StringGetter FindArg2 = (b) => StringResources.Get("FindArg2", b);
public static StringGetter FindArg3 = (b) => StringResources.Get("FindArg3", b);
public static StringGetter AboutFindT = (b) => StringResources.Get("AboutFindT", b);
public static StringGetter FindTArg1 = (b) => StringResources.Get("FindTArg1", b);
public static StringGetter FindTArg2 = (b) => StringResources.Get("FindTArg2", b);
public static StringGetter FindTArg3 = (b) => StringResources.Get("FindTArg3", b);
public static StringGetter AboutColorValue = (b) => StringResources.Get("AboutColorValue", b);
public static StringGetter ColorValueArg1 = (b) => StringResources.Get("ColorValueArg1", b);
public static StringGetter AboutTable = (b) => StringResources.Get("AboutTable", b);
public static StringGetter TableArg1 = (b) => StringResources.Get("TableArg1", b);
public static StringGetter AboutMod = (b) => StringResources.Get("AboutMod", b);
public static StringGetter ModFuncArg1 = (b) => StringResources.Get("ModFuncArg1", b);
public static StringGetter ModFuncArg2 = (b) => StringResources.Get("ModFuncArg2", b);
public static StringGetter AboutModT = (b) => StringResources.Get("AboutModT", b);
public static StringGetter ModTFuncArg1 = (b) => StringResources.Get("ModTFuncArg1", b);
public static StringGetter ModTFuncArg2 = (b) => StringResources.Get("ModTFuncArg2", b);
public static StringGetter AboutForAll = (b) => StringResources.Get("AboutForAll", b);
public static StringGetter ForAllArg1 = (b) => StringResources.Get("ForAllArg1", b);
public static StringGetter ForAllArg2 = (b) => StringResources.Get("ForAllArg2", b);
public static StringGetter AboutPower = (b) => StringResources.Get("AboutPower", b);
public static StringGetter PowerFuncArg1 = (b) => StringResources.Get("PowerFuncArg1", b);
public static StringGetter PowerFuncArg2 = (b) => StringResources.Get("PowerFuncArg2", b);
public static StringGetter AboutPowerT = (b) => StringResources.Get("AboutPowerT", b);
public static StringGetter PowerTFuncArg1 = (b) => StringResources.Get("PowerTFuncArg1", b);
public static StringGetter PowerTFuncArg2 = (b) => StringResources.Get("PowerTFuncArg2", b);
public static StringGetter AboutStartsWith = (b) => StringResources.Get("AboutStartsWith", b);
public static StringGetter StartsWithArg1 = (b) => StringResources.Get("StartsWithArg1", b);
public static StringGetter StartsWithArg2 = (b) => StringResources.Get("StartsWithArg2", b);
public static StringGetter AboutEndsWith = (b) => StringResources.Get("AboutEndsWith", b);
public static StringGetter EndsWithArg1 = (b) => StringResources.Get("EndsWithArg1", b);
public static StringGetter EndsWithArg2 = (b) => StringResources.Get("EndsWithArg2", b);
public static StringGetter AboutBlank = (b) => StringResources.Get("AboutBlank", b);
public static StringGetter AboutSplit = (b) => StringResources.Get("AboutSplit", b);
public static StringGetter SplitArg1 = (b) => StringResources.Get("SplitArg1", b);
public static StringGetter SplitArg2 = (b) => StringResources.Get("SplitArg2", b);
public static StringGetter AboutColumnNames = (b) => StringResources.Get("AboutColumnNames", b);
public static StringGetter ColumnNamesArg1 = (b) => StringResources.Get("ColumnNamesArg1", b);
public static StringGetter AboutColumn = (b) => StringResources.Get("AboutColumn", b);
public static StringGetter ColumnArg1 = (b) => StringResources.Get("ColumnArg1", b);
public static StringGetter ColumnArg2 = (b) => StringResources.Get("ColumnArg2", b);
public static StringGetter AboutIsType = (b) => StringResources.Get("AboutIsType", b);
public static StringGetter IsTypeArg1 = (b) => StringResources.Get("IsTypeArg1", b);
public static StringGetter IsTypeArg2 = (b) => StringResources.Get("IsTypeArg2", b);
public static StringGetter AboutIsTypeUO = (b) => StringResources.Get("AboutIsTypeUO", b);
public static StringGetter IsTypeUOArg1 = (b) => StringResources.Get("IsTypeUOArg1", b);
public static StringGetter IsTypeUOArg2 = (b) => StringResources.Get("IsTypeUOArg2", b);
public static StringGetter AboutAsType = (b) => StringResources.Get("AboutAsType", b);
public static StringGetter AsTypeArg1 = (b) => StringResources.Get("AsTypeArg1", b);
public static StringGetter AsTypeArg2 = (b) => StringResources.Get("AsTypeArg2", b);
public static StringGetter AboutAsTypeUO = (b) => StringResources.Get("AboutAsTypeUO", b);
public static StringGetter AsTypeUOArg1 = (b) => StringResources.Get("AsTypeUOArg1", b);
public static StringGetter AsTypeUOArg2 = (b) => StringResources.Get("AsTypeUOArg2", b);
public static StringGetter AboutWith = (b) => StringResources.Get("AboutWith", b);
public static StringGetter WithArg1 = (b) => StringResources.Get("WithArg1", b);
public static StringGetter WithArg2 = (b) => StringResources.Get("WithArg2", b);
public static StringGetter AboutSequence = (b) => StringResources.Get("AboutSequence", b);
public static StringGetter SequenceArg1 = (b) => StringResources.Get("SequenceArg1", b);
public static StringGetter SequenceArg2 = (b) => StringResources.Get("SequenceArg2", b);
public static StringGetter SequenceArg3 = (b) => StringResources.Get("SequenceArg3", b);
public static StringGetter AboutParseJSON = (b) => StringResources.Get("AboutParseJSON", b);
public static StringGetter ParseJSONArg1 = (b) => StringResources.Get("ParseJSONArg1", b);
public static StringGetter AboutTypedParseJSON = (b) => StringResources.Get("AboutTypedParseJSON", b);
public static StringGetter TypedParseJSONArg1 = (b) => StringResources.Get("TypedParseJSONArg1", b);
public static StringGetter TypedParseJSONArg2 = (b) => StringResources.Get("TypedParseJSONArg2", b);
public static StringGetter AboutFileInfo = (b) => StringResources.Get("AboutFileInfo", b);
public static StringGetter FileInfoArg1 = (b) => StringResources.Get("FileInfoArg1", b);
public static StringGetter AboutIndex = (b) => StringResources.Get("AboutIndex", b);
public static StringGetter IndexArg1 = (b) => StringResources.Get("IndexArg1", b);
public static StringGetter IndexArg2 = (b) => StringResources.Get("IndexArg2", b);
public static StringGetter AboutPatch = (b) => StringResources.Get("AboutPatch", b);
public static StringGetter AboutPatchSingleRecord = (b) => StringResources.Get("AboutPatchSingleRecord", b);
public static StringGetter AboutPatchAggregate = (b) => StringResources.Get("AboutPatchAggregate", b);
public static StringGetter AboutPatchAggregateSingleTable = (b) => StringResources.Get("AboutPatchAggregateSingleTable", b);
public static StringGetter AboutPatchRecord = (b) => StringResources.Get("AboutPatchRecord", b);
public static StringGetter PatchArg_Source = (b) => StringResources.Get("PatchArg_Source", b);
public static StringGetter PatchArg_Record = (b) => StringResources.Get("PatchArg_Record", b);
public static StringGetter PatchArg_Update = (b) => StringResources.Get("PatchArg_Update", b);
public static StringGetter PatchArg_Rows = (b) => StringResources.Get("PatchArg_Rows", b);
public static StringGetter PatchArg_Updates = (b) => StringResources.Get("PatchArg_Updates", b);
public static StringGetter AboutCollect = (b) => StringResources.Get("AboutCollect", b);
public static StringGetter CollectArg1 = (b) => StringResources.Get("CollectArg1", b);
public static StringGetter CollectArg2 = (b) => StringResources.Get("CollectArg2", b);
public static StringGetter CollectItemArg = (b) => StringResources.Get("CollectItemArg", b);
public static StringGetter AboutCollect_data_source = (b) => StringResources.Get("AboutCollect_data_source", b);
public static StringGetter AboutCollect_item = (b) => StringResources.Get("AboutCollect_item", b);
public static StringGetter AboutClearCollect = (b) => StringResources.Get("AboutClearCollect", b);
public static StringGetter AboutRemove = (b) => StringResources.Get("AboutRemove", b);
public static StringGetter RemoveDataSourceArg = (b) => StringResources.Get("RemoveDataSourceArg", b);
public static StringGetter RemoveRecordsArg = (b) => StringResources.Get("RemoveRecordsArg", b);
public static StringGetter AboutDec2Hex = (b) => StringResources.Get("AboutDec2Hex", b);
public static StringGetter Dec2HexArg1 = (b) => StringResources.Get("Dec2HexArg1", b);
public static StringGetter Dec2HexArg2 = (b) => StringResources.Get("Dec2HexArg2", b);
public static StringGetter AboutDec2HexT = (b) => StringResources.Get("AboutDec2HexT", b);
public static StringGetter Dec2HexTArg1 = (b) => StringResources.Get("Dec2HexTArg1", b);
public static StringGetter Dec2HexTArg2 = (b) => StringResources.Get("Dec2HexTArg2", b);
public static StringGetter AboutHex2Dec = (b) => StringResources.Get("AboutHex2Dec", b);
public static StringGetter Hex2DecArg1 = (b) => StringResources.Get("Hex2DecArg1", b);
public static StringGetter AboutHex2DecT = (b) => StringResources.Get("AboutHex2DecT", b);
public static StringGetter Hex2DecTArg1 = (b) => StringResources.Get("Hex2DecTArg1", b);
public static StringGetter AboutOptionSetInfo = (b) => StringResources.Get("AboutOptionSetInfo", b);
public static StringGetter AboutOptionSetInfoArg1 = (b) => StringResources.Get("AboutOptionSetInfoArg1", b);
public static StringGetter AboutLanguage = (b) => StringResources.Get("AboutLanguage", b);
public static StringGetter AboutEncodeUrl = (b) => StringResources.Get("AboutEncodeUrl", b);
public static StringGetter EncodeUrlArg1 = (b) => StringResources.Get("EncodeUrlArg1", b);
public static StringGetter AboutEncodeHTML = (b) => StringResources.Get("AboutEncodeHTML", b);
public static StringGetter EncodeHTMLArg1 = (b) => StringResources.Get("EncodeHTMLArg1", b);
public static StringGetter AboutPlainText = (b) => StringResources.Get("AboutPlainText", b);
public static StringGetter PlainTextArg1 = (b) => StringResources.Get("PlainTextArg1", b);
public static StringGetter AboutIsMatch = (b) => StringResources.Get("AboutIsMatch", b);
public static StringGetter AboutMatch = (b) => StringResources.Get("AboutMatch", b);
public static StringGetter AboutMatchAll = (b) => StringResources.Get("AboutMatchAll", b);
public static StringGetter IsMatchArg1 = (b) => StringResources.Get("IsMatchArg1", b);
public static StringGetter IsMatchArg2 = (b) => StringResources.Get("IsMatchArg2", b);
public static StringGetter IsMatchArg3 = (b) => StringResources.Get("IsMatchArg3", b);
public static StringGetter MatchArg1 = (b) => StringResources.Get("MatchArg1", b);
public static StringGetter MatchArg2 = (b) => StringResources.Get("MatchArg2", b);
public static StringGetter MatchArg3 = (b) => StringResources.Get("MatchArg3", b);
public static StringGetter AboutRefresh = (b) => StringResources.Get("AboutRefresh", b);
public static StringGetter RefreshArg1 = (b) => StringResources.Get("RefreshArg1", b);
public static StringGetter AboutJSON = (b) => StringResources.Get("AboutJSON", b);
public static StringGetter JSONArg1 = (b) => StringResources.Get("JSONArg1", b);
public static StringGetter JSONArg2 = (b) => StringResources.Get("JSONArg2", b);
public static StringGetter AboutTrace = (b) => StringResources.Get("AboutTrace", b);
public static StringGetter TraceArg1 = (b) => StringResources.Get("TraceArg1", b);
public static StringGetter TraceArg2 = (b) => StringResources.Get("TraceArg2", b);
public static StringGetter TraceArg3 = (b) => StringResources.Get("TraceArg3", b);
public static StringGetter TraceArg4 = (b) => StringResources.Get("TraceArg4", b);
public static StringGetter AboutSearch = (b) => StringResources.Get("AboutSearch", b);
public static StringGetter SearchArg1 = (b) => StringResources.Get("SearchArg1", b);
public static StringGetter SearchArg2 = (b) => StringResources.Get("SearchArg2", b);
public static StringGetter SearchArg3 = (b) => StringResources.Get("SearchArg3", b);
public static StringGetter None = (b) => StringResources.Get("None", b);
public static StringGetter Text = (b) => StringResources.Get("Text", b);
public static StringGetter Logical = (b) => StringResources.Get("Logical", b);
public static StringGetter Table = (b) => StringResources.Get("Table", b);
public static StringGetter Behavior = (b) => StringResources.Get("Behavior", b);
public static StringGetter DateTime = (b) => StringResources.Get("DateTime", b);
public static StringGetter MathAndStat = (b) => StringResources.Get("MathAndStat", b);
public static StringGetter Information = (b) => StringResources.Get("Information", b);
public static StringGetter Color = (b) => StringResources.Get("Color", b);
public static StringGetter REST = (b) => StringResources.Get("REST", b);
public static StringGetter Component = (b) => StringResources.Get("Component", b);
public static StringGetter UserDefined = (b) => StringResources.Get("UserDefined", b);
public static StringGetter AboutUniChar = (b) => StringResources.Get("AboutUniChar", b);
public static StringGetter UniCharArg1 = (b) => StringResources.Get("UniCharArg1", b);
public static StringGetter AboutUniCharT = (b) => StringResources.Get("AboutUniCharT", b);
public static StringGetter UniCharTArg1 = (b) => StringResources.Get("UniCharTArg1", b);
public static StringGetter AboutSummarize = (b) => StringResources.Get("AboutSummarize", b);
public static StringGetter SummarizeArg1 = (b) => StringResources.Get("SummarizeArg1", b);
public static StringGetter SummarizeArg2 = (b) => StringResources.Get("SummarizeArg2", b);
public static StringGetter SummarizeArg3 = (b) => StringResources.Get("SummarizeArg3", b);
public static StringGetter AboutClear = (b) => StringResources.Get("AboutClear", b);
public static StringGetter ClearArg1 = (b) => StringResources.Get("SummarizeArg1", b);
public static StringGetter AboutJoin = (b) => StringResources.Get("AboutJoin", b);
public static StringGetter JoinArg1 = (b) => StringResources.Get("JoinArg1", b);
public static StringGetter JoinArg2 = (b) => StringResources.Get("JoinArg2", b);
public static StringGetter JoinArg3 = (b) => StringResources.Get("JoinArg3", b);
public static StringGetter JoinArg4 = (b) => StringResources.Get("JoinArg4", b);
public static StringGetter JoinArg5 = (b) => StringResources.Get("JoinArg5", b);
// Previously, errors were listed here in the form of a StringGetter, which would be evaluated to fetch
// an error message to pass to the BaseError class constructor. We are switching to passing the message key itself
// to the BaseError class, and the BaseError itself is responsible for fetching the resource. (This allows the
// BaseError class to contain logic to fetch auxillary resources, such as HowToFix and WhyToFix messages.)
//
// Any new additions here should be of type ErrorResourceKey and contain the value of the resource key.
public static ErrorResourceKey ErrUnSupportedComponentBehaviorInvocation = new ErrorResourceKey("ErrUnSupportedComponentBehaviorInvocation");
public static ErrorResourceKey ErrUnSupportedComponentDataPropertyAccess = new ErrorResourceKey("ErrUnSupportedComponentDataPropertyAccess");
public static ErrorResourceKey ErrUnSupportedComponentFunctionPropertyReferenceNonFunctionPropertyAccess = new ErrorResourceKey("ErrUnSupportedComponentFunctionPropertyReferenceNonFunctionPropertyAccess");
public static ErrorResourceKey ErrOperandExpected = new ErrorResourceKey("ErrOperandExpected");
public static ErrorResourceKey ErrBadToken = new ErrorResourceKey("ErrBadToken");
public static ErrorResourceKey UnexpectedCharacterToken = new ErrorResourceKey("UnexpectedCharacterToken");
public static ErrorResourceKey ErrMissingEndOfBlockComment = new ErrorResourceKey("ErrMissingEndOfBlockComment");
public static ErrorResourceKey ErrExpectedFound_Ex_Fnd = new ErrorResourceKey("ErrExpectedFound_Ex_Fnd");
public static ErrorResourceKey ErrInvalidName = new ErrorResourceKey("ErrInvalidName");
public static ErrorResourceKey ErrInvalidIdentifier = new ErrorResourceKey("ErrInvalidIdentifier");
public static ErrorResourceKey ErrInvalidPropertyAccess = new ErrorResourceKey("ErrInvalidPropertyAccess");
public static ErrorResourceKey ErrInvalidPropertyReference = new ErrorResourceKey("ErrInvalidPropertyReference");
public static ErrorResourceKey ErrInvalidParentUse = new ErrorResourceKey("ErrInvalidParentUse");
public static ErrorResourceKey ErrTooManyUps = new ErrorResourceKey("ErrTooManyUps");
public static ErrorResourceKey ErrRuleNestedTooDeeply = new ErrorResourceKey("ErrRuleNestedTooDeeply");
public static ErrorResourceKey ErrInvalidDot = new ErrorResourceKey("ErrInvalidDot");
public static ErrorResourceKey ErrUnknownFunction = new ErrorResourceKey("ErrUnknownFunction");
public static ErrorResourceKey ErrUnimplementedFunction = new ErrorResourceKey("ErrUnimplementedFunction");
public static ErrorResourceKey ErrKnownTypeHelperFunction = new ErrorResourceKey("ErrKnownTypeHelperFunction");
public static ErrorResourceKey ErrUnknownNamespaceFunction = new ErrorResourceKey("ErrUnknownNamespaceFunction");
public static ErrorResourceKey ErrBadArity = new ErrorResourceKey("ErrBadArity");
public static ErrorResourceKey ErrBadArityRange = new ErrorResourceKey("ErrBadArityRange");
public static ErrorResourceKey ErrBadArityMinimum = new ErrorResourceKey("ErrBadArityMinimum");
public static ErrorResourceKey ErrBadArityOdd = new ErrorResourceKey("ErrBadArityOdd");
public static ErrorResourceKey ErrBadArityEven = new ErrorResourceKey("ErrBadArityEven");
public static ErrorResourceKey ErrBadType = new ErrorResourceKey("ErrBadType");
public static ErrorResourceKey ErrBadType_Type = new ErrorResourceKey("ErrBadType_Type");
public static ErrorResourceKey ErrBadOperatorTypes = new ErrorResourceKey("ErrBadOperatorTypes");
public static ErrorResourceKey ErrGuidStrictComparison = new ErrorResourceKey("ErrGuidStrictComparison");
public static ErrorResourceKey ErrBadType_ExpectedType = new ErrorResourceKey("ErrBadType_ExpectedType");
public static ErrorResourceKey ErrBadType_ExpectedTypesCSV = new ErrorResourceKey("ErrBadType_ExpectedTypesCSV");
public static ErrorResourceKey ErrBadType_ExpectedType_ProvidedType = new ErrorResourceKey("ErrBadType_ExpectedType_ProvidedType");
public static ErrorResourceKey ErrBadType_VoidExpression = new ErrorResourceKey("ErrBadType_VoidExpression");
public static ErrorResourceKey ErrBadSchema_ExpectedType = new ErrorResourceKey("ErrBadSchema_ExpectedType");
public static ErrorResourceKey ErrInvalidArgs_Func = new ErrorResourceKey("ErrInvalidArgs_Func");
public static ErrorResourceKey ErrNeedTable_Func = new ErrorResourceKey("ErrNeedTable_Func");
public static ErrorResourceKey ErrNeedTableCol_Func = new ErrorResourceKey("ErrNeedTableCol_Func");
public static ErrorResourceKey ErrNotAccessibleInCurrentContext = new ErrorResourceKey("ErrNotAccessibleInCurrentContext");
public static ErrorResourceKey ErrInternalControlInInputProperty = new ErrorResourceKey("ErrInternalControlInInputProperty");
public static ErrorResourceKey ErrColumnNotAccessibleInCurrentContext = new ErrorResourceKey("ErrColumnNotAccessibleInCurrentContext");
public static ErrorResourceKey WrnRowScopeOneToNExpandNumberOfCalls = new ErrorResourceKey("WrnRowScopeOneToNExpandNumberOfCalls");
public static ErrorResourceKey ErrInvalidSchemaNeedTypeCol_Col = new ErrorResourceKey("ErrInvalidSchemaNeedTypeCol_Col");
public static ErrorResourceKey ErrInvalidSchemaNeedCol = new ErrorResourceKey("ErrInvalidSchemaNeedCol");
public static ErrorResourceKey ErrNeedRecord = new ErrorResourceKey("ErrNeedRecord");
public static ErrorResourceKey ErrNeedRecordOrTable = new ErrorResourceKey("ErrNeedRecordOrTable");
public static ErrorResourceKey ErrAutoRefreshNotAllowed = new ErrorResourceKey("ErrAutoRefreshNotAllowed");
public static ErrorResourceKey ErrIncompatibleRecord = new ErrorResourceKey("ErrIncompatibleRecord");
public static ErrorResourceKey ErrNeedRecord_Arg = new ErrorResourceKey("ErrNeedRecord_Arg");
public static ErrorResourceKey ErrNeedRecord_Func = new ErrorResourceKey("ErrNeedRecord_Func");
public static ErrorResourceKey ErrNeedValidVariableName_Arg = new ErrorResourceKey("ErrNeedValidVariableName_Arg");
public static ErrorResourceKey ErrOperatorExpected = new ErrorResourceKey("ErrOperatorExpected");
public static ErrorResourceKey ErrNumberExpected = new ErrorResourceKey("ErrNumberExpected");
public static ErrorResourceKey ErrNumberTooLarge = new ErrorResourceKey("ErrNumberTooLarge");
public static ErrorResourceKey ErrReservedKeyword = new ErrorResourceKey("ErrReservedKeyword");
public static ErrorResourceKey ErrTextTooLarge = new ErrorResourceKey("ErrTextTooLarge");
public static ErrorResourceKey ErrTextFormatTooLarge = new ErrorResourceKey("ErrTextFormatTooLarge");
public static ErrorResourceKey ErrTextInvalidFormat = new ErrorResourceKey("ErrTextInvalidFormat");
public static ErrorResourceKey ErrTextInvalidArgDateTime = new ErrorResourceKey("ErrTextInvalidArgDateTime");
public static ErrorResourceKey ErrBooleanExpected = new ErrorResourceKey("ErrBooleanExpected");
public static ErrorResourceKey ErrOnlyOneViewExpected = new ErrorResourceKey("ErrOnlyOneViewExpected");
public static ErrorResourceKey ErrViewFromCurrentTableExpected = new ErrorResourceKey("ErrViewFromCurrentTableExpected");
public static ErrorResourceKey ErrColonExpected = new ErrorResourceKey("ErrColonExpected");
public static ErrorResourceKey ErrExpectedDataSourceRestriction = new ErrorResourceKey("ErrExpectedDataSourceRestriction");
public static ErrorResourceKey ErrBehaviorPropertyExpected = new ErrorResourceKey("ErrBehaviorPropertyExpected");
public static ErrorResourceKey ErrBehaviorFunctionInDataUDF = new ErrorResourceKey("ErrBehaviorFunctionInDataUDF");
public static ErrorResourceKey ErrTestPropertyExpected = new ErrorResourceKey("ErrTestPropertyExpected");
public static ErrorResourceKey ErrStringExpected = new ErrorResourceKey("ErrStringExpected");
public static ErrorResourceKey ErrDateExpected = new ErrorResourceKey("ErrDateExpected");
public static ErrorResourceKey ErrCannotCoerce_SourceType_TargetType = new ErrorResourceKey("ErrCannotCoerce_SourceType_TargetType");
public static ErrorResourceKey ErrNumberOrStringExpected = new ErrorResourceKey("ErrNumberOrStringExpected");
public static ErrorResourceKey ErrClosingBracketExpected = new ErrorResourceKey("ErrClosingBracketExpected");
public static ErrorResourceKey ErrClosingIdentifierExpected = new ErrorResourceKey("ErrClosingIdentifierExpected");
public static ErrorResourceKey ErrEmptyInvalidIdentifier = new ErrorResourceKey("ErrEmptyInvalidIdentifier");
public static ErrorResourceKey ErrIncompatibleTypes = new ErrorResourceKey("ErrIncompatibleTypes");
public static ErrorResourceKey ErrIncompatibleTypesForEquality_Left_Right = new ErrorResourceKey("ErrIncompatibleTypesForEquality_Left_Right");
public static ErrorResourceKey ErrUnOrderedTypeForComparison_Type = new ErrorResourceKey("ErrUnOrderedTypeForComparison_Type");
public static ErrorResourceKey ErrServiceFunctionUnknownOptionalParam_Name = new ErrorResourceKey("ErrServiceFunctionUnknownOptionalParam_Name");
public static ErrorResourceKey ErrColumnTypeMismatch_ColName_ExpectedType_ActualType = new ErrorResourceKey("ErrColumnTypeMismatch_ColName_ExpectedType_ActualType");
public static ErrorResourceKey ErrColumnMissing_ColName_ExpectedType = new ErrorResourceKey("ErrColumnMissing_ColName_ExpectedType");
public static ErrorResourceKey ErrTableDoesNotAcceptThisType = new ErrorResourceKey("ErrTableDoesNotAcceptThisType");
public static ErrorResourceKey ErrRecordDoesNotAcceptThisType = new ErrorResourceKey("ErrRecordDoesNotAcceptThisType");
public static ErrorResourceKey ErrTypeError = new ErrorResourceKey("ErrTypeError");
public static ErrorResourceKey ErrTypeError_Ex1_Ex2_Found = new ErrorResourceKey("ErrTypeError_Ex1_Ex2_Found");
public static ErrorResourceKey ErrTypeError_Arg_Expected_Found = new ErrorResourceKey("ErrTypeError_Arg_Expected_Found");
public static ErrorResourceKey ErrTypeError_WrongType = new ErrorResourceKey("ErrTypeError_WrongType");
public static ErrorResourceKey ErrTypeErrorRecordIncompatibleWithSource = new ErrorResourceKey("ErrTypeErrorRecordIncompatibleWithSource");
public static ErrorResourceKey ErrExpectedStringLiteralArg_Name = new ErrorResourceKey("ErrExpectedStringLiteralArg_Name");
public static ErrorResourceKey ErrExpectedIdentifierArg_Name = new ErrorResourceKey("ErrExpectedIdentifierArg_Name");
public static ErrorResourceKey ErrArgNotAValidIdentifier_Name = new ErrorResourceKey("ErrArgNotAValidIdentifier_Name");
public static ErrorResourceKey ErrColExists_Name = new ErrorResourceKey("ErrColExists_Name");
public static ErrorResourceKey ErrColConflict_Name = new ErrorResourceKey("ErrColConflict_Name");
public static ErrorResourceKey ErrColDNE_Name = new ErrorResourceKey("ErrColDNE_Name");
public static ErrorResourceKey ErrColumnDoesNotExist_Name_Similar = new ErrorResourceKey("ErrColumnDoesNotExist_Name_Similar");
public static ErrorResourceKey ErrSortIncorrectOrder = new ErrorResourceKey("ErrSortIncorrectOrder");
public static ErrorResourceKey ErrSortWrongType = new ErrorResourceKey("ErrSortWrongType");
public static ErrorResourceKey ErrDistinctWrongType = new ErrorResourceKey("ErrDistinctWrongType");
public static ErrorResourceKey ErrFunctionDoesNotAcceptThisType_Function_Expected = new ErrorResourceKey("ErrFunctionDoesNotAcceptThisType_Function_Expected");
public static ErrorResourceKey ErrIncorrectFormat_Func = new ErrorResourceKey("ErrIncorrectFormat_Func");
public static ErrorResourceKey ErrAsyncLambda = new ErrorResourceKey("ErrAsyncLambda");
public static ErrorResourceKey ErrMultipleValuesForField_Name = new ErrorResourceKey("ErrMultipleValuesForField_Name");
public static ErrorResourceKey ErrScopeModificationLambda = new ErrorResourceKey("ErrScopeModificationLambda");
public static ErrorResourceKey ErrFunctionDisallowedWithinNondeterministicOperationOrder = new ErrorResourceKey("ErrFunctionDisallowedWithinNondeterministicOperationOrder");
public static ErrorResourceKey ErrBadRecordFieldType_FieldName_ExpectedType = new ErrorResourceKey("ErrBadRecordFieldType_FieldName_ExpectedType");
public static ErrorResourceKey ErrAsTypeAndIsTypeExpectConnectedDataSource = new ErrorResourceKey("ErrAsTypeAndIsTypeExpectConnectedDataSource");
public static ErrorResourceKey ErrInvalidControlReference = new ErrorResourceKey("ErrInvalidControlReference");
public static ErrorResourceKey ErrInvalidStringInterpolation = new ErrorResourceKey("ErrInvalidStringInterpolation");
public static ErrorResourceKey ErrEmptyIsland = new ErrorResourceKey("ErrEmptyIsland");
public static ErrorResourceKey ErrDeprecated = new ErrorResourceKey("ErrDeprecated");
public static ErrorResourceKey ErrUnsupportedFunction = new ErrorResourceKey("ErrUnsupportedFunction");
public static ErrorResourceKey ErrInvalidFunction = new ErrorResourceKey("ErrInvalidFunction");
public static ErrorResourceKey ErrUntypedObjectScope = new ErrorResourceKey("ErrUntypedObjectScope");
public static ErrorResourceKey ErrDataSourceCannotBeRefreshed = new ErrorResourceKey("ErrDataSourceCannotBeRefreshed");
public static ErrorResourceKey ErrNeedAgg = new ErrorResourceKey("ErrNeedAgg");
public static ErrorResourceKey ErrFilterFunctionBahaviorAsPredicate = new ErrorResourceKey("ErrFilterFunctionBahaviorAsPredicate");
public static ErrorResourceKey ErrFilterFunction_OnlyTwoArgs = new ErrorResourceKey("ErrFilterFunction_OnlyTwoArgs");
public static ErrorResourceKey ErrSetVariableWithRelationshipNotAllowTable = new ErrorResourceKey("ErrSetVariableWithRelationshipNotAllowTable");
public static ErrorResourceKey ErrSetVariableWithRelationshipNotAllowRecord = new ErrorResourceKey("ErrSetVariableWithRelationshipNotAllowRecord");
public static ErrorResourceKey ErrDecimalRequiresPowerFxV1 = new ErrorResourceKey("ErrDecimalNeedsPowerFxV1");
public static ErrorResourceKey ErrInvalidRegEx = new ErrorResourceKey("ErrInvalidRegEx");
public static ErrorResourceKey ErrVariableRegEx = new ErrorResourceKey("ErrVariableRegEx");
public static ErrorResourceKey InfoRegExCaptureNameHidesPredefinedFullMatchField = new ErrorResourceKey("InfoRegExCaptureNameHidesPredefinedFullMatchField");
public static ErrorResourceKey InfoRegExCaptureNameHidesPredefinedSubMatchesField = new ErrorResourceKey("InfoRegExCaptureNameHidesPredefinedSubMatchesField");
public static ErrorResourceKey InfoRegExCaptureNameHidesPredefinedStartMatchField = new ErrorResourceKey("InfoRegExCaptureNameHidesPredefinedStartMatchField");
public static ErrorResourceKey ErrErrorIrrelevantField = new ErrorResourceKey("ErrErrorIrrelevantField");
public static ErrorResourceKey ErrAsNotInContext = new ErrorResourceKey("ErrAsNotInContext");
public static ErrorResourceKey ErrValueMustBeFullyQualified = new ErrorResourceKey("ErrValueMustBeFullyQualified");
public static ErrorResourceKey WarnColumnNameSpecifiedMultipleTimes_Name = new ErrorResourceKey("WarnColumnNameSpecifiedMultipleTimes_Name");
public static ErrorResourceKey WarnLiteralPredicate = new ErrorResourceKey("WarnLiteralPredicate");
public static ErrorResourceKey WarnDynamicMetadata = new ErrorResourceKey("WarnDynamicMetadata");
public static ErrorResourceKey WarnDeferredType = new ErrorResourceKey("WarnDeferredType");
public static ErrorResourceKey ErrColRenamedTwice_Name = new ErrorResourceKey("ErrColRenamedTwice_Name");
public static ErrorResourceKey WrnCountRowsMayReturnCachedValue = new ErrorResourceKey("WrnCountRowsMayReturnCachedValue");
public static StringGetter InfoMessage = (b) => StringResources.Get("InfoMessage", b);
public static StringGetter InfoNode_Node = (b) => StringResources.Get("InfoNode_Node", b);
public static StringGetter InfoTok_Tok = (b) => StringResources.Get("InfoTok_Tok", b);
public static StringGetter FormatSpan_Min_Lim = (b) => StringResources.Get("FormatSpan_Min_Lim", b);
public static StringGetter FormatErrorSeparator = (b) => StringResources.Get("FormatErrorSeparator", b);
public static ErrorResourceKey SuggestRemoteExecutionHint = new ErrorResourceKey("SuggestRemoteExecutionHint");
public static ErrorResourceKey SuggestRemoteExecutionHint_InOpRhs = new ErrorResourceKey("SuggestRemoteExecutionHint_InOpRhs");
public static ErrorResourceKey SuggestRemoteExecutionHint_StringMatchSecondParam = new ErrorResourceKey("SuggestRemoteExecutionHint_StringMatchSecondParam");
public static ErrorResourceKey SuggestRemoteExecutionHint_InOpInvalidColumn = new ErrorResourceKey("SuggestRemoteExecutionHint_InOpInvalidColumn");
public static ErrorResourceKey SuggestRemoteExecutionHint_NF = new ErrorResourceKey("SuggestRemoteExecutionHint_NF");
public static ErrorResourceKey SuggestRemoteExecutionHint_UDF = new ErrorResourceKey("SuggestRemoteExecutionHint_UDF");
public static ErrorResourceKey OpNotSupportedByColumnSuggestionMessage_OpNotSupportedByColumn = new ErrorResourceKey("SuggestRemoteExecutionHint_OpNotSupportedByColumn");
public static ErrorResourceKey OpNotSupportedByServiceSuggestionMessage_OpNotSupportedByService = new ErrorResourceKey("SuggestRemoteExecutionHint_OpNotSupportedByService");
public static ErrorResourceKey OpNotSupportedByClientSuggestionMessage_OpNotSupportedByClient = new ErrorResourceKey("SuggestRemoteExecutionHint_OpNotSupportedByClient");
public static ErrorResourceKey ErrNamedFormula_MissingSemicolon = new ErrorResourceKey("ErrNamedFormula_MissingSemicolon");
public static ErrorResourceKey ErrNamedFormula_MissingValue = new ErrorResourceKey("ErrNamedFormula_MissingValue");
public static ErrorResourceKey ErrNamedType_MissingTypeExpression = new ErrorResourceKey("ErrNamedType_MissingTypeExpression");
public static ErrorResourceKey ErrUDF_MissingFunctionBody = new ErrorResourceKey("ErrUDF_MissingFunctionBody");
public static ErrorResourceKey ErrNamedFormula_AlreadyDefined = new ErrorResourceKey("ErrNamedFormula_AlreadyDefined");
public static ErrorResourceKey ErrorResource_NameConflict = new ErrorResourceKey("ErrorResource_NameConflict");
public static ErrorResourceKey ErrUDF_FunctionAlreadyDefined = new ErrorResourceKey("ErrUDF_FunctionAlreadyDefined");
public static ErrorResourceKey ErrUDF_FunctionNameRestricted = new ErrorResourceKey("ErrUDF_FunctionNameRestricted");
public static ErrorResourceKey ErrUDF_DuplicateParameter = new ErrorResourceKey("ErrUDF_DuplicateParameter");
public static ErrorResourceKey ErrUDF_UnknownType = new ErrorResourceKey("ErrUDF_UnknownType");
public static ErrorResourceKey ErrUDF_ReturnTypeDoesNotMatch = new ErrorResourceKey("ErrUDF_ReturnTypeDoesNotMatch");
public static ErrorResourceKey ErrUDF_TooManyParameters = new ErrorResourceKey("ErrUDF_TooManyParameters");
public static ErrorResourceKey ErrUDF_MissingReturnType = new ErrorResourceKey("ErrUDF_MissingReturnType");
public static ErrorResourceKey ErrUDF_MissingParamType = new ErrorResourceKey("ErrUDF_MissingParamType");
public static ErrorResourceKey ErrUDF_InvalidReturnType = new ErrorResourceKey("ErrUDF_InvalidReturnType");
public static ErrorResourceKey ErrUDF_InvalidParamType = new ErrorResourceKey("ErrUDF_InvalidParamType");
public static ErrorResourceKey WrnUDF_ShadowingBuiltInFunction = new ErrorResourceKey("WrnUDF_ShadowingBuiltInFunction");
public static ErrorResourceKey ErrTypeFunction_InvalidTypeExpression = new ErrorResourceKey("ErrTypeFunction_InvalidTypeExpression");
public static ErrorResourceKey ErrTypeFunction_UnsupportedUsage = new ErrorResourceKey("ErrTypeFunction_UnsupportedUsage");
public static ErrorResourceKey ErrNamedType_InvalidCycles = new ErrorResourceKey("ErrNamedType_InvalidCycles");
public static ErrorResourceKey ErrNamedType_InvalidTypeDeclaration = new ErrorResourceKey("ErrNamedType_InvalidTypeDeclaration");
public static ErrorResourceKey ErrNamedType_InvalidTypeName = new ErrorResourceKey("ErrNamedType_InvalidTypeName");
public static ErrorResourceKey ErrNamedType_TypeAlreadyDefined = new ErrorResourceKey("ErrNamedType_TypeAlreadyDefined");
public static ErrorResourceKey ErrRecordContainsInvalidFields_Arg = new ErrorResourceKey("ErrRecordContainsInvalidFields_Arg");
// ErrorResourceKey for creating an error from an arbitrary string message. The key resolves to "{0}", meaning
// that a single string arg can be supplied representing the entire text of the error.
public static ErrorResourceKey ErrGeneralError = new ErrorResourceKey("ErrGeneralError");
public static ErrorResourceKey ErrRemoveAllArg = new ErrorResourceKey("ErrRemoveAllArg");
public static ErrorResourceKey OptionSetOptionNotSupported = new ErrorResourceKey("OptionSetOptionNotSupported");
public static ErrorResourceKey InvalidCast = new ErrorResourceKey("InvalidCast");
public static ErrorResourceKey WrnSortByColumnsNonConstantColumnName = new ErrorResourceKey("WrnSortByColumnsNonConstantColumnName");
public static ErrorResourceKey WrnDelegationTableNotSupported = new ErrorResourceKey("WrnDelegationTableNotSupported");
public static ErrorResourceKey WrnDelegationPredicate = new ErrorResourceKey("WrnDelegationPredicate");
public static ErrorResourceKey WrnDelegationOnlyPrimaryKeyField = new ErrorResourceKey("WrnDelegationOnlyPrimaryKeyField");
public static ErrorResourceKey WrnDelegationRefersThisRecord = new ErrorResourceKey("WrnDelegationRefersThisRecord");
public static ErrorResourceKey WrnDelegationBehaviorFunction = new ErrorResourceKey("WrnDelegationBehaviorFunction");
public static ErrorResourceKey WrnSetExpandableType = new ErrorResourceKey("WrnSetExpandableType");
public static ErrorResourceKey ErrNotSupportedFormat_Func = new ErrorResourceKey("ErrNotSupportedFormat_Func");
public static ErrorResourceKey ErrExpectedRVExtraFields = new ErrorResourceKey("ErrExpectedRVExtraFields");
public static ErrorResourceKey ErrExpectedRVMissingFields = new ErrorResourceKey("ErrExpectedRVMissingFields");
public static ErrorResourceKey ErrExpectedRVFieldNotFound = new ErrorResourceKey("ErrExpectedRVFieldNotFound");
public static ErrorResourceKey ErrExpectedRVFieldTypeMismatch = new ErrorResourceKey("ErrExpectedRVFieldTypeMismatch");
public static ErrorResourceKey ErrExpectedRVCannotCoerceType = new ErrorResourceKey("ErrExpectedRVCannotCoerceType");
public static ErrorResourceKey ErrExpectedRVTypeMismatch = new ErrorResourceKey("ErrExpectedRVTypeMismatch");
public static ErrorResourceKey ErrFunctionArg2ParamMustBeConstant = new ErrorResourceKey("ErrFunctionArg2ParamMustBeConstant");
public static ErrorResourceKey ErrJSONArg1UnsupportedType = new ErrorResourceKey("ErrJSONArg1UnsupportedType");
public static ErrorResourceKey ErrJSONArg1ContainsUnsupportedMedia = new ErrorResourceKey("ErrJSONArg1ContainsUnsupportedMedia");
public static ErrorResourceKey ErrJSONArg2IncompatibleOptions = new ErrorResourceKey("ErrJSONArg2IncompatibleOptions");
public static ErrorResourceKey ErrJSONArg2UnsupportedOption = new ErrorResourceKey("ErrJSONArg2UnsupportedOption");
public static ErrorResourceKey ErrJSONArg1UnsupportedNestedType = new ErrorResourceKey("ErrJSONArg1UnsupportedNestedType");
public static ErrorResourceKey ErrJSONArg1UnsupportedTypeWithNonBehavioral = new ErrorResourceKey("ErrJSONArg1UnsupportedTypeWithNonBehavioral");
public static ErrorResourceKey ErrTraceInvalidCustomRecordType = new ErrorResourceKey("ErrTraceInvalidCustomRecordType");
public static ErrorResourceKey ErrSearchWrongType = new ErrorResourceKey("ErrSearchWrongType");
public static ErrorResourceKey ErrSearchWrongTableType = new ErrorResourceKey("ErrSearchWrongTableType");
public static ErrorResourceKey ErrDeprecatedDotUseShowColumns = new ErrorResourceKey("ErrDeprecatedDotUseShowColumns");
public static ErrorResourceKey IntellisenseAiDisclaimer = new ErrorResourceKey("IntellisenseAiDisclaimer");
public static ErrorResourceKey ErrOnlyPartialAttribute = new ErrorResourceKey("ErrOnlyPartialAttribute");
public static ErrorResourceKey ErrOperationDoesntMatch = new ErrorResourceKey("ErrOperationDoesntMatch");
public static ErrorResourceKey ErrUnknownPartialOp = new ErrorResourceKey("ErrUnknownPartialOp");
public static ErrorResourceKey ErrTruncatedArgWarning = new ErrorResourceKey("ErrTruncatedArgWarning");
public static ErrorResourceKey ErrNeedPrimitive = new ErrorResourceKey("ErrNeedPrimitive");
public static ErrorResourceKey ErrSummarizeNoGroupBy = new ErrorResourceKey("ErrSummarizeNoGroupBy");
public static ErrorResourceKey ErrSummarizeInvalidArg = new ErrorResourceKey("ErrSummarizeInvalidArg");
public static ErrorResourceKey ErrSummarizeThisGroupColumnName = new ErrorResourceKey("ErrSummarizeThisGroupColumnName");
public static ErrorResourceKey ErrSummarizeDataSourceContainsThisGroupColumn = new ErrorResourceKey("ErrSummarizeDataSourceContainsThisGroupColumn");
public static ErrorResourceKey ErrSummarizeDataSourceScopeNotSupported = new ErrorResourceKey("ErrSummarizeDataSourceScopeNotSupported");
public static ErrorResourceKey ErrInvalidDataSourceForFunction = new ErrorResourceKey("ErrInvalidDataSourceForFunction");
public static ErrorResourceKey ErrInvalidArgumentExpectedType = new ErrorResourceKey("ErrInvalidArgumentExpectedType");
public static ErrorResourceKey ErrUnsupportedTypeInTypeArgument = new ErrorResourceKey("ErrUnsupportedTypeInTypeArgument");
public static ErrorResourceKey ErrReachedMaxJsonDepth = new ErrorResourceKey("ErrReachedMaxJsonDepth");
public static ErrorResourceKey ErrReachedMaxJsonLength = new ErrorResourceKey("ErrReachedMaxJsonLength");
public static ErrorResourceKey ErrUserDefinedTypesDisabled = new ErrorResourceKey("ErrUserDefinedTypesDisabled");
public static ErrorResourceKey ErrUserDefinedTypeIncorrectSyntax = new ErrorResourceKey("ErrUserDefinedTypeIncorrectSyntax");
public static ErrorResourceKey ErrJoinCantAddRename = new ErrorResourceKey("ErrJoinCantAddRename");
public static ErrorResourceKey ErrJoinNotPlainJoinTypeEnum = new ErrorResourceKey("ErrJoinNotPlainJoinTypeEnum");
public static ErrorResourceKey ErrJoinArgIsNotAsNode = new ErrorResourceKey("ErrJoinArgIsNotAsNode");
public static ErrorResourceKey ErrJoinAtLeastOneRigthRecordField = new ErrorResourceKey("ErrJoinAtLeastOneRigthRecordField");
public static ErrorResourceKey ErrJoinDottedNameleft = new ErrorResourceKey("ErrJoinDottedNameleft");
}
}