Nette Documentation Preview

syntax
Konfiguracja formularzy
***********************

.[perex]
W konfiguracji można zmienić domyślne [komunikaty błędów formularzy |validation].

```neon
forms:
	messages:
		Equal: 'Please enter %s.'
		NotEqual: 'This value should not be %s.'
		Filled: 'This field is required.'
		Blank: 'This field should be blank.'
		MinLength: 'Please enter at least %d characters.'
		MaxLength: 'Please enter no more than %d characters.'
		Length: 'Please enter a value between %d and %d characters long.'
		Email: 'Please enter a valid email address.'
		URL: 'Please enter a valid URL.'
		Integer: 'Please enter a valid integer.'
		Float: 'Please enter a valid number.'
		Min: 'Please enter a value greater than or equal to %d.'
		Max: 'Please enter a value less than or equal to %d.'
		Range: 'Please enter a value between %d and %d.'
		MaxFileSize: 'The size of the uploaded file can be up to %d bytes.'
		MaxPostSize: 'The uploaded data exceeds the limit of %d bytes.'
		MimeType: 'The uploaded file is not in the expected format.'
		Image: 'The uploaded file must be image in format JPEG, GIF, PNG or WebP.'
		Nette\Forms\Controls\SelectBox::Valid: 'Please select a valid option.'
		Nette\Forms\Controls\UploadControl::Valid: 'An error occurred during file upload.'
		Nette\Forms\Controls\CsrfProtection::Protection: 'Your session has expired. Please return to the home page and try again.'
```

Oto angielskie tłumaczenie:

```neon
forms:
	messages:
		Equal: 'Zadejte %s.'
		NotEqual: 'Tato hodnota by neměla být %s.'
		Filled: 'Toto pole je povinné.'
		Blank: 'Toto pole by mělo být prázdné.'
		MinLength: 'Zadejte prosím alespoň %d znaků.'
		MaxLength: 'Zadejte prosím maximálně %d znaků.'
		Length: 'Zadejte prosím hodnotu %d až %d znaků dlouho.'
		Email: 'Zadejte platnou e-mailovou adresu.'
		URL: 'Zadejte prosím platné URL.'
		Integer: 'Zadejte platné celé číslo.'
		Float: 'Zadejte platné číslo.'
		Min: 'Zadejte prosím hodnotu větší nebo rovnou %d.'
		Max: 'Zadejte prosím hodnotu menší nebo rovnou %d.'
		Range: 'Zadejte hodnotu mezi %d a %d.'
		MaxFileSize: 'Velikost nahraného souboru může být nejvýše %d bytů.'
		MaxPostSize: 'Nahraná data překračují limit %d bytů.'
		MimeType: 'Nahraný soubor není v očekávaném formátu.'
		Image: 'Nahraný soubor musí být obraz ve formátu JPEG, GIF, PNG nebo WebP.'
		Nette\Forms\Controls\SelectBox::Valid: 'Vyberte prosím platnou možnost.'
		Nette\Forms\Controls\UploadControl::Valid: 'Při nahrávání souboru došlo k chybě.'
		Nette\Forms\Controls\CsrfProtection::Protection: 'Vaše relace vypršela. Vraťte se na domovskou stránku a zkuste to znovu.'
```

Jeśli nie używasz całego frameworka, a więc nawet plików konfiguracyjnych, możesz zmienić domyślne komunikaty o błędach bezpośrednio w polu `Nette\Forms\Validator::$messages`.

Konfiguracja formularzy

W konfiguracji można zmienić domyślne komunikaty błędów formularzy.

forms:
	messages:
		Equal: 'Please enter %s.'
		NotEqual: 'This value should not be %s.'
		Filled: 'This field is required.'
		Blank: 'This field should be blank.'
		MinLength: 'Please enter at least %d characters.'
		MaxLength: 'Please enter no more than %d characters.'
		Length: 'Please enter a value between %d and %d characters long.'
		Email: 'Please enter a valid email address.'
		URL: 'Please enter a valid URL.'
		Integer: 'Please enter a valid integer.'
		Float: 'Please enter a valid number.'
		Min: 'Please enter a value greater than or equal to %d.'
		Max: 'Please enter a value less than or equal to %d.'
		Range: 'Please enter a value between %d and %d.'
		MaxFileSize: 'The size of the uploaded file can be up to %d bytes.'
		MaxPostSize: 'The uploaded data exceeds the limit of %d bytes.'
		MimeType: 'The uploaded file is not in the expected format.'
		Image: 'The uploaded file must be image in format JPEG, GIF, PNG or WebP.'
		Nette\Forms\Controls\SelectBox::Valid: 'Please select a valid option.'
		Nette\Forms\Controls\UploadControl::Valid: 'An error occurred during file upload.'
		Nette\Forms\Controls\CsrfProtection::Protection: 'Your session has expired. Please return to the home page and try again.'

Oto angielskie tłumaczenie:

forms:
	messages:
		Equal: 'Zadejte %s.'
		NotEqual: 'Tato hodnota by neměla být %s.'
		Filled: 'Toto pole je povinné.'
		Blank: 'Toto pole by mělo být prázdné.'
		MinLength: 'Zadejte prosím alespoň %d znaků.'
		MaxLength: 'Zadejte prosím maximálně %d znaků.'
		Length: 'Zadejte prosím hodnotu %d až %d znaků dlouho.'
		Email: 'Zadejte platnou e-mailovou adresu.'
		URL: 'Zadejte prosím platné URL.'
		Integer: 'Zadejte platné celé číslo.'
		Float: 'Zadejte platné číslo.'
		Min: 'Zadejte prosím hodnotu větší nebo rovnou %d.'
		Max: 'Zadejte prosím hodnotu menší nebo rovnou %d.'
		Range: 'Zadejte hodnotu mezi %d a %d.'
		MaxFileSize: 'Velikost nahraného souboru může být nejvýše %d bytů.'
		MaxPostSize: 'Nahraná data překračují limit %d bytů.'
		MimeType: 'Nahraný soubor není v očekávaném formátu.'
		Image: 'Nahraný soubor musí být obraz ve formátu JPEG, GIF, PNG nebo WebP.'
		Nette\Forms\Controls\SelectBox::Valid: 'Vyberte prosím platnou možnost.'
		Nette\Forms\Controls\UploadControl::Valid: 'Při nahrávání souboru došlo k chybě.'
		Nette\Forms\Controls\CsrfProtection::Protection: 'Vaše relace vypršela. Vraťte se na domovskou stránku a zkuste to znovu.'

Jeśli nie używasz całego frameworka, a więc nawet plików konfiguracyjnych, możesz zmienić domyślne komunikaty o błędach bezpośrednio w polu Nette\Forms\Validator::$messages.