Файл: lang/me/validation.php
Строк: 194
<?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| as the size rules. Feel free to tweak each of these messages here.
|
*/
'accepted' => 'Polje :attribute mora biti prihvaćeno.',
'active_url' => 'Polje :attribute nije validan URL.',
'after' => 'Polje :attribute mora biti datum poslije :date.',
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
'alpha' => 'Polje :attribute može sadržati samo slova.',
'alpha_dash' => 'Polje :attribute može sadržati samo slova, brojeve i crtice.',
'alpha_num' => 'Polje :attribute može sadržati samo slova i brojeve.',
'array' => 'Polje :attribute mora sadržati određen broj stavki.',
'before' => 'Polje :attribute mora biti datum prije :date.',
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
'between' => [
'numeric' => 'Polje :attribute mora biti između :min - :max.',
'file' => 'Fajl :attribute mora biti između :min - :max kilobajta.',
'string' => 'Polje :attribute mora sadržati između :min - :max karaktera.',
'array' => 'Polje :attribute mora sadržati između :min - :max stavki.',
],
'boolean' => 'The :attribute field must be true or false',
'confirmed' => 'Potvrda polja :attribute se ne poklapa.',
'date' => 'Polje :attribute nije važeći datum.',
'date_equals' => 'The :attribute must be a date equal to :date.',
'date_format' => 'Polje :attribute nije u formatu :format.',
'different' => 'Polja :attribute i :other moraju biti različita.',
'digits' => 'Polje :attribute mora sadržati :digits cifara.',
'digits_between' => 'Polje :attribute mora biti izemđu :min i :max cifri.',
'dimensions' => 'The :attribute has invalid image dimensions.',
'distinct' => 'Polje :attribute nije jedinstveno.',
'email' => 'Format polja :attribute nije validan.',
'ends_with' => 'The :attribute must end with one of the following: :values',
'exists' => 'Odabrano polje :attribute nije validno.',
'file' => 'The :attribute must be a file.',
'filled' => 'Polje :attribute je obavezno.',
'gt' => [
'numeric' => 'The :attribute must be greater than :value.',
'file' => 'The :attribute must be greater than :value kilobytes.',
'string' => 'The :attribute must be greater than :value characters.',
'array' => 'The :attribute must have more than :value items.',
],
'gte' => [
'numeric' => 'The :attribute must be greater than or equal :value.',
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
'string' => 'The :attribute must be greater than or equal :value characters.',
'array' => 'The :attribute must have :value items or more.',
],
'image' => 'Polje :attribute mora biti slika.',
'in' => 'Odabrano polje :attribute nije validno.',
'in_array' => 'Polje :attribute ne postoji u :other.',
'integer' => 'Polje :attribute mora biti broj.',
'ip' => 'Polje :attribute mora biti validna IP adresa.',
'ipv4' => 'The :attribute must be a valid IPv4 address.',
'ipv6' => 'The :attribute must be a valid IPv6 address.',
'json' => 'Polje :attribute mora biti validan JSON string.',
'lt' => [
'numeric' => 'The :attribute must be less than :value.',
'file' => 'The :attribute must be less than :value kilobytes.',
'string' => 'The :attribute must be less than :value characters.',
'array' => 'The :attribute must have less than :value items.',
],
'lte' => [
'numeric' => 'The :attribute must be less than or equal :value.',
'file' => 'The :attribute must be less than or equal :value kilobytes.',
'string' => 'The :attribute must be less than or equal :value characters.',
'array' => 'The :attribute must not have more than :value items.',
],
'max' => [
'numeric' => 'Polje :attribute mora biti manje od :max.',
'file' => 'Polje :attribute mora biti manje od :max kilobajta.',
'string' => 'Polje :attribute mora sadržati manje od :max karaktera.',
'array' => 'Polje :attribute ne smije da image više od :max stavki.',
],
'mimes' => 'Polje :attribute mora biti fajl tipa: :values.',
'mimetypes' => 'Polje :attribute mora biti fajl tipa: :values.',
'min' => [
'numeric' => 'Polje :attribute mora biti najmanje :min.',
'file' => 'Fajl :attribute mora biti najmanje :min kilobajta.',
'string' => 'Polje :attribute mora sadržati najmanje :min karaktera.',
'array' => 'Polje :attribute mora sadrzati najmanje :min stavke.',
],
'not_in' => 'Odabrani element polja :attribute nije validan.',
'not_regex' => 'The :attribute format is invalid.',
'numeric' => 'Polje :attribute mora biti broj.',
'present' => 'Polje :attribute mora postojati.',
'regex' => 'Format polja :attribute nije validan.',
'required' => 'Polje :attribute je obavezno.',
'required_if' => 'Polje :attribute je potrebno kada polje :other sadrži :value.',
'required_unless' => 'Polje :attribute je obavezno osim ako :other sadrži :values.',
'required_with' => 'Polje :attribute je obavezno kada polje :values je prisutan.',
'required_with_all' => 'Polje :attribute je obavezno kada polja :values nijesu prazna.',
'required_without' => 'Polje :attribute je potrebno kada polje :values nije prazno.',
'required_without_all' => 'Polje :attribute je potrebno kada nijedno od polja :values nije prisutno ili prazno.',
'same' => 'Polja :attribute i :other se moraju poklapati.',
'size' => [
'numeric' => 'Polje :attribute mora biti :size.',
'file' => 'Fajl :attribute mora biti :size kilobajta.',
'string' => 'Polje :attribute mora biti :size karaktera.',
'array' => 'Polje :attribute mora sadržati :size stavki.',
],
'starts_with' => 'The :attribute must start with one of the following: :values',
'string' => 'Polje :attribute mora biti string.',
'timezone' => 'The :attribute must be a valid zone.',
'unique' => 'Vrijednost za polje :attribute već postoji.',
'uploaded' => 'The :attribute failed to upload.',
'url' => 'Format polja :attribute ne važi.',
'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention 'attribute.rule' to name the lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/
'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
],
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap attribute place-holders
| with something more reader friendly such as E-Mail Address instead
| of 'email'. This simply helps us make messages a little cleaner.
|
*/
'attributes' => [
'name' => 'ime',
'username' => 'username',
'email' => 'email',
'first_name' => 'ime',
'last_name' => 'prezime',
'password' => 'password',
'password_confirmation' => 'ponovi password',
'city' => 'grad',
'country' => 'država',
'address' => 'adresa',
'phone' => 'telefona',
'mobile' => 'mobilni',
'age' => 'godine',
'sex' => 'pol',
'gender' => 'pol',
'year' => 'godina',
'month' => 'mjesec',
'day' => 'dan',
'hour' => 'sat',
'minute' => 'minuta',
'second' => 'sekunda',
'title' => 'naslov',
'body' => 'tijelo poruke',
'description' => 'opis',
'excerpt' => 'extracto',
'date' => 'datum',
'time' => 'vrijeme',
'subject' => 'naslov',
'message' => 'poruka',
],
];