/*
 * Translated default messages for the jQuery validation plugin.
 * Locale: ES
 */
jQuery.extend(jQuery.validator.messages, {
  required: "&#9650; obligatorio",
  remote: "&#9650; Por favor, rellena este campo.",
  email: "&#9650; error de email",
  url: "&#9650; error de URL",
  date: "&#9650; error de fecha.",
  dateISO: "&#9650; Por favor, escribe una fecha (ISO) valida.",
  number: "&#9650; Por favor, escribe un número entero valido.",
  digits: "&#9650; Por favor, escribe solo digitos.",
  creditcard: "&#9650; Por favor, escribe un número de tarjeta valido.",
  equalTo: "&#9650; Por favor, escribe el mismo valor de nuevo.",
  accept: "&#9650; Por favor, escribe un valor con una extension aceptada.",
  maxlength: jQuery.validator.format("&#9650; Por favor, no escribas mas de {0} caracteres."),
  minlength: jQuery.validator.format("&#9650; Por favor, no escribas menos de {0} caracteres."),
  rangelength: jQuery.validator.format("&#9650; Por favor, escribe un valor entre {0} y {1} caracteres."),
  range: jQuery.validator.format("&#9650; Por favor, escribe un valor entre {0} y {1}."),
  max: jQuery.validator.format("&#9650; Por favor, escribe un valor menor o igual a {0}."),
  min: jQuery.validator.format("&#9650; Por favor, escribe un valor mayor o igual a {0}.")
});
