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 mora biti potrjen.',
12 'active_url' => ':attribute ni veljaven URL.',
13 'after' => ':attribute mora biti datum po :date.',
14 'alpha' => ':attribute lahko vsebuje samo črke.',
15 'alpha_dash' => ':attribute lahko vsebuje samo črke, številke, pomišljaje in podčrtaje.',
16 'alpha_num' => ':attribute lahko vsebuje samo črke in številke.',
17 'array' => ':attribute mora biti niz.',
18 'backup_codes' => 'Podana koda ni veljavna ali je že uporabljena.',
19 'before' => ':attribute mora biti datum pred :date.',
21 'numeric' => ':attribute mora biti med :min in :max.',
22 'file' => ':attribute mora biti med :min in :max kilobajti.',
23 'string' => ':attribute mora biti med :min in :max znaki.',
24 'array' => ':attribute mora imeti med :min in :max elementov.',
26 'boolean' => ':attribute polje mora biti pravilno ali napačno.',
27 'confirmed' => ':attribute potrditev se ne ujema.',
28 'date' => ':attribute ni veljaven datum.',
29 'date_format' => ':attribute se ne ujema z obliko :format.',
30 'different' => ':attribute in :other morata biti različna.',
31 'digits' => 'Atribut mora biti: števnik.',
32 'digits_between' => ':attribute mora biti med :min in :max števkami.',
33 'email' => ':attribute mora biti veljaven e-naslov.',
34 'ends_with' => 'The :attribute se mora končati z eno od določenih: :vrednost/values',
35 'file' => ':attribute ni veljavna datoteka.',
36 'filled' => 'Polje ne sme biti prazno.',
38 'numeric' => ':attribute mora biti večji kot :vrednost.',
39 'file' => ':attribute mora biti večji kot :vrednost kilobytes',
40 'string' => ':attribute mora biti večji kot :vrednost znakov',
41 'array' => ':attribute mora biti večji kot :vrednost znakov',
44 'numeric' => ':attribute mora biti večji kot ali enak :vrednost.',
45 'file' => ':attribute mora biti večji kot ali enak :vrednost kilobytes',
46 'string' => ':attribute mora biti večji kot ali enak :vrednost znakov',
47 'array' => ':attribute mora imeti :vrednost znakov ali več',
49 'exists' => 'Izbrani atribut je neveljaven.',
50 'image' => ':attribute mora biti slika.',
51 'image_extension' => ':attribute mora imeti veljavno & podprto slikovno pripono',
52 'in' => 'izbran :attribute je neveljaven.',
53 'integer' => ':attribute mora biti celo število.',
54 'ip' => ':attribute mora biti veljaven IP naslov.',
55 'ipv4' => ':attribute mora biti veljaven IPv4 naslov.',
56 'ipv6' => ':attribute mora biti veljaven IPv6 naslov.',
57 'json' => ':attribute mora biti veljavna JSON povezava.',
59 'numeric' => ':attribute mora biti manj kot :vrednost.',
60 'file' => ':attribute mora biti manj kot :vrednost kilobytes',
61 'string' => ':attribute mora biti manj kot :vrednost znakov',
62 'array' => ':attribute mora imeti manj kot :vrednost znakov',
65 'numeric' => ':attribute mora biti manj kot ali enak :vrednost.',
66 'file' => ':attribute mora biti manj kot ali enak :vrednost kilobytes',
67 'string' => ':attribute mora biti manj kot ali enak :vrednost znakov',
68 'array' => ':attribute ne sme imeti več kot :vrednost elementov',
71 'numeric' => ':attribute ne sme biti večja od :max.',
72 'file' => ':attribute ne sme biti večja od :max kilobytes.',
73 'string' => 'Atribut naj ne bo večji od: max znakov.',
74 'array' => ':attribute ne sme imeti več kot :max elementov.',
76 'mimes' => 'Atribut mora biti datoteka vrste:: vrednost.',
78 'numeric' => ':attribute mora biti najmanj :min.',
79 'file' => ':attribute mora biti najmanj :min KB.',
80 'string' => ':attribute mora biti najmanj :min znakov.',
81 'array' => ':attribute mora imeti vsaj :min elementov.',
83 'not_in' => 'Izbrani atribut je neveljaven.',
84 'not_regex' => ':attribute oblika ni veljavna.',
85 'numeric' => 'Atribut mora biti število.',
86 'regex' => ':attribute oblika ni veljavna.',
87 'required' => 'Polje :attribute je obvezno.',
88 'required_if' => 'Polje atributa je obvezno, če: drugo je: vrednost.',
89 'required_with' => 'Polje atributa je obvezno, ko: so prisotne vrednosti.',
90 'required_with_all' => 'Polje atributa je obvezno, ko: so prisotne vrednosti.',
91 'required_without' => 'Polje atributa je obvezno, če: vrednosti niso prisotne.',
92 'required_without_all' => 'Polje atributa je obvezno, če nobena od: vrednosti ni prisotna.',
93 'same' => 'Atribut in: drugi se morajo ujemati.',
94 'safe_url' => 'Podana povezava morda ni varna.',
96 'numeric' => ':attribute mora biti :velikost.',
97 'file' => ':attribute mora biti :velikost KB.',
98 'string' => 'Atribut mora biti: velikost znakov.',
99 'array' => ':attribute mora vsebovati :velikost elementov.',
101 'string' => ':attribute mora biti niz.',
102 'timezone' => ':attribute mora biti veljavna cona.',
103 'totp' => 'Podana koda ni veljavna ali je zapadla.',
104 'unique' => ':attribute je že zaseden.',
105 'url' => ':attribute oblika ni veljavna.',
106 'uploaded' => 'Datoteke ni bilo mogoče naložiti. Strežnik morda ne sprejema datotek te velikosti.',
108 'zip_file' => 'The :attribute needs to reference a file within the ZIP.',
109 'zip_file_mime' => 'The :attribute needs to reference a file of type :validTypes, found :foundType.',
110 'zip_model_expected' => 'Data object expected but ":type" found.',
111 'zip_unique' => 'The :attribute must be unique for the object type within the ZIP.',
113 // Custom validation lines
115 'password-confirm' => [
116 'required_with' => 'Potrditev gesla',
120 // Custom validation attributes