﻿/*
 * Translated default messages for the jQuery validation plugin.
 * Language: RU
 */
jQuery.extend(jQuery.validator.messages, {
        required: "This field should be filled.",
        remote: "Please enter the correct value.",
        email: "Please enter the correct e-mail.",
        url: "Please enter the correct URL.",
        date: "Please enter the correct date.",
        dateISO: "Please enter the correct date in ISO format.",
        number: "Please enter a number.",
        digits: "Please enter only figures.",
        creditcard: "Please enter the correct number of credit card.",
        equalTo: "Please enter a same value one more time.",
        accept: "Please choose the file with the correct expansion.",
        maxlength: jQuery.format("Please enter maximum {0} symbols."),
        minlength: jQuery.format("Please enter minimum {0} symbols."),
        rangelength: jQuery.format("Please enter a value from {0} to {1} symbols."),
        range: jQuery.format("Plaese enter a number from {0} to {1}."),
        max: jQuery.format("Plaese enter a number equal to or less than {0}."),
        min: jQuery.format("Please enter a number equal-to-or-greater-than {0}.")
});
