github.com/gogf/gf@v1.16.9/util/gvalid/i18n/en/validation.toml (about)

     1  "gf.gvalid.rule.required"             = "The :attribute field is required"
     2  "gf.gvalid.rule.required-if"          = "The :attribute field is required"
     3  "gf.gvalid.rule.required-unless"      = "The :attribute field is required"
     4  "gf.gvalid.rule.required-with"        = "The :attribute field is required"
     5  "gf.gvalid.rule.required-with-all"    = "The :attribute field is required"
     6  "gf.gvalid.rule.required-without"     = "The :attribute field is required"
     7  "gf.gvalid.rule.required-without-all" = "The :attribute field is required"
     8  "gf.gvalid.rule.date"                 = "The :attribute value is not a valid date"
     9  "gf.gvalid.rule.date-format"          = "The :attribute value does not match the format :format"
    10  "gf.gvalid.rule.email"                = "The :attribute value must be a valid email address"
    11  "gf.gvalid.rule.phone"                = "The :attribute value must be a valid phone number"
    12  "gf.gvalid.rule.phone-loose"          = "The :attribute value must be a valid phone number"
    13  "gf.gvalid.rule.telephone"            = "The :attribute value must be a valid telephone number"
    14  "gf.gvalid.rule.passport"             = "The :attribute value is not a valid passport format"
    15  "gf.gvalid.rule.password"             = "The :attribute value is not a valid passport format"
    16  "gf.gvalid.rule.password2"            = "The :attribute value is not a valid passport format"
    17  "gf.gvalid.rule.password3"            = "The :attribute value is not a valid passport format"
    18  "gf.gvalid.rule.postcode"             = "The :attribute value is not a valid passport format"
    19  "gf.gvalid.rule.resident-id"          = "The :attribute value is not a valid resident id number"
    20  "gf.gvalid.rule.bank-card"            = "The :attribute value must be a valid bank card number"
    21  "gf.gvalid.rule.qq"                   = "The :attribute value must be a valid QQ number"
    22  "gf.gvalid.rule.ip"                   = "The :attribute value must be a valid IP address"
    23  "gf.gvalid.rule.ipv4"                 = "The :attribute value must be a valid IPv4 address"
    24  "gf.gvalid.rule.ipv6"                 = "The :attribute value must be a valid IPv6 address"
    25  "gf.gvalid.rule.mac"                  = "The :attribute value must be a valid MAC address"
    26  "gf.gvalid.rule.url"                  = "The :attribute value must be a valid URL address"
    27  "gf.gvalid.rule.domain"               = "The :attribute value must be a valid domain format"
    28  "gf.gvalid.rule.length"               = "The :attribute value length must be between :min and :max"
    29  "gf.gvalid.rule.min-length"           = "The :attribute value length must be equal or greater than :min"
    30  "gf.gvalid.rule.max-length"           = "The :attribute value length must be equal or lesser than :max"
    31  "gf.gvalid.rule.size"                 = "The :attribute value length must be :size"
    32  "gf.gvalid.rule.between"              = "The :attribute value must be between :min and :max"
    33  "gf.gvalid.rule.min"                  = "The :attribute value must be equal or greater than :min"
    34  "gf.gvalid.rule.max"                  = "The :attribute value must be equal or lesser than :max"
    35  "gf.gvalid.rule.json"                 = "The :attribute value must be a valid JSON string"
    36  "gf.gvalid.rule.xml"                  = "The :attribute value must be a valid XML string"
    37  "gf.gvalid.rule.array"                = "The :attribute value must be an array"
    38  "gf.gvalid.rule.integer"              = "The :attribute value must be an integer"
    39  "gf.gvalid.rule.float"                = "The :attribute value must be a float"
    40  "gf.gvalid.rule.boolean"              = "The :attribute value field must be true or false"
    41  "gf.gvalid.rule.same"                 = "The :attribute value must be the same as field :field"
    42  "gf.gvalid.rule.different"            = "The :attribute value must be different from field :field"
    43  "gf.gvalid.rule.in"                   = "The :attribute value is not in acceptable range"
    44  "gf.gvalid.rule.not-in"               = "The :attribute value is not in acceptable range"
    45  "gf.gvalid.rule.regex"                = "The :attribute value is invalid"
    46  "gf.gvalid.rule.__default__"          = "The :attribute value is invalid"