// Validation errors messages for Parsley
import Parsley from '../parsley';
Parsley.addMessages('ru', {
  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('ru');
 
  |