Skip to content

Commit

Permalink
Merge pull request #4 from jherencia/master
Browse files Browse the repository at this point in the history
Added language spanish
  • Loading branch information
hsnaydd committed Nov 6, 2013
2 parents 5e9caef + e03a0fa commit 4ff167f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions languages/validettaLang-es-ES.js
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);

0 comments on commit 4ff167f

Please sign in to comment.