PageRenderTime 43ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/src/FluentValidation/Resources/Messages.Designer.cs

http://github.com/JeremySkinner/FluentValidation
C# | 245 lines | 134 code | 28 blank | 83 comment | 1 complexity | c6e673a1c5b47c123dc49da6f1a9f1bd MD5 | raw file
  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 FluentValidation.Resources {
  11. using System;
  12. using System.Reflection;
  13. using Internal;
  14. /// <summary>
  15. /// A strongly-typed resource class, for looking up localized strings, etc.
  16. /// </summary>
  17. // This class was auto-generated by the StronglyTypedResourceBuilder
  18. // class via a tool like ResGen or Visual Studio.
  19. // To add or remove a member, edit your .ResX file then rerun ResGen
  20. // with the /str option, or rebuild your VS project.
  21. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
  22. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  23. [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
  24. public class Messages {
  25. private static global::System.Resources.ResourceManager resourceMan;
  26. private static global::System.Globalization.CultureInfo resourceCulture;
  27. [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
  28. internal Messages() {
  29. }
  30. /// <summary>
  31. /// Returns the cached ResourceManager instance used by this class.
  32. /// </summary>
  33. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  34. public static global::System.Resources.ResourceManager ResourceManager {
  35. get {
  36. if (object.ReferenceEquals(resourceMan, null)) {
  37. global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("FluentValidation.Resources.Messages", typeof(Messages).GetTypeInfo().Assembly);
  38. resourceMan = temp;
  39. }
  40. return resourceMan;
  41. }
  42. }
  43. /// <summary>
  44. /// Overrides the current thread's CurrentUICulture property for all
  45. /// resource lookups using this strongly typed resource class.
  46. /// </summary>
  47. [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
  48. public static global::System.Globalization.CultureInfo Culture {
  49. get {
  50. return resourceCulture;
  51. }
  52. set {
  53. resourceCulture = value;
  54. }
  55. }
  56. /// <summary>
  57. /// Looks up a localized string similar to &apos;{PropertyName}&apos; is not a valid credit card number..
  58. /// </summary>
  59. public static string CreditCardError {
  60. get {
  61. return ResourceManager.GetString("CreditCardError", resourceCulture);
  62. }
  63. }
  64. /// <summary>
  65. /// Looks up a localized string similar to &apos;{PropertyName}&apos; is not a valid email address..
  66. /// </summary>
  67. public static string email_error {
  68. get {
  69. return ResourceManager.GetString("email_error", resourceCulture);
  70. }
  71. }
  72. /// <summary>
  73. /// Looks up a localized string similar to &apos;{PropertyName}&apos; should be empty..
  74. /// </summary>
  75. public static string empty_error {
  76. get {
  77. return ResourceManager.GetString("empty_error", resourceCulture);
  78. }
  79. }
  80. /// <summary>
  81. /// Looks up a localized string similar to &apos;{PropertyName}&apos; has a range of values which does not include &apos;{PropertyValue}&apos;..
  82. /// </summary>
  83. public static string enum_error {
  84. get {
  85. return ResourceManager.GetString("enum_error", resourceCulture);
  86. }
  87. }
  88. /// <summary>
  89. /// Looks up a localized string similar to &apos;{PropertyName}&apos; should be equal to &apos;{ComparisonValue}&apos;..
  90. /// </summary>
  91. public static string equal_error {
  92. get {
  93. return ResourceManager.GetString("equal_error", resourceCulture);
  94. }
  95. }
  96. /// <summary>
  97. /// Looks up a localized string similar to &apos;{PropertyName}&apos; must be {MaxLength} characters in length. You entered {TotalLength} characters..
  98. /// </summary>
  99. public static string exact_length_error {
  100. get {
  101. return ResourceManager.GetString("exact_length_error", resourceCulture);
  102. }
  103. }
  104. /// <summary>
  105. /// Looks up a localized string similar to &apos;{PropertyName}&apos; must be between {From} and {To} (exclusive). You entered {Value}..
  106. /// </summary>
  107. public static string exclusivebetween_error {
  108. get {
  109. return ResourceManager.GetString("exclusivebetween_error", resourceCulture);
  110. }
  111. }
  112. /// <summary>
  113. /// Looks up a localized string similar to &apos;{PropertyName}&apos; must be greater than &apos;{ComparisonValue}&apos;..
  114. /// </summary>
  115. public static string greaterthan_error {
  116. get {
  117. return ResourceManager.GetString("greaterthan_error", resourceCulture);
  118. }
  119. }
  120. /// <summary>
  121. /// Looks up a localized string similar to &apos;{PropertyName}&apos; must be greater than or equal to &apos;{ComparisonValue}&apos;..
  122. /// </summary>
  123. public static string greaterthanorequal_error {
  124. get {
  125. return ResourceManager.GetString("greaterthanorequal_error", resourceCulture);
  126. }
  127. }
  128. /// <summary>
  129. /// Looks up a localized string similar to &apos;{PropertyName}&apos; must be between {From} and {To}. You entered {Value}..
  130. /// </summary>
  131. public static string inclusivebetween_error {
  132. get {
  133. return ResourceManager.GetString("inclusivebetween_error", resourceCulture);
  134. }
  135. }
  136. /// <summary>
  137. /// Looks up a localized string similar to &apos;{PropertyName}&apos; must be between {MinLength} and {MaxLength} characters. You entered {TotalLength} characters..
  138. /// </summary>
  139. public static string length_error {
  140. get {
  141. return ResourceManager.GetString("length_error", resourceCulture);
  142. }
  143. }
  144. /// <summary>
  145. /// Looks up a localized string similar to &apos;{PropertyName}&apos; must be less than &apos;{ComparisonValue}&apos;..
  146. /// </summary>
  147. public static string lessthan_error {
  148. get {
  149. return ResourceManager.GetString("lessthan_error", resourceCulture);
  150. }
  151. }
  152. /// <summary>
  153. /// Looks up a localized string similar to &apos;{PropertyName}&apos; must be less than or equal to &apos;{ComparisonValue}&apos;..
  154. /// </summary>
  155. public static string lessthanorequal_error {
  156. get {
  157. return ResourceManager.GetString("lessthanorequal_error", resourceCulture);
  158. }
  159. }
  160. /// <summary>
  161. /// Looks up a localized string similar to &apos;{PropertyName}&apos; should not be empty..
  162. /// </summary>
  163. public static string notempty_error {
  164. get {
  165. return ResourceManager.GetString("notempty_error", resourceCulture);
  166. }
  167. }
  168. /// <summary>
  169. /// Looks up a localized string similar to &apos;{PropertyName}&apos; should not be equal to &apos;{ComparisonValue}&apos;..
  170. /// </summary>
  171. public static string notequal_error {
  172. get {
  173. return ResourceManager.GetString("notequal_error", resourceCulture);
  174. }
  175. }
  176. /// <summary>
  177. /// Looks up a localized string similar to &apos;{PropertyName}&apos; must not be empty..
  178. /// </summary>
  179. public static string notnull_error {
  180. get {
  181. return ResourceManager.GetString("notnull_error", resourceCulture);
  182. }
  183. }
  184. /// <summary>
  185. /// Looks up a localized string similar to &apos;{PropertyName}&apos; must be empty..
  186. /// </summary>
  187. public static string null_error {
  188. get {
  189. return ResourceManager.GetString("null_error", resourceCulture);
  190. }
  191. }
  192. /// <summary>
  193. /// Looks up a localized string similar to The specified condition was not met for &apos;{PropertyName}&apos;..
  194. /// </summary>
  195. public static string predicate_error {
  196. get {
  197. return ResourceManager.GetString("predicate_error", resourceCulture);
  198. }
  199. }
  200. /// <summary>
  201. /// Looks up a localized string similar to &apos;{PropertyName}&apos; is not in the correct format..
  202. /// </summary>
  203. public static string regex_error {
  204. get {
  205. return ResourceManager.GetString("regex_error", resourceCulture);
  206. }
  207. }
  208. /// <summary>
  209. /// Looks up a localized string similar to &apos;{PropertyName}&apos; may not be more than {expectedPrecision} digits in total, with allowance for {expectedScale} decimals. {digits} digits and {actualScale} decimals were found..
  210. /// </summary>
  211. public static string scale_precision_error {
  212. get {
  213. return ResourceManager.GetString("scale_precision_error", resourceCulture);
  214. }
  215. }
  216. }
  217. }