-
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 #1 from adammacias/master
Added language pt-BR
- 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 : 'Preencha este campo.', | ||
email : 'Insira um endereço de e-mail válido.', | ||
number : 'Insira apenas números.', | ||
maxLength : 'Insira no máximo {count} caracteres.', | ||
minLength : 'Insira no mínimo {count} caracteres.', | ||
checkbox : 'Marque esta caixa de seleção se deseja continuar.', | ||
maxChecked : 'Marque no máximo {count} opções.', | ||
minChecked : 'Marque no mínimo {count} opções.', | ||
selectbox : 'Selecione um item da lista.', | ||
maxSelected : 'Selecione no máximo {count} itens', | ||
minSelected : 'Selecione no mínimo {count} itens', | ||
notEqual : 'Os campos não são iguais.', | ||
creditCard : 'Número do cartão de crédito inválido.' | ||
}; | ||
} | ||
} | ||
$.validettaLanguage.init(); | ||
})(jQuery); |