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 трябва да е масив (array).',
18 'backup_codes' => 'The provided code is not valid or has already been used.',
19 'before' => ':attribute трябва да е дата след :date.',
21 'numeric' => ':attribute трябва да е между :min и :max.',
22 'file' => ':attribute трябва да е между :min и :max килобайта.',
23 'string' => 'Дължината на :attribute трябва да бъде между :min и :max символа.',
24 'array' => 'The :attribute must have between :min and :max items.',
26 'boolean' => 'Полето :attribute трябва да съдържа булева стойност (true или false).',
27 'confirmed' => 'Потвърждението на :attribute не съвпада.',
28 'date' => ':attribute не е валидна дата.',
29 'date_format' => ':attribute не е в посоченият формат - :format.',
30 'different' => ':attribute и :other трябва да са различни.',
31 'digits' => ':attribute трябва да съдържа :digits цифри.',
32 'digits_between' => ':attribute трябва да бъде с дължина между :min и :max цифри.',
33 'email' => ':attribute трябва да бъде валиден имейл адрес.',
34 'ends_with' => ':attribute трябва да свършва с един от следните символи: :values',
35 'file' => 'The :attribute must be provided as a valid file.',
36 'filled' => 'Полето :attribute е задължителен.',
38 'numeric' => ':attribute трябва да бъде по-голям от :value.',
39 'file' => 'Големината на :attribute трябва да бъде по-голямо от :value килобайта.',
40 'string' => 'Дължината на :attribute трябва да бъде по-голямо от :value символа.',
41 'array' => 'The :attribute must have more than :value items.',
44 'numeric' => 'The :attribute must be greater than or equal :value.',
45 'file' => 'Големината на :attribute трябва да бъде по-голямо или равно на :value килобайта.',
46 'string' => 'Дължината на :attribute трябва да бъде по-голямо или равно на :value символа.',
47 'array' => 'The :attribute must have :value items or more.',
49 'exists' => 'Избраният :attribute е невалиден.',
50 'image' => ':attribute трябва да e изображение.',
51 'image_extension' => ':attribute трябва да е валиден и/или допустим графичен файлов формат.',
52 'in' => 'Избраният :attribute е невалиден.',
53 'integer' => ':attribute трябва да бъде цяло число.',
54 'ip' => ':attribute трябва да бъде валиден IP адрес.',
55 'ipv4' => ':attribute трябва да бъде валиден IPv4 адрес.',
56 'ipv6' => ':attribute трябва да бъде валиден IPv6 адрес.',
57 'json' => ':attribute трябва да съдържа валиден JSON.',
59 'numeric' => ':attribute трябва да бъде по-малко от :value.',
60 'file' => 'Големината на :attribute трябва да бъде по-малко от :value килобайта.',
61 'string' => 'Дължината на :attribute трябва да бъде по-малко от :value символа.',
62 'array' => 'The :attribute must have less than :value items.',
65 'numeric' => ':attribute трябва да бъде по-малко или равно на :value.',
66 'file' => 'Големината на :attribute трябва да бъде по-малко или равно на :value килобайта.',
67 'string' => 'Дължината на :attribute трябва да бъде по-малко или равно на :value символа.',
68 'array' => 'The :attribute must not have more than :value items.',
71 'numeric' => ':attribute не трябва да бъде по-голям от :max.',
72 'file' => 'Големината на :attribute не може да бъде по-голямо от :value килобайта.',
73 'string' => 'Дължината на :attribute не може да бъде по-голямо от :value символа.',
74 'array' => 'The :attribute may not have more than :max items.',
76 'mimes' => 'The :attribute must be a file of type: :values.',
78 'numeric' => 'The :attribute must be at least :min.',
79 'file' => 'The :attribute must be at least :min kilobytes.',
80 'string' => 'The :attribute must be at least :min characters.',
81 'array' => 'The :attribute must have at least :min items.',
83 'not_in' => 'The selected :attribute is invalid.',
84 'not_regex' => 'The :attribute format is invalid.',
85 'numeric' => 'The :attribute must be a number.',
86 'regex' => 'The :attribute format is invalid.',
87 'required' => 'The :attribute field is required.',
88 'required_if' => 'The :attribute field is required when :other is :value.',
89 'required_with' => 'The :attribute field is required when :values is present.',
90 'required_with_all' => 'The :attribute field is required when :values is present.',
91 'required_without' => 'The :attribute field is required when :values is not present.',
92 'required_without_all' => 'The :attribute field is required when none of :values are present.',
93 'same' => 'The :attribute and :other must match.',
94 'safe_url' => 'The provided link may not be safe.',
96 'numeric' => 'The :attribute must be :size.',
97 'file' => 'The :attribute must be :size kilobytes.',
98 'string' => 'The :attribute must be :size characters.',
99 'array' => 'The :attribute must contain :size items.',
101 'string' => 'The :attribute must be a string.',
102 'timezone' => 'The :attribute must be a valid zone.',
103 'totp' => 'The provided code is not valid or has expired.',
104 'unique' => 'The :attribute has already been taken.',
105 'url' => 'The :attribute format is invalid.',
106 'uploaded' => 'The file could not be uploaded. The server may not accept files of this size.',
108 // Custom validation lines
110 'password-confirm' => [
111 'required_with' => 'Password confirmation required',
115 // Custom validation attributes