innvent/parsley_simple_form

View on GitHub
locales/en.yml

Summary

Maintainability
Test Coverage
pt:
  form_validation:
    message:
      required: "This value is required."
      equalto: "This value should be the same as %{field_name}."
      email: "This value should be a valid email."
      url: "This value should be a valid url."
      urlstrict: "This value should be a valid url."
      number: "This value should be a valid number."
      digits: "This value should be digits."
      dateIso: "This value should be a valid date (YYYY-MM-DD)."
      alphanum: "This value should be alphanumeric."
      phone: "This value should be a valid phone."
      notnull: "This value should not be null."
      notblank: "This value should not be blank."
      regexp: "This value seems to be invalid."
      min: "This value should be greater than or equal to %{min}."
      max: "This value should be lower than or equal to %{max}."
      range: "This value should be between %{min} and %{max}."
      minlength: "This value is too short. It should have %{minlength} characters or more."
      maxlength: "This value is too long. It should have %{maxlength} characters or less."
      rangelength: "This value length is invalid. It should be between %{min} and %{max} characters long."
      mincheck: "You must select at least %{mincheck} choices."
      maxcheck: "You must select %{maxcheck} choices or less."
      rangecheck: "You must select between %{min} and %{max} choices."