/*
 * Translated default messages for the jQuery validation plugin.
 * Language: CZ
 */
jQuery.extend(jQuery.validator.messages, {
	required: "Toto pole je povinné.",
	remote: "Zkontrolujte toto pole.",
	email: "Zadejte platnou email adresu.",
	url: "Zadejte platnou URL adresu.",
	date: "Zadejte platné datum.",
	dateISO: "Zadejete platné datum (ISO).",
	number: "Zadejte platné datum.",
	digits: "Zadávejte pouze číslice.",
	creditcard: "Please enter a valid credit card.",
	equalTo: "Please enter the same value again.",
	accept: "Please enter a value with a valid extension.",
	maxlength: jQuery.format("Please enter no more than {0} characters."),
	maxLength: jQuery.format("Please enter no more than {0} characters."),
	minlength: jQuery.format("Please enter at least {0} characters."),
	minLength: jQuery.format("Please enter at least {0} characters."),
	rangelength: jQuery.format("Please enter a value between {0} and {1} characters long."),
	rangeLength: jQuery.format("Please enter a value between {0} and {1} characters long."),
	rangeValue: jQuery.format("Please enter a value between {0} and {1}."),
	range: jQuery.format("Please enter a value between {0} and {1}."),
	maxValue: jQuery.format("Please enter a value less than or equal to {0}."),
	max: jQuery.format("Please enter a value less than or equal to {0}."),
	minValue: jQuery.format("Please enter a value greater than or equal to {0}."),
	min: jQuery.format("Please enter a value greater than or equal to {0}.")
});