-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathEvaluationStrings.Designer.cs
More file actions
115 lines (103 loc) · 2.94 KB
/
EvaluationStrings.Designer.cs
File metadata and controls
115 lines (103 loc) · 2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace JavaScriptEngineSwitcher.Sample.Resources
{
using System;
using System.Globalization;
using System.Reflection;
using System.Resources;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
public class EvaluationStrings
{
private static Lazy<ResourceManager> _resourceManager =
new Lazy<ResourceManager>(() => new ResourceManager(
"JavaScriptEngineSwitcher.Sample.Resources.EvaluationStrings",
#if NET20 || NET30 || NET35 || NET40
typeof(EvaluationStrings).Assembly
#else
typeof(EvaluationStrings).GetTypeInfo().Assembly
#endif
));
private static CultureInfo _resourceCulture;
/// <summary>
/// Returns a cached ResourceManager instance used by this class
/// </summary>
public static ResourceManager ResourceManager
{
get
{
return _resourceManager.Value;
}
}
/// <summary>
/// Overrides a current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class
/// </summary>
public static CultureInfo Culture
{
get
{
return _resourceCulture;
}
set
{
_resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to "Evaluate"
/// </summary>
public static string ButtonText_Evaluate
{
get { return GetString("ButtonText_Evaluate"); }
}
/// <summary>
/// Looks up a localized string similar to "Engine"
/// </summary>
public static string DisplayName_EngineName
{
get { return GetString("DisplayName_EngineName"); }
}
/// <summary>
/// Looks up a localized string similar to "Expression"
/// </summary>
public static string DisplayName_Expression
{
get { return GetString("DisplayName_Expression"); }
}
/// <summary>
/// Looks up a localized string similar to "Result"
/// </summary>
public static string DisplayName_ResultValue
{
get { return GetString("DisplayName_ResultValue"); }
}
/// <summary>
/// Looks up a localized string similar to "You did not fill field "{0}"."
/// </summary>
public static string ErrorMessage_FormFieldIsNotFilled
{
get { return GetString("ErrorMessage_FormFieldIsNotFilled"); }
}
/// <summary>
/// Looks up a localized string similar to "The field "{0}" must be a string with a maximum length of {1:N0}."
/// </summary>
public static string ErrorMessage_FormFieldValueTooLong
{
get { return GetString("ErrorMessage_FormFieldValueTooLong"); }
}
private static string GetString(string name)
{
string value = ResourceManager.GetString(name, _resourceCulture);
return value;
}
}
}