$(function(){
$.extend(jQuery.validator.messages, {
required : "לא יכול להיות ריק",
remote : "דוא\"ל קיים במערכת.
לחצו כאן להתחברות",
email : "כתובת לא תקינה",
url : "נא להכניס כתובת אינטרנט - לדוגמה https://www.wikipedia.com",
date : "יש להכניס תאריך תקין",
dateISO : "Please enter a valid date (ISO).",
number : "יש להכניס מספר",
digits : "ניתן להכניס ספרות בלבד",
creditcard : "מספר כרטיס האשראי שהזנת אינו תקין",
equalTo : "השדות אינם זהים",
accept : "Please enter a value with a valid extension.",
maxlength : jQuery.validator.format("ניתן להכניס עד {0} תווים."),
minlength : jQuery.validator.format("יש להכניס לפחות {0} תווים."),
rangelength : jQuery.validator.format("נא להכניס ערך בין {0} ל {1} תווים."),
range : jQuery.validator.format("נא להכניס ערך בין {0} ל- {1}."),
max : jQuery.validator.format("נא להכניס מספר עד {0}."),
min : jQuery.validator.format("נא להכניס מספר החל מ {0}.")
});
});