forked from nette/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.texy
33 lines (30 loc) · 1.58 KB
/
configuration.texy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Configurazione dei moduli
*************************
.[perex]
È possibile modificare i [messaggi di errore |validation] predefiniti dei [moduli |validation] nella configurazione.
```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.'
```
Se non si utilizza l'intero framework e quindi nemmeno i file di configurazione, è possibile modificare i messaggi di errore predefiniti direttamente nel campo `Nette\Forms\Validator::$messages`.