-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from jherencia/master
Added language spanish
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
(function($){ | ||
$.fn.validettaLanguage = function(){ | ||
} | ||
$.validettaLanguage = { | ||
init : function(){ | ||
$.validettaLanguage.messages = { | ||
empty : 'Campo obligatorio.', | ||
email : 'Correo electrónico no válido.', | ||
number : 'Este campo sólo acepta valores numéricos.', | ||
maxLength : 'Este campo acepta como máximo {count} caracteres.', | ||
minLength : 'Este campo requiere como mínimo {count} caracteres.', | ||
checkbox : 'Es necesario marcar este campo para continuar.', | ||
maxChecked : 'Sólo se puede marcar {count} opciones como máximo.', | ||
minChecked : 'Es necesario marcar como mínimo {count} opciones.', | ||
selectbox : 'Es necesario seleccionar un elemento de la lista.', | ||
maxSelected : 'Sólo se puede marcar {count} opciones como máximo.', | ||
minSelected : 'Es necesario marcar como mínimo {count} opciones.', | ||
notEqual : 'Los campos no coinciden.', | ||
creditCard : 'Tarjeta de crédito no válida.' | ||
}; | ||
} | ||
} | ||
$.validettaLanguage.init(); | ||
})(jQuery); |