forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStrings.Designer.cs
More file actions
93 lines (84 loc) · 2.55 KB
/
Strings.Designer.cs
File metadata and controls
93 lines (84 loc) · 2.55 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
//------------------------------------------------------------------------------
// <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.Jint.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 Strings
{
private static Lazy<ResourceManager> _resourceManager =
new Lazy<ResourceManager>(() => new ResourceManager(
"JavaScriptEngineSwitcher.Jint.Resources.Strings",
#if NETSTANDARD1_0 || NETSTANDARD1_1 || NETSTANDARD1_2 || NETSTANDARD1_3 || NETSTANDARD1_4 || NETSTANDARD1_5 || NETSTANDARD1_6 || NETCOREAPP1_0 || NET45 || NET451 || NET452 || NET46 || NET461 || NET462 || NET463
typeof(Strings).GetTypeInfo().Assembly
#elif NET40
typeof(Strings).Assembly
#else
#error No implementation for this target
#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 "Maximum execution time exceeded."
/// </summary>
public static string Runtime_ExecutionTimeout
{
get { return GetString("Runtime_ExecutionTimeout"); }
}
/// <summary>
/// Looks up a localized string similar to "Recursion is forbidden by script host: {0}"
/// </summary>
public static string Runtime_RecursionDepthOverflow
{
get { return GetString("Runtime_RecursionDepthOverflow"); }
}
/// <summary>
/// Looks up a localized string similar to "Maximum number of statements executed have been reached."
/// </summary>
public static string Runtime_StatementsCountOverflow
{
get { return GetString("Runtime_StatementsCountOverflow"); }
}
private static string GetString(string name)
{
string value = ResourceManager.GetString(name, _resourceCulture);
return value;
}
}
}