// Validation errors messages for Parsley
// Load this after Parsley
Parsley.addMessages('he', {
defaultMessage: "???? ?? ??? ?? ???? ???.",
type: {
email: "??? ?? ???? ????? ????? ??????.",
url: "??? ?? ???? ????? URL ???.",
number: "??? ?? ???? ????? ????.",
integer: "??? ?? ???? ????? ???? ???.",
digits: "??? ?? ???? ????? ?????.",
alphanum: "??? ?? ???? ????? ?????????."
},
notblank: "??? ?? ???? ???? ????? ???.",
required: "??? ?? ????.",
pattern: "???? ?? ??? ?? ???? ???.",
min: "??? ?? ???? ????? ??? ????? %s.",
max: "??? ?? ???? ????? ??? ????? %s.",
range: "??? ?? ???? ????? ??? %s ?-%s.",
minlength: "??? ?? ??? ????. ??? ???? ????? ??? ????? %s ?????.",
maxlength: "??? ?? ???? ????. ??? ???? ????? ??? ????? %s ?????.",
length: "??? ?? ???? ????? ???. ????? ???? ????? ??? %s ?-%s ?????.",
mincheck: "??? ??? ????? %s ????????.",
maxcheck: "??? ??? ??? ????? %s ????????.",
check: "??? ??? ??? %s ?-%s ????????.",
equalto: "??? ?? ???? ????? ???."
});
Parsley.setLocale('he');
|