﻿/*
Script: FormValidator.Czech.js
	Date messages for Czech.

	License:
		MIT-style license.

	Authors:
		Jan Černý

*/

MooTools.lang.set('cs', 'FormValidator', {

	required:'Tato položka je povinná.',
	minLength:'Please enter at least {minLength} characters (you entered {length} characters).',
	maxLength:'Please enter no more than {maxLength} characters (you entered {length} characters).',
	integer:'Vložte pouze celé číslo.<br />Desetiná čísla (10.5) nejsou povoleny',
	numeric:'Please enter only numeric values in this field (i.e. "1" or "1.1" or "-1" or "-1.1").',
	digits:'Please use numbers and punctuation only in this field (for example, a phone number with dashes or dots is permitted).',
	alpha:'Please use letters only (a-z) with in this field. No spaces or other characters are allowed.',
	alphanum:'Please use only letters (a-z) or numbers (0-9) only in this field. No spaces or other characters are allowed.',
	dateSuchAs:'Please enter a valid date such as {date}',
	dateInFormatMDY:'Please enter a valid date such as MM/DD/YYYY (i.e. "12/31/1999")',
	email:'Vložte platnou e-mailovou adresu. Například "novak@seznam.cz".',
	url:'Please enter a valid URL such as http://www.google.com.',
	currencyDollar:'Please enter a valid $ amount. For example $100.00 .',
	oneRequired:'Please enter something for at least one of these inputs.',
	username:'Položka může obsahovat pouze znaky 0-9 A-Z -_. ',
	checked:'Musí být zaškrtnuto',
	passwordStrong:'Heslo musí být dlouhé minimálně 6 znaků a musí obsahovat minimálně 3 číslice a 3 znaky',
	name:'Jméno nesmí obsahovat řídící znaky znako jsou @#$%&!(){}[]*...',
	errorPrefix: 'Chyba: ',
	warningPrefix: 'Varování: ',

	//FormValidator.Extras

	noSpace: 'There can be no spaces in this input.',
	reqChkByNode: 'No items are selected.',
	requiredChk: 'This field is required.',
	reqChkByName: 'Please select a {label}.',
	match: 'Tato položka se musí shodovat s položkou {matchName}',
	startDate: 'the start date',
	endDate: 'the end date',
	currendDate: 'the current date',
	afterDate: 'The date should be the same or after {label}.',
	beforeDate: 'The date should be the same or before {label}.',
	startMonth: 'Please select a start month',
	sameMonth: 'These two dates must be in the same month - you must change one or the other.'

});

