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