-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathUnityResources.cs
1202 lines (1191 loc) · 36.7 KB
/
UnityResources.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Copyright (c) 2016 Denis Zykov, GameDevWare.com
This a part of "C# Eval()" Unity Asset - https://www.assetstore.unity3d.com/en/#!/content/56706
THIS SOFTWARE IS DISTRIBUTED "AS-IS" WITHOUT ANY WARRANTIES, CONDITIONS AND
REPRESENTATIONS WHETHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE
IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, MERCHANTABLE QUALITY,
FITNESS FOR A PARTICULAR PURPOSE, DURABILITY, NON-INFRINGEMENT, PERFORMANCE
AND THOSE ARISING BY STATUTE OR FROM CUSTOM OR USAGE OF TRADE OR COURSE OF DEALING.
This source code is distributed via Unity Asset Store,
to use it in your project you should accept Terms of Service and EULA
https://unity3d.com/ru/legal/as_terms
*/
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version: 4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
// ReSharper disable All
namespace GameDevWare.Dynamic.Expressions.Properties
{
using System;
using System.Collections.Generic;
/// <summary>
/// Localization resource for current assembly
/// </summary>
public static class Resources
{
private static readonly string[] supportedLanguages = new string[] { "en" };
[ThreadStatic]
private static int currentLanguageIdx;
/// <summary>
/// List of supported localization languages. <seealso cref="CurrentLanguage"/>.
/// </summary>
public static string[] SupportedLanguages { get { return (string[])supportedLanguages.Clone(); } }
/// <summary>
/// Current selected language of localization.
/// </summary>
public static string CurrentLanguage
{
get { return supportedLanguages[currentLanguageIdx]; }
set
{
if (value == null) throw new ArgumentNullException("value");
var langIndex = Array.IndexOf(supportedLanguages, value);
if (langIndex < 0) throw new ArgumentException("Unsupported language '" + value + "'.", "value");
currentLanguageIdx = langIndex;
}
}
/// <summary>
/// Return all localization strings by current <see cref="CurrentLanguage"/>.
/// </summary>
public static Dictionary<string, string> All
{
get
{
return new Dictionary<string, string>(75)
{
{ "EXCEPTION_BIND_UNABLETOBINDINDEXER", EXCEPTION_BIND_UNABLETOBINDINDEXER },
{ "EXCEPTION_BIND_VALIDDELEGATETYPEISEXPECTED", EXCEPTION_BIND_VALIDDELEGATETYPEISEXPECTED },
{ "EXCEPTION_BIND_INVALIDLAMBDAPARAMETERTYPE", EXCEPTION_BIND_INVALIDLAMBDAPARAMETERTYPE },
{ "EXCEPTION_BIND_MISSINGMETHOD", EXCEPTION_BIND_MISSINGMETHOD },
{ "EXCEPTION_BIND_UNABLETOINVOKENONDELEG", EXCEPTION_BIND_UNABLETOINVOKENONDELEG },
{ "EXCEPTION_BIND_CLOSEDDELEGATETYPEISEXPECTED", EXCEPTION_BIND_CLOSEDDELEGATETYPEISEXPECTED },
{ "EXCEPTION_PARSER_OPREQUIRESOPERAND", EXCEPTION_PARSER_OPREQUIRESOPERAND },
{ "EXCEPTION_BIND_UNABLETORESOLVENAME", EXCEPTION_BIND_UNABLETORESOLVENAME },
{ "EXCEPTION_EXECUTION_EXPRESSIONGIVESNULLRESULT", EXCEPTION_EXECUTION_EXPRESSIONGIVESNULLRESULT },
{ "EXCEPTION_BOUNDEXPR_CANTCONVERTARG", EXCEPTION_BOUNDEXPR_CANTCONVERTARG },
{ "EXCEPTION_BOUNDEXPR_WRONGNUMPARAMS", EXCEPTION_BOUNDEXPR_WRONGNUMPARAMS },
{ "EXCEPTION_PARSER_UNEXPECTEDTOKENWHILEBUILDINGTREE", EXCEPTION_PARSER_UNEXPECTEDTOKENWHILEBUILDINGTREE },
{ "EXCEPTION_PARSER_BINARYOPREQOPERAND", EXCEPTION_PARSER_BINARYOPREQOPERAND },
{ "EXCEPTION_COMPIL_UNKNOWNEXPRTYPE", EXCEPTION_COMPIL_UNKNOWNEXPRTYPE },
{ "EXCEPTION_BIND_UNABLETOBINDCONSTRUCTOR", EXCEPTION_BIND_UNABLETOBINDCONSTRUCTOR },
{ "EXCEPTION_PARSER_INVALIDCHILDTYPESOFNODE", EXCEPTION_PARSER_INVALIDCHILDTYPESOFNODE },
{ "EXCEPTION_BIND_UNABLETORESOLVEMEMBERONTYPE", EXCEPTION_BIND_UNABLETORESOLVEMEMBERONTYPE },
{ "EXCEPTION_PARSER_OPREQUIRESSECONDOPERAND", EXCEPTION_PARSER_OPREQUIRESSECONDOPERAND },
{ "EXCEPTION_BIND_MISSINGATTRONNODE", EXCEPTION_BIND_MISSINGATTRONNODE },
{ "EXCEPTION_PARSER_UNEXPECTEDTOKENWHILEOTHEREXPECTED", EXCEPTION_PARSER_UNEXPECTEDTOKENWHILEOTHEREXPECTED },
{ "EXCEPTION_BIND_UNABLETOBINDDELEG", EXCEPTION_BIND_UNABLETOBINDDELEG },
{ "EXCEPTION_COMPIL_NOBINARYOPONTYPE", EXCEPTION_COMPIL_NOBINARYOPONTYPE },
{ "EXCEPTION_COMPIL_UNKNOWNBINARYEXPRTYPE", EXCEPTION_COMPIL_UNKNOWNBINARYEXPRTYPE },
{ "EXCEPTION_BIND_FAILEDTOBINDGENERICARGUMENTSTOTYPE", EXCEPTION_BIND_FAILEDTOBINDGENERICARGUMENTSTOTYPE },
{ "EXCEPTION_TOKENIZER_INVALIDCHARLITERAL", EXCEPTION_TOKENIZER_INVALIDCHARLITERAL },
{ "EXCEPTION_PARSER_TYPENAMEEXPECTED", EXCEPTION_PARSER_TYPENAMEEXPECTED },
{ "EXCEPTION_BIND_RENDERFAILED", EXCEPTION_BIND_RENDERFAILED },
{ "EXCEPTION_BIND_UNABLETORESOLVETYPEMULTIPLE", EXCEPTION_BIND_UNABLETORESOLVETYPEMULTIPLE },
{ "EXCEPTION_BOUNDEXPR_BODYRESULTDOESNTMATCHRESULTTYPE", EXCEPTION_BOUNDEXPR_BODYRESULTDOESNTMATCHRESULTTYPE },
{ "EXCEPTION_TOKENIZER_UNEXPECTEDSYMBOL", EXCEPTION_TOKENIZER_UNEXPECTEDSYMBOL },
{ "EXCEPTION_PARSER_INVALIDCHILDCOUNTOFNODE", EXCEPTION_PARSER_INVALIDCHILDCOUNTOFNODE },
{ "EXCEPTION_COMPIL_ONLYFUNCLAMBDASISSUPPORTED", EXCEPTION_COMPIL_ONLYFUNCLAMBDASISSUPPORTED },
{ "EXCEPTION_UNBOUNDEXPR_INVALIDPARAMCOUNT", EXCEPTION_UNBOUNDEXPR_INVALIDPARAMCOUNT },
{ "EXCEPTION_PARSER_UNEXPECTEDTOKEN", EXCEPTION_PARSER_UNEXPECTEDTOKEN },
{ "EXCEPTION_COMPIL_UNKNOWNUNARYEXPRTYPE", EXCEPTION_COMPIL_UNKNOWNUNARYEXPRTYPE },
{ "EXCEPTION_COMPIL_NOCONVERTIONBETWEENTYPES", EXCEPTION_COMPIL_NOCONVERTIONBETWEENTYPES },
{ "EXCEPTION_BIND_RESTRICTED_MEMBER_INVOCATION", EXCEPTION_BIND_RESTRICTED_MEMBER_INVOCATION },
{ "EXCEPTION_LIST_LISTISEMPTY", EXCEPTION_LIST_LISTISEMPTY },
{ "EXCEPTION_BIND_CALLMEMBERISNOTMETHOD", EXCEPTION_BIND_CALLMEMBERISNOTMETHOD },
{ "EXCEPTION_BIND_FAILEDTOBINDMEMBERBINDINGS", EXCEPTION_BIND_FAILEDTOBINDMEMBERBINDINGS },
{ "EXCEPTION_BIND_UNABLETOBINDMETHOD", EXCEPTION_BIND_UNABLETOBINDMETHOD },
{ "EXCEPTION_UNBOUNDEXPR_DUPLICATEPARAMNAME", EXCEPTION_UNBOUNDEXPR_DUPLICATEPARAMNAME },
{ "EXCEPTION_PARSER_COLONISEXPRECTED", EXCEPTION_PARSER_COLONISEXPRECTED },
{ "EXCEPTION_BIND_UNABLETOBINDCALL", EXCEPTION_BIND_UNABLETOBINDCALL },
{ "EXCEPTION_BIND_UNABLETOCREATEEXPRWITHPARAMS", EXCEPTION_BIND_UNABLETOCREATEEXPRWITHPARAMS },
{ "EXCEPTION_BIND_UNKNOWNEXPRTYPE", EXCEPTION_BIND_UNKNOWNEXPRTYPE },
{ "EXCEPTION_BIND_FAILEDTOBINDNEWEXPRESSION", EXCEPTION_BIND_FAILEDTOBINDNEWEXPRESSION },
{ "EXCEPTION_BIND_FAILEDTOBIND", EXCEPTION_BIND_FAILEDTOBIND },
{ "EXCEPTION_BIND_UNABLETOBINDMEMBER", EXCEPTION_BIND_UNABLETOBINDMEMBER },
{ "EXCEPTION_BIND_MISSINGMETHODPARAMETER", EXCEPTION_BIND_MISSINGMETHODPARAMETER },
{ "EXCEPTION_BIND_MISSINGORWRONGARGUMENT", EXCEPTION_BIND_MISSINGORWRONGARGUMENT },
{ "EXCEPTION_BIND_MEMBERISNOTMETHOD", EXCEPTION_BIND_MEMBERISNOTMETHOD },
{ "EXCEPTION_PARSER_UNEXPECTEDTOKENTYPE", EXCEPTION_PARSER_UNEXPECTEDTOKENTYPE },
{ "EXCEPTION_EXECUTION_CANTDONULLVALUE", EXCEPTION_EXECUTION_CANTDONULLVALUE },
{ "EXCEPTION_STRINGUTILS_UNEXPECTEDESCAPESEQ", EXCEPTION_STRINGUTILS_UNEXPECTEDESCAPESEQ },
{ "EXCEPTION_PARSER_MISSING_OPERATOR", EXCEPTION_PARSER_MISSING_OPERATOR },
{ "EXCEPTION_BIND_INVALIDLAMBDABODYTYPE", EXCEPTION_BIND_INVALIDLAMBDABODYTYPE },
{ "EXCEPTION_BIND_FAILEDTOBINDLISTINITIALIZERS", EXCEPTION_BIND_FAILEDTOBINDLISTINITIALIZERS },
{ "EXCEPTION_BIND_INVALIDCHARLITERAL", EXCEPTION_BIND_INVALIDCHARLITERAL },
{ "EXCEPTION_PARSER_EXPRESSIONISEMPTY", EXCEPTION_PARSER_EXPRESSIONISEMPTY },
{ "EXCEPTION_BIND_UNABLEREMAPPARAMETERSCOUNTMISMATCH", EXCEPTION_BIND_UNABLEREMAPPARAMETERSCOUNTMISMATCH },
{ "EXCEPTION_BIND_UNABLETORESOLVETYPE", EXCEPTION_BIND_UNABLETORESOLVETYPE },
{ "EXCEPTION_UNBOUNDEXPR_TYPESDOESNTMATCHNAMES", EXCEPTION_UNBOUNDEXPR_TYPESDOESNTMATCHNAMES },
{ "EXCEPTION_BOUNDEXPR_WRONGPARAMETERTYPE", EXCEPTION_BOUNDEXPR_WRONGPARAMETERTYPE },
{ "EXCEPTION_BIND_UNABLETOAPPLYNULLCONDITIONALOPERATORONTYPEREF", EXCEPTION_BIND_UNABLETOAPPLYNULLCONDITIONALOPERATORONTYPEREF },
{ "EXCEPTION_PARSER_UNARYOPREQOPERAND", EXCEPTION_PARSER_UNARYOPREQOPERAND },
{ "EXCEPTION_BOUNDEXPR_ARGSDOESNTMATCHPARAMS", EXCEPTION_BOUNDEXPR_ARGSDOESNTMATCHPARAMS },
{ "EXCEPTION_BIND_UNABLETORESOLVEMETHODONTYPE", EXCEPTION_BIND_UNABLETORESOLVEMETHODONTYPE },
{ "EXCEPTION_BIND_INVALIDLAMBDAARGUMENTS", EXCEPTION_BIND_INVALIDLAMBDAARGUMENTS },
{ "EXCEPTION_PARSER_TERNARYOPREQOPERAND", EXCEPTION_PARSER_TERNARYOPREQOPERAND },
{ "EXCEPTION_COMPIL_NOUNARYOPONTYPE", EXCEPTION_COMPIL_NOUNARYOPONTYPE },
{ "EXCEPTION_BIND_INVALIDCONSTANTEXPRESSION", EXCEPTION_BIND_INVALIDCONSTANTEXPRESSION },
{ "EXCEPTION_BIND_TOOMANYARGUMENTS", EXCEPTION_BIND_TOOMANYARGUMENTS },
{ "EXCEPTION_EXECUTION_MULTIPARAMETERINDEXERNOTSUPPORTED", EXCEPTION_EXECUTION_MULTIPARAMETERINDEXERNOTSUPPORTED },
{ "EXCEPTION_EXECUTION_INVALIDMEMBERFOREXPRESSION", EXCEPTION_EXECUTION_INVALIDMEMBERFOREXPRESSION },
};
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_UNABLETOBINDINDEXER
/// </summary>
public static string EXCEPTION_BIND_UNABLETOBINDINDEXER
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unable to find indexing property on type '{0}' accepting specified arguments.";
default: return "EXCEPTION_BIND_UNABLETOBINDINDEXER";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_VALIDDELEGATETYPEISEXPECTED
/// </summary>
public static string EXCEPTION_BIND_VALIDDELEGATETYPEISEXPECTED
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Invalid lambda type '{0}'. A valid delegate type should be specified in lambda type declaration.";
default: return "EXCEPTION_BIND_VALIDDELEGATETYPEISEXPECTED";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_INVALIDLAMBDAPARAMETERTYPE
/// </summary>
public static string EXCEPTION_BIND_INVALIDLAMBDAPARAMETERTYPE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Invalid lambda parameter type '{0}' while '{1}' is expected.";
default: return "EXCEPTION_BIND_INVALIDLAMBDAPARAMETERTYPE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_MISSINGMETHOD
/// </summary>
public static string EXCEPTION_BIND_MISSINGMETHOD
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Type '{0}' is missing '{1}' method.";
default: return "EXCEPTION_BIND_MISSINGMETHOD";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_UNABLETOINVOKENONDELEG
/// </summary>
public static string EXCEPTION_BIND_UNABLETOINVOKENONDELEG
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unable to invoke non-delegate type '{0}'.";
default: return "EXCEPTION_BIND_UNABLETOINVOKENONDELEG";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_CLOSEDDELEGATETYPEISEXPECTED
/// </summary>
public static string EXCEPTION_BIND_CLOSEDDELEGATETYPEISEXPECTED
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Invalid lambda type '{0}'. A closed delegate type is expected in lambda type declaration.";
default: return "EXCEPTION_BIND_CLOSEDDELEGATETYPEISEXPECTED";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_PARSER_OPREQUIRESOPERAND
/// </summary>
public static string EXCEPTION_PARSER_OPREQUIRESOPERAND
{
get
{
switch (currentLanguageIdx)
{
case 0: return "A '{0}' operator requires an operand.";
default: return "EXCEPTION_PARSER_OPREQUIRESOPERAND";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_UNABLETORESOLVENAME
/// </summary>
public static string EXCEPTION_BIND_UNABLETORESOLVENAME
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unable to resolve '{0}'. There is no formal parameter with this name.";
default: return "EXCEPTION_BIND_UNABLETORESOLVENAME";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_EXECUTION_EXPRESSIONGIVESNULLRESULT
/// </summary>
public static string EXCEPTION_EXECUTION_EXPRESSIONGIVESNULLRESULT
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Expression '{0}' gives null result.";
default: return "EXCEPTION_EXECUTION_EXPRESSIONGIVESNULLRESULT";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BOUNDEXPR_CANTCONVERTARG
/// </summary>
public static string EXCEPTION_BOUNDEXPR_CANTCONVERTARG
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Can't convert argument '{0}' ('{2}') to required type '{1}'.";
default: return "EXCEPTION_BOUNDEXPR_CANTCONVERTARG";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BOUNDEXPR_WRONGNUMPARAMS
/// </summary>
public static string EXCEPTION_BOUNDEXPR_WRONGNUMPARAMS
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Wrong number of parameters. Make sure parameter count matches expression's signature.";
default: return "EXCEPTION_BOUNDEXPR_WRONGNUMPARAMS";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_PARSER_UNEXPECTEDTOKENWHILEBUILDINGTREE
/// </summary>
public static string EXCEPTION_PARSER_UNEXPECTEDTOKENWHILEBUILDINGTREE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unexpected parser node met '{0}' while building expression tree.";
default: return "EXCEPTION_PARSER_UNEXPECTEDTOKENWHILEBUILDINGTREE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_PARSER_BINARYOPREQOPERAND
/// </summary>
public static string EXCEPTION_PARSER_BINARYOPREQOPERAND
{
get
{
switch (currentLanguageIdx)
{
case 0: return "A binary operation requires two parameters.";
default: return "EXCEPTION_PARSER_BINARYOPREQOPERAND";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_COMPIL_UNKNOWNEXPRTYPE
/// </summary>
public static string EXCEPTION_COMPIL_UNKNOWNEXPRTYPE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unknown expression type {0}.";
default: return "EXCEPTION_COMPIL_UNKNOWNEXPRTYPE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_UNABLETOBINDCONSTRUCTOR
/// </summary>
public static string EXCEPTION_BIND_UNABLETOBINDCONSTRUCTOR
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unable to find constructor on type '{0}' accepting specified arguments.";
default: return "EXCEPTION_BIND_UNABLETOBINDCONSTRUCTOR";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_PARSER_INVALIDCHILDTYPESOFNODE
/// </summary>
public static string EXCEPTION_PARSER_INVALIDCHILDTYPESOFNODE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "An invalid type of children nodes '{1}' of node '{0}' while '{2}' is expected.";
default: return "EXCEPTION_PARSER_INVALIDCHILDTYPESOFNODE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_UNABLETORESOLVEMEMBERONTYPE
/// </summary>
public static string EXCEPTION_BIND_UNABLETORESOLVEMEMBERONTYPE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unable to find public member with name '{0}' on '{1}' type.";
default: return "EXCEPTION_BIND_UNABLETORESOLVEMEMBERONTYPE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_PARSER_OPREQUIRESSECONDOPERAND
/// </summary>
public static string EXCEPTION_PARSER_OPREQUIRESSECONDOPERAND
{
get
{
switch (currentLanguageIdx)
{
case 0: return "A '{0}' operator requires a second operand.";
default: return "EXCEPTION_PARSER_OPREQUIRESSECONDOPERAND";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_MISSINGATTRONNODE
/// </summary>
public static string EXCEPTION_BIND_MISSINGATTRONNODE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Missing or wrong '{0}' attribute on one of expression nodes.";
default: return "EXCEPTION_BIND_MISSINGATTRONNODE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_PARSER_UNEXPECTEDTOKENWHILEOTHEREXPECTED
/// </summary>
public static string EXCEPTION_PARSER_UNEXPECTEDTOKENWHILEOTHEREXPECTED
{
get
{
switch (currentLanguageIdx)
{
case 0: return "A one of these '{0}' tokens are expected.";
default: return "EXCEPTION_PARSER_UNEXPECTEDTOKENWHILEOTHEREXPECTED";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_UNABLETOBINDDELEG
/// </summary>
public static string EXCEPTION_BIND_UNABLETOBINDDELEG
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unable to invoke delegate {0}({1}) with specified arguments.";
default: return "EXCEPTION_BIND_UNABLETOBINDDELEG";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_COMPIL_NOBINARYOPONTYPE
/// </summary>
public static string EXCEPTION_COMPIL_NOBINARYOPONTYPE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "No binary operation '{0}' is defined on type '{1}'.";
default: return "EXCEPTION_COMPIL_NOBINARYOPONTYPE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_COMPIL_UNKNOWNBINARYEXPRTYPE
/// </summary>
public static string EXCEPTION_COMPIL_UNKNOWNBINARYEXPRTYPE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unknown binary expression type '{0}'.";
default: return "EXCEPTION_COMPIL_UNKNOWNBINARYEXPRTYPE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_FAILEDTOBINDGENERICARGUMENTSTOTYPE
/// </summary>
public static string EXCEPTION_BIND_FAILEDTOBINDGENERICARGUMENTSTOTYPE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Failed to bind generic arguments '{0}' to type '{1}'.";
default: return "EXCEPTION_BIND_FAILEDTOBINDGENERICARGUMENTSTOTYPE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_TOKENIZER_INVALIDCHARLITERAL
/// </summary>
public static string EXCEPTION_TOKENIZER_INVALIDCHARLITERAL
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Invalid char literal.";
default: return "EXCEPTION_TOKENIZER_INVALIDCHARLITERAL";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_PARSER_TYPENAMEEXPECTED
/// </summary>
public static string EXCEPTION_PARSER_TYPENAMEEXPECTED
{
get
{
switch (currentLanguageIdx)
{
case 0: return "A type name is expected.";
default: return "EXCEPTION_PARSER_TYPENAMEEXPECTED";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_RENDERFAILED
/// </summary>
public static string EXCEPTION_BIND_RENDERFAILED
{
get
{
switch (currentLanguageIdx)
{
case 0: return "An error occured while trying to render '{0}' expression: {1}";
default: return "EXCEPTION_BIND_RENDERFAILED";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_UNABLETORESOLVETYPEMULTIPLE
/// </summary>
public static string EXCEPTION_BIND_UNABLETORESOLVETYPEMULTIPLE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unable to resolve type '{0}'. Can't choose from: '{1}'.";
default: return "EXCEPTION_BIND_UNABLETORESOLVETYPEMULTIPLE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BOUNDEXPR_BODYRESULTDOESNTMATCHRESULTTYPE
/// </summary>
public static string EXCEPTION_BOUNDEXPR_BODYRESULTDOESNTMATCHRESULTTYPE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Body's result type doesn't match expression's result type.";
default: return "EXCEPTION_BOUNDEXPR_BODYRESULTDOESNTMATCHRESULTTYPE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_TOKENIZER_UNEXPECTEDSYMBOL
/// </summary>
public static string EXCEPTION_TOKENIZER_UNEXPECTEDSYMBOL
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unexpected symbol '{0}'.";
default: return "EXCEPTION_TOKENIZER_UNEXPECTEDSYMBOL";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_PARSER_INVALIDCHILDCOUNTOFNODE
/// </summary>
public static string EXCEPTION_PARSER_INVALIDCHILDCOUNTOFNODE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "An invalid children count '{1}' of node '{0}' while {2} is expected.";
default: return "EXCEPTION_PARSER_INVALIDCHILDCOUNTOFNODE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_COMPIL_ONLYFUNCLAMBDASISSUPPORTED
/// </summary>
public static string EXCEPTION_COMPIL_ONLYFUNCLAMBDASISSUPPORTED
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Only System.Func<> lambda types are supported.";
default: return "EXCEPTION_COMPIL_ONLYFUNCLAMBDASISSUPPORTED";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_UNBOUNDEXPR_INVALIDPARAMCOUNT
/// </summary>
public static string EXCEPTION_UNBOUNDEXPR_INVALIDPARAMCOUNT
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Invalid parameters count.";
default: return "EXCEPTION_UNBOUNDEXPR_INVALIDPARAMCOUNT";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_PARSER_UNEXPECTEDTOKEN
/// </summary>
public static string EXCEPTION_PARSER_UNEXPECTEDTOKEN
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unexpected token '{0}' in current context.";
default: return "EXCEPTION_PARSER_UNEXPECTEDTOKEN";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_COMPIL_UNKNOWNUNARYEXPRTYPE
/// </summary>
public static string EXCEPTION_COMPIL_UNKNOWNUNARYEXPRTYPE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unknown unary expression type '{0}'.";
default: return "EXCEPTION_COMPIL_UNKNOWNUNARYEXPRTYPE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_COMPIL_NOCONVERTIONBETWEENTYPES
/// </summary>
public static string EXCEPTION_COMPIL_NOCONVERTIONBETWEENTYPES
{
get
{
switch (currentLanguageIdx)
{
case 0: return "No conversion operation is defined from '{0}' to '{1}'.";
default: return "EXCEPTION_COMPIL_NOCONVERTIONBETWEENTYPES";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_RESTRICTED_MEMBER_INVOCATION
/// </summary>
public static string EXCEPTION_BIND_RESTRICTED_MEMBER_INVOCATION
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Member '{1}.{0}' is not available until type '{1}' is added as known type in '{2}'.";
default: return "EXCEPTION_BIND_RESTRICTED_MEMBER_INVOCATION";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_LIST_LISTISEMPTY
/// </summary>
public static string EXCEPTION_LIST_LISTISEMPTY
{
get
{
switch (currentLanguageIdx)
{
case 0: return "List is empty.";
default: return "EXCEPTION_LIST_LISTISEMPTY";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_CALLMEMBERISNOTMETHOD
/// </summary>
public static string EXCEPTION_BIND_CALLMEMBERISNOTMETHOD
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unable to bind call because member '{0}' on type '{1}' is not method.";
default: return "EXCEPTION_BIND_CALLMEMBERISNOTMETHOD";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_FAILEDTOBINDMEMBERBINDINGS
/// </summary>
public static string EXCEPTION_BIND_FAILEDTOBINDMEMBERBINDINGS
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Failed to bind member bindings.";
default: return "EXCEPTION_BIND_FAILEDTOBINDMEMBERBINDINGS";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_UNABLETOBINDMETHOD
/// </summary>
public static string EXCEPTION_BIND_UNABLETOBINDMETHOD
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unable to bind parameters to method '{0}' on type '{1}'. Parameters doesn't match method. Parameters count '{2}'.";
default: return "EXCEPTION_BIND_UNABLETOBINDMETHOD";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_UNBOUNDEXPR_DUPLICATEPARAMNAME
/// </summary>
public static string EXCEPTION_UNBOUNDEXPR_DUPLICATEPARAMNAME
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Duplicate parameter name '{0}'.";
default: return "EXCEPTION_UNBOUNDEXPR_DUPLICATEPARAMNAME";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_PARSER_COLONISEXPRECTED
/// </summary>
public static string EXCEPTION_PARSER_COLONISEXPRECTED
{
get
{
switch (currentLanguageIdx)
{
case 0: return "A colon ':' symbol is expected in conditional '?' expression.";
default: return "EXCEPTION_PARSER_COLONISEXPRECTED";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_UNABLETOBINDCALL
/// </summary>
public static string EXCEPTION_BIND_UNABLETOBINDCALL
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unable to find method '{0}' on type '{1}' accepting {2} arguments.";
default: return "EXCEPTION_BIND_UNABLETOBINDCALL";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_UNABLETOCREATEEXPRWITHPARAMS
/// </summary>
public static string EXCEPTION_BIND_UNABLETOCREATEEXPRWITHPARAMS
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unable to create '{0}' expression with these '{1}' parameters.";
default: return "EXCEPTION_BIND_UNABLETOCREATEEXPRWITHPARAMS";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_UNKNOWNEXPRTYPE
/// </summary>
public static string EXCEPTION_BIND_UNKNOWNEXPRTYPE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unknown expression type '{0}'.";
default: return "EXCEPTION_BIND_UNKNOWNEXPRTYPE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_FAILEDTOBINDNEWEXPRESSION
/// </summary>
public static string EXCEPTION_BIND_FAILEDTOBINDNEWEXPRESSION
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Failed to bind 'new' expression.";
default: return "EXCEPTION_BIND_FAILEDTOBINDNEWEXPRESSION";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_FAILEDTOBIND
/// </summary>
public static string EXCEPTION_BIND_FAILEDTOBIND
{
get
{
switch (currentLanguageIdx)
{
case 0: return "An error occured while trying to build '{0}' expression: {1}";
default: return "EXCEPTION_BIND_FAILEDTOBIND";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_UNABLETOBINDMEMBER
/// </summary>
public static string EXCEPTION_BIND_UNABLETOBINDMEMBER
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unable to bind member '{0}' on type '{1}'. Static, visibility, generic parameters or call parameters doesn't not match.";
default: return "EXCEPTION_BIND_UNABLETOBINDMEMBER";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_MISSINGMETHODPARAMETER
/// </summary>
public static string EXCEPTION_BIND_MISSINGMETHODPARAMETER
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Missing required method/indexer '{0}' parameter.";
default: return "EXCEPTION_BIND_MISSINGMETHODPARAMETER";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_MISSINGORWRONGARGUMENT
/// </summary>
public static string EXCEPTION_BIND_MISSINGORWRONGARGUMENT
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Missing or wrong '{0}' argument.";
default: return "EXCEPTION_BIND_MISSINGORWRONGARGUMENT";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_MEMBERISNOTMETHOD
/// </summary>
public static string EXCEPTION_BIND_MEMBERISNOTMETHOD
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Referenced member '{0}' on type '{1}' is not method.";
default: return "EXCEPTION_BIND_MEMBERISNOTMETHOD";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_PARSER_UNEXPECTEDTOKENTYPE
/// </summary>
public static string EXCEPTION_PARSER_UNEXPECTEDTOKENTYPE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unexpected token type '{0}'.";
default: return "EXCEPTION_PARSER_UNEXPECTEDTOKENTYPE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_EXECUTION_CANTDONULLVALUE
/// </summary>
public static string EXCEPTION_EXECUTION_CANTDONULLVALUE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Can't '{1}' on a null value. Expression '{0}' gives null result.";
default: return "EXCEPTION_EXECUTION_CANTDONULLVALUE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_STRINGUTILS_UNEXPECTEDESCAPESEQ
/// </summary>
public static string EXCEPTION_STRINGUTILS_UNEXPECTEDESCAPESEQ
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unknown escape sequence '{0}'.";
default: return "EXCEPTION_STRINGUTILS_UNEXPECTEDESCAPESEQ";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_PARSER_MISSING_OPERATOR
/// </summary>
public static string EXCEPTION_PARSER_MISSING_OPERATOR
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Missing operator between two or more expressions.";
default: return "EXCEPTION_PARSER_MISSING_OPERATOR";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_INVALIDLAMBDABODYTYPE
/// </summary>
public static string EXCEPTION_BIND_INVALIDLAMBDABODYTYPE
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Failed to build lambda expression because body has type '{0}' which is not convertible to result type '{1}.'";
default: return "EXCEPTION_BIND_INVALIDLAMBDABODYTYPE";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_FAILEDTOBINDLISTINITIALIZERS
/// </summary>
public static string EXCEPTION_BIND_FAILEDTOBINDLISTINITIALIZERS
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Failed to bind list initializer.";
default: return "EXCEPTION_BIND_FAILEDTOBINDLISTINITIALIZERS";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_INVALIDCHARLITERAL
/// </summary>
public static string EXCEPTION_BIND_INVALIDCHARLITERAL
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Invalid char literal '{0}'. It should be one character length.";
default: return "EXCEPTION_BIND_INVALIDCHARLITERAL";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_PARSER_EXPRESSIONISEMPTY
/// </summary>
public static string EXCEPTION_PARSER_EXPRESSIONISEMPTY
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Expression is empty";
default: return "EXCEPTION_PARSER_EXPRESSIONISEMPTY";
}
}
}
/// <summary>
/// Localization string with key EXCEPTION_BIND_UNABLEREMAPPARAMETERSCOUNTMISMATCH
/// </summary>
public static string EXCEPTION_BIND_UNABLEREMAPPARAMETERSCOUNTMISMATCH
{
get
{
switch (currentLanguageIdx)
{
case 0: return "Unable to remap expression's parameters with lamda syntax. Parameters count mismatch.";
default: return "EXCEPTION_BIND_UNABLEREMAPPARAMETERSCOUNTMISMATCH";