forked from KRDS/Validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen.php
25 lines (24 loc) · 1.26 KB
/
en.php
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
<?php
return [
'error_lower_than_date' => 'Please indicate a date before %date',
'error_not_empty' => 'This field cannot be empty',
'error_date' => 'Please indicate a valid date',
'error_greater_than_date' => 'Please indicate a date after %date',
'error_lower_than' => 'Please indicate a number lower than %max',
'error_greater_than' => 'Please indicate a number greater than %min',
'error_email' => 'Please enter a valid email address',
'error_empty' => 'This field should be left empty',
'error_float' => 'Please enter a number',
'error_digits' => 'The input may contain digits only',
'error_email_string' => 'Invalid type given. String expected',
'error_depends_on_check' => 'Please check the field %field',
'error_depends_on_empty' => 'Please fill in the field %field',
'error_length_greater_than' => 'This field should contain more than %min chars',
'error_boolean' => 'This field can contain a boolean value only',
'error_in_array' => 'This value is not accepted',
'error_alphanumeric' => 'This field may contain digits and letters only',
'error_required' => 'This field is required',
'error_generic' => 'Please check this field',
'error_length_lower_than' => 'This field should contain less than %max chars',
'error_unchanged' => 'This value cannot be changed',
];