// Validation errors messages for Parsley
import Parsley from '../parsley';
Parsley.addMessages('el', {
defaultMessage: "? ???? ???????? ?? ????? ?? ??????.",
type: {
email: "? ???? ?????? ?? ????? ??? ?????? 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('el');
|