|
41 | 41 | 'exists' => 'Избранато поле :attribute вече съществува.',
|
42 | 42 | 'file' => 'Полето :attribute трябва да бъде файл.',
|
43 | 43 | 'filled' => 'Полето :attribute е задължително.',
|
| 44 | + 'gt' => [ |
| 45 | + 'numeric' => 'The :attribute must be greater than :value.', |
| 46 | + 'file' => 'The :attribute must be greater than :value kilobytes.', |
| 47 | + 'string' => 'The :attribute must be greater than :value characters.', |
| 48 | + 'array' => 'The :attribute must have more than :value items.', |
| 49 | + ], |
| 50 | + 'gte' => [ |
| 51 | + 'numeric' => 'The :attribute must be greater than or equal :value.', |
| 52 | + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', |
| 53 | + 'string' => 'The :attribute must be greater than or equal :value characters.', |
| 54 | + 'array' => 'The :attribute must have :value items or more.', |
| 55 | + ], |
44 | 56 | 'image' => 'Полето :attribute трябва да бъде изображение.',
|
45 | 57 | 'in' => 'Избраното поле :attribute е невалидно.',
|
46 | 58 | 'in_array' => 'Полето :attribute не съществува в :other.',
|
|
49 | 61 | 'ipv4' => 'Полето :attribute трябва да бъде IPv4 адрес.',
|
50 | 62 | 'ipv6' => 'Полето :attribute трябва да бъде IPv6 адрес.',
|
51 | 63 | 'json' => 'Полето :attribute трябва да бъде JSON низ.',
|
| 64 | + 'lt' => [ |
| 65 | + 'numeric' => 'The :attribute must be less than :value.', |
| 66 | + 'file' => 'The :attribute must be less than :value kilobytes.', |
| 67 | + 'string' => 'The :attribute must be less than :value characters.', |
| 68 | + 'array' => 'The :attribute must have less than :value items.', |
| 69 | + ], |
| 70 | + 'lte' => [ |
| 71 | + 'numeric' => 'The :attribute must be less than or equal :value.', |
| 72 | + 'file' => 'The :attribute must be less than or equal :value kilobytes.', |
| 73 | + 'string' => 'The :attribute must be less than or equal :value characters.', |
| 74 | + 'array' => 'The :attribute must not have more than :value items.', |
| 75 | + ], |
52 | 76 | 'max' => [
|
53 | 77 | 'numeric' => 'Полето :attribute трябва да бъде по-малко от :max.',
|
54 | 78 | 'file' => 'Полето :attribute трябва да бъде по-малко от :max килобайта.',
|
|
0 commit comments