4 * The following language lines contain the default error messages used by
5 * the validator class. Some of these rules have multiple versions such
6 * as the size rules. Feel free to tweak each of these messages here.
10 // Standard laravel validation lines
11 'accepted' => ':attribute повинен бути прийнятий.',
12 'active_url' => ':attribute не є дійсною URL-адресою.',
13 'after' => ':attribute повинно бути датою після :date.',
14 'alpha' => ':attribute може містити лише літери.',
15 'alpha_dash' => ':attribute може містити лише літери, цифри та дефіси.',
16 'alpha_num' => ':attribute може містити лише літери та цифри.',
17 'array' => ':attribute повинен бути масивом.',
18 'before' => ':attribute повинен бути датою до :date.',
20 'numeric' => ':attribute повинен бути між :min та :max.',
21 'file' => ':attribute повинен бути між :min та :max кілобайт.',
22 'string' => ':attribute повинен бути між :min та :max символів.',
23 'array' => ':attribute повинен бути між :min та :max елементів.',
25 'boolean' => ':attribute поле має бути true або false.',
26 'confirmed' => ':attribute підтвердження не збігається.',
27 'date' => ':attribute не є дійсною датою.',
28 'date_format' => ':attribute не відповідає формату :format.',
29 'different' => ':attribute та :other повинні бути різними.',
30 'digits' => ':attribute повинні бути :digits цифрами.',
31 'digits_between' => ':attribute має бути між :min та :max цифр.',
32 'email' => ':attribute повинна бути дійсною електронною адресою.',
33 'ends_with' => 'The :attribute must end with one of the following: :values',
34 'filled' => ':attribute поле обов\'язкове.',
36 'numeric' => 'The :attribute must be greater than :value.',
37 'file' => ':attribute має бути більшим ніж :value кілобайт.',
38 'string' => 'The :attribute must be greater than :value characters.',
39 'array' => 'The :attribute must have more than :value items.',
42 'numeric' => 'The :attribute must be greater than or equal :value.',
43 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
44 'string' => 'The :attribute must be greater than or equal :value characters.',
45 'array' => 'The :attribute must have :value items or more.',
47 'exists' => 'Вибраний :attribute недійсний.',
48 'image' => ':attribute повинен бути зображенням.',
49 'image_extension' => ':attribute повинен мати дійсне та підтримуване розширення зображення.',
50 'in' => 'Вибраний :attribute недійсний.',
51 'integer' => ':attribute повинен бути цілим числом.',
52 'ip' => ':attribute повинна бути дійсною IP-адресою.',
53 'ipv4' => 'The :attribute must be a valid IPv4 address.',
54 'ipv6' => 'The :attribute must be a valid IPv6 address.',
55 'json' => 'The :attribute must be a valid JSON string.',
57 'numeric' => 'The :attribute must be less than :value.',
58 'file' => 'The :attribute must be less than :value kilobytes.',
59 'string' => 'The :attribute must be less than :value characters.',
60 'array' => 'The :attribute must have less than :value items.',
63 'numeric' => 'The :attribute must be less than or equal :value.',
64 'file' => 'The :attribute must be less than or equal :value kilobytes.',
65 'string' => 'The :attribute must be less than or equal :value characters.',
66 'array' => 'The :attribute must not have more than :value items.',
69 'numeric' => ':attribute не може бути більшим за :max.',
70 'file' => ':attribute не може бути більшим за :max кілобайт.',
71 'string' => ':attribute не може бути більшим за :max символів.',
72 'array' => ':attribute не може бути більше ніж :max елементів.',
74 'mimes' => ':attribute повинен бути файлом типу: :values.',
76 'numeric' => ':attribute повинен бути принаймні :min.',
77 'file' => ':attribute повинен бути принаймні :min кілобайт.',
78 'string' => ':attribute повинен бути принаймні :min символів.',
79 'array' => ':attribute повинен містити принаймні :min елементів.',
81 'no_double_extension' => ':attribute повинен мати тільки одне розширення файлу.',
82 'not_in' => 'Вибраний :attribute недійсний.',
83 'not_regex' => 'The :attribute format is invalid.',
84 'numeric' => ':attribute повинен бути числом.',
85 'regex' => ':attribute формат недійсний.',
86 'required' => ':attribute поле обов\'язкове.',
87 'required_if' => ':attribute поле бов\'язкове, коли :other з значенням :value.',
88 'required_with' => ':attribute поле бов\'язкове, коли :values встановлено.',
89 'required_with_all' => ':attribute поле бов\'язкове, коли :values встановлені.',
90 'required_without' => ':attribute поле бов\'язкове, коли :values не встановлені.',
91 'required_without_all' => ':attribute поле бов\'язкове, коли жодне з :values не встановлене.',
92 'same' => ':attribute та :other мають збігатись.',
94 'numeric' => ':attribute має бути :size.',
95 'file' => ':attribute має бути :size кілобайт.',
96 'string' => ':attribute має бути :size символів.',
97 'array' => ':attribute має містити :size елементів.',
99 'string' => ':attribute повинен бути рядком.',
100 'timezone' => ':attribute повинен бути дійсною зоною.',
101 'unique' => ':attribute вже є.',
102 'url' => ':attribute формат недійсний.',
103 'uploaded' => 'Не вдалося завантажити файл. Сервер може не приймати файли такого розміру.',
105 // Custom validation lines
107 'password-confirm' => [
108 'required_with' => 'Необхідне підтвердження пароля',
112 // Custom validation attributes