/src/FluentValidation/Resources/Messages.Designer.cs
C# | 245 lines | 134 code | 28 blank | 83 comment | 1 complexity | c6e673a1c5b47c123dc49da6f1a9f1bd MD5 | raw file
- //------------------------------------------------------------------------------
- // <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>
- //------------------------------------------------------------------------------
-
- namespace FluentValidation.Resources {
- using System;
- using System.Reflection;
- using Internal;
-
-
- /// <summary>
- /// A strongly-typed resource class, for looking up localized strings, etc.
- /// </summary>
- // This class was auto-generated by the StronglyTypedResourceBuilder
- // class via a tool like ResGen or Visual Studio.
- // To add or remove a member, edit your .ResX file then rerun ResGen
- // with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- public class Messages {
-
- private static global::System.Resources.ResourceManager resourceMan;
-
- private static global::System.Globalization.CultureInfo resourceCulture;
-
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal Messages() {
- }
-
- /// <summary>
- /// Returns the cached ResourceManager instance used by this class.
- /// </summary>
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- public static global::System.Resources.ResourceManager ResourceManager {
- get {
- if (object.ReferenceEquals(resourceMan, null)) {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("FluentValidation.Resources.Messages", typeof(Messages).GetTypeInfo().Assembly);
- resourceMan = temp;
- }
- return resourceMan;
- }
- }
-
- /// <summary>
- /// Overrides the current thread's CurrentUICulture property for all
- /// resource lookups using this strongly typed resource class.
- /// </summary>
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- public static global::System.Globalization.CultureInfo Culture {
- get {
- return resourceCulture;
- }
- set {
- resourceCulture = value;
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' is not a valid credit card number..
- /// </summary>
- public static string CreditCardError {
- get {
- return ResourceManager.GetString("CreditCardError", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' is not a valid email address..
- /// </summary>
- public static string email_error {
- get {
- return ResourceManager.GetString("email_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' should be empty..
- /// </summary>
- public static string empty_error {
- get {
- return ResourceManager.GetString("empty_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' has a range of values which does not include '{PropertyValue}'..
- /// </summary>
- public static string enum_error {
- get {
- return ResourceManager.GetString("enum_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' should be equal to '{ComparisonValue}'..
- /// </summary>
- public static string equal_error {
- get {
- return ResourceManager.GetString("equal_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' must be {MaxLength} characters in length. You entered {TotalLength} characters..
- /// </summary>
- public static string exact_length_error {
- get {
- return ResourceManager.GetString("exact_length_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' must be between {From} and {To} (exclusive). You entered {Value}..
- /// </summary>
- public static string exclusivebetween_error {
- get {
- return ResourceManager.GetString("exclusivebetween_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' must be greater than '{ComparisonValue}'..
- /// </summary>
- public static string greaterthan_error {
- get {
- return ResourceManager.GetString("greaterthan_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' must be greater than or equal to '{ComparisonValue}'..
- /// </summary>
- public static string greaterthanorequal_error {
- get {
- return ResourceManager.GetString("greaterthanorequal_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' must be between {From} and {To}. You entered {Value}..
- /// </summary>
- public static string inclusivebetween_error {
- get {
- return ResourceManager.GetString("inclusivebetween_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' must be between {MinLength} and {MaxLength} characters. You entered {TotalLength} characters..
- /// </summary>
- public static string length_error {
- get {
- return ResourceManager.GetString("length_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' must be less than '{ComparisonValue}'..
- /// </summary>
- public static string lessthan_error {
- get {
- return ResourceManager.GetString("lessthan_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' must be less than or equal to '{ComparisonValue}'..
- /// </summary>
- public static string lessthanorequal_error {
- get {
- return ResourceManager.GetString("lessthanorequal_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' should not be empty..
- /// </summary>
- public static string notempty_error {
- get {
- return ResourceManager.GetString("notempty_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' should not be equal to '{ComparisonValue}'..
- /// </summary>
- public static string notequal_error {
- get {
- return ResourceManager.GetString("notequal_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' must not be empty..
- /// </summary>
- public static string notnull_error {
- get {
- return ResourceManager.GetString("notnull_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' must be empty..
- /// </summary>
- public static string null_error {
- get {
- return ResourceManager.GetString("null_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to The specified condition was not met for '{PropertyName}'..
- /// </summary>
- public static string predicate_error {
- get {
- return ResourceManager.GetString("predicate_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' is not in the correct format..
- /// </summary>
- public static string regex_error {
- get {
- return ResourceManager.GetString("regex_error", resourceCulture);
- }
- }
-
- /// <summary>
- /// Looks up a localized string similar to '{PropertyName}' may not be more than {expectedPrecision} digits in total, with allowance for {expectedScale} decimals. {digits} digits and {actualScale} decimals were found..
- /// </summary>
- public static string scale_precision_error {
- get {
- return ResourceManager.GetString("scale_precision_error", resourceCulture);
- }
- }
- }
- }