Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Strings.Designer.cs 4.3 KB

You have to be logged in to leave a comment. Sign In
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
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. // Runtime Version:4.0.30319.42000
  5. //
  6. // Changes to this file may cause incorrect behavior and will be lost if
  7. // the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace Zummer {
  11. using System;
  12. /// <summary>
  13. /// A strongly-typed resource class, for looking up localized strings, etc.
  14. /// </summary>
  15. // This class was auto-generated by the StronglyTypedResourceBuilder
  16. // class via a tool like ResGen or Visual Studio.
  17. // To add or remove a member, edit your .ResX file then rerun ResGen
  18. // with the /str option, or rebuild your VS project.
  19. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
  20. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  21. [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
  22. internal class Strings {
  23. private static global::System.Resources.ResourceManager resourceMan;
  24. private static global::System.Globalization.CultureInfo resourceCulture;
  25. [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
  26. internal Strings() {
  27. }
  28. /// <summary>
  29. /// Returns the cached ResourceManager instance used by this class.
  30. /// </summary>
  31. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  32. internal static global::System.Resources.ResourceManager ResourceManager {
  33. get {
  34. if (object.ReferenceEquals(resourceMan, null)) {
  35. global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Zummer.Strings", typeof(Strings).Assembly);
  36. resourceMan = temp;
  37. }
  38. return resourceMan;
  39. }
  40. }
  41. /// <summary>
  42. /// Overrides the current thread's CurrentUICulture property for all
  43. /// resource lookups using this strongly typed resource class.
  44. /// </summary>
  45. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  46. internal static global::System.Globalization.CultureInfo Culture {
  47. get {
  48. return resourceCulture;
  49. }
  50. set {
  51. resourceCulture = value;
  52. }
  53. }
  54. /// <summary>
  55. /// Looks up a localized string similar to Hmm... I did not understand that. Rephrase your message and try again..
  56. /// </summary>
  57. internal static string FallbackIntentMessage {
  58. get {
  59. return ResourceManager.GetString("FallbackIntentMessage", resourceCulture);
  60. }
  61. }
  62. /// <summary>
  63. /// Looks up a localized string similar to Hi! What would you like to read about? I can fetch you the best Wikipedia results on any subject..
  64. /// </summary>
  65. internal static string GreetOnDemand {
  66. get {
  67. return ResourceManager.GetString("GreetOnDemand", resourceCulture);
  68. }
  69. }
  70. /// <summary>
  71. /// Looks up a localized string similar to More on Bing.
  72. /// </summary>
  73. internal static string MoreOnBing {
  74. get {
  75. return ResourceManager.GetString("MoreOnBing", resourceCulture);
  76. }
  77. }
  78. /// <summary>
  79. /// Looks up a localized string similar to Powered by {0}.
  80. /// </summary>
  81. internal static string PowerBy {
  82. get {
  83. return ResourceManager.GetString("PowerBy", resourceCulture);
  84. }
  85. }
  86. /// <summary>
  87. /// Looks up a localized string similar to Here you go..
  88. /// </summary>
  89. internal static string SearchTopicTypeMessage {
  90. get {
  91. return ResourceManager.GetString("SearchTopicTypeMessage", resourceCulture);
  92. }
  93. }
  94. }
  95. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...