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 'filled' => 'Полето :attribute е задължителен.',
37 'numeric' => ':attribute трябва да бъде по-голям от :value.',
38 'file' => 'Големината на :attribute трябва да бъде по-голямо от :value килобайта.',
39 'string' => 'Дължината на :attribute трябва да бъде по-голямо от :value символа.',
40 'array' => 'The :attribute must have more than :value items.',
43 'numeric' => 'The :attribute must be greater than or equal :value.',
44 'file' => 'Големината на :attribute трябва да бъде по-голямо или равно на :value килобайта.',
45 'string' => 'Дължината на :attribute трябва да бъде по-голямо или равно на :value символа.',
46 'array' => 'The :attribute must have :value items or more.',
48 'exists' => 'Избраният :attribute е невалиден.',
49 'image' => ':attribute трябва да e изображение.',
50 'image_extension' => ':attribute трябва да е валиден и/или допустим графичен файлов формат.',
51 'in' => 'Избраният :attribute е невалиден.',
52 'integer' => ':attribute трябва да бъде цяло число.',
53 'ip' => ':attribute трябва да бъде валиден IP адрес.',
54 'ipv4' => ':attribute трябва да бъде валиден IPv4 адрес.',
55 'ipv6' => ':attribute трябва да бъде валиден IPv6 адрес.',
56 'json' => ':attribute трябва да съдържа валиден JSON.',
58 'numeric' => ':attribute трябва да бъде по-малко от :value.',
59 'file' => 'Големината на :attribute трябва да бъде по-малко от :value килобайта.',
60 'string' => 'Дължината на :attribute трябва да бъде по-малко от :value символа.',
61 'array' => 'The :attribute must have less than :value items.',
64 'numeric' => ':attribute трябва да бъде по-малко или равно на :value.',
65 'file' => 'Големината на :attribute трябва да бъде по-малко или равно на :value килобайта.',
66 'string' => 'Дължината на :attribute трябва да бъде по-малко или равно на :value символа.',
67 'array' => 'The :attribute must not have more than :value items.',
70 'numeric' => ':attribute не трябва да бъде по-голям от :max.',
71 'file' => 'Големината на :attribute не може да бъде по-голямо от :value килобайта.',
72 'string' => 'Дължината на :attribute не може да бъде по-голямо от :value символа.',
73 'array' => 'The :attribute may not have more than :max items.',
75 'mimes' => 'The :attribute must be a file of type: :values.',
77 'numeric' => 'The :attribute must be at least :min.',
78 'file' => 'The :attribute must be at least :min kilobytes.',
79 'string' => 'The :attribute must be at least :min characters.',
80 'array' => 'The :attribute must have at least :min items.',
82 'not_in' => 'The selected :attribute is invalid.',
83 'not_regex' => 'The :attribute format is invalid.',
84 'numeric' => 'The :attribute must be a number.',
85 'regex' => 'The :attribute format is invalid.',
86 'required' => 'The :attribute field is required.',
87 'required_if' => 'The :attribute field is required when :other is :value.',
88 'required_with' => 'The :attribute field is required when :values is present.',
89 'required_with_all' => 'The :attribute field is required when :values is present.',
90 'required_without' => 'The :attribute field is required when :values is not present.',
91 'required_without_all' => 'The :attribute field is required when none of :values are present.',
92 'same' => 'The :attribute and :other must match.',
93 'safe_url' => 'The provided link may not be safe.',
95 'numeric' => 'The :attribute must be :size.',
96 'file' => 'The :attribute must be :size kilobytes.',
97 'string' => 'The :attribute must be :size characters.',
98 'array' => 'The :attribute must contain :size items.',
100 'string' => 'The :attribute must be a string.',
101 'timezone' => 'The :attribute must be a valid zone.',
102 'totp' => 'The provided code is not valid or has expired.',
103 'unique' => 'The :attribute has already been taken.',
104 'url' => 'The :attribute format is invalid.',
105 'uploaded' => 'The file could not be uploaded. The server may not accept files of this size.',
107 // Custom validation lines
109 'password-confirm' => [
110 'required_with' => 'Password confirmation required',
114 // Custom validation attributes