ferro-lang 0.2.2

Localization for the Ferro web framework
Documentation
{
  "validation": {
    "required": "The :attribute field is required.",
    "string": "The :attribute field must be a string.",
    "integer": "The :attribute field must be an integer.",
    "numeric": "The :attribute field must be a number.",
    "boolean": "The :attribute field must be true or false.",
    "array": "The :attribute field must be an array.",
    "min": {
      "numeric": "The :attribute field must be at least :min.",
      "string": "The :attribute field must be at least :min characters.",
      "array": "The :attribute field must have at least :min items."
    },
    "max": {
      "numeric": "The :attribute field must not be greater than :max.",
      "string": "The :attribute field must not be greater than :max characters.",
      "array": "The :attribute field must not have more than :max items."
    },
    "between": {
      "numeric": "The :attribute field must be between :min and :max.",
      "string": "The :attribute field must be between :min and :max characters.",
      "array": "The :attribute field must have between :min and :max items."
    },
    "email": "The :attribute field must be a valid email address.",
    "url": "The :attribute field must be a valid URL.",
    "regex": "The :attribute field format is invalid.",
    "alpha": "The :attribute field must only contain letters.",
    "alpha_num": "The :attribute field must only contain letters and numbers.",
    "alpha_dash": "The :attribute field must only contain letters, numbers, dashes, and underscores.",
    "confirmed": "The :attribute confirmation does not match.",
    "in": "The selected :attribute is invalid.",
    "not_in": "The selected :attribute is invalid.",
    "different": "The :attribute and :other fields must be different.",
    "same": "The :attribute and :other fields must match.",
    "date": "The :attribute field must be a valid date.",
    "accepted": "The :attribute field must be accepted."
  }
}