mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
Apply Laravel coding style
Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions. You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root. For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
This commit is contained in:
committed by
HolgerHatGarKeineNode
parent
a15ca4a2bc
commit
5776b01d15
@@ -1,11 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'' =>
|
||||
array (
|
||||
'' =>
|
||||
array (
|
||||
'' => '',
|
||||
),
|
||||
),
|
||||
);
|
||||
return [
|
||||
'' => [
|
||||
'' => [
|
||||
'' => '',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'failed' => 'Ovi podaci ne odgovaraju našima.',
|
||||
'password' => 'Lozinka je pogrešna.',
|
||||
'throttle' => 'Previše pokušaja prijave. Molim Vas pokušajte ponovno za :seconds sekundi.',
|
||||
);
|
||||
return [
|
||||
'failed' => 'Ovi podaci ne odgovaraju našima.',
|
||||
'password' => 'Lozinka je pogrešna.',
|
||||
'throttle' => 'Previše pokušaja prijave. Molim Vas pokušajte ponovno za :seconds sekundi.',
|
||||
];
|
||||
|
||||
@@ -1,82 +1,82 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
0 => 'Unknown Error',
|
||||
'unknownError' => 'Unknown Error',
|
||||
100 => 'Continue',
|
||||
101 => 'Switching Protocols',
|
||||
102 => 'Processing',
|
||||
200 => 'OK',
|
||||
201 => 'Created',
|
||||
202 => 'Accepted',
|
||||
203 => 'Non-Authoritative Information',
|
||||
204 => 'No Content',
|
||||
205 => 'Reset Content',
|
||||
206 => 'Partial Content',
|
||||
207 => 'Multi-Status',
|
||||
208 => 'Already Reported',
|
||||
226 => 'IM Used',
|
||||
300 => 'Multiple Choices',
|
||||
301 => 'Moved Permanently',
|
||||
302 => 'Found',
|
||||
303 => 'See Other',
|
||||
304 => 'Not Modified',
|
||||
305 => 'Use Proxy',
|
||||
307 => 'Temporary Redirect',
|
||||
308 => 'Permanent Redirect',
|
||||
400 => 'Bad Request',
|
||||
401 => 'Unauthorized',
|
||||
402 => 'Payment Required',
|
||||
403 => 'Forbidden',
|
||||
404 => 'Not Found',
|
||||
405 => 'Method Not Allowed',
|
||||
406 => 'Not Acceptable',
|
||||
407 => 'Proxy Authentication Required',
|
||||
408 => 'Request Timeout',
|
||||
409 => 'Conflict',
|
||||
410 => 'Gone',
|
||||
411 => 'Length Required',
|
||||
412 => 'Precondition Failed',
|
||||
413 => 'Payload Too Large',
|
||||
414 => 'URI Too Long',
|
||||
415 => 'Unsupported Media Type',
|
||||
416 => 'Range Not Satisfiable',
|
||||
417 => 'Expectation Failed',
|
||||
418 => 'I\'m a teapot',
|
||||
419 => 'Session Has Expired',
|
||||
421 => 'Misdirected Request',
|
||||
422 => 'Unprocessable Entity',
|
||||
423 => 'Locked',
|
||||
424 => 'Failed Dependency',
|
||||
425 => 'Too Early',
|
||||
426 => 'Upgrade Required',
|
||||
428 => 'Precondition Required',
|
||||
429 => 'Too Many Requests',
|
||||
431 => 'Request Header Fields Too Large',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Retry With',
|
||||
451 => 'Unavailable For Legal Reasons',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Internal Server Error',
|
||||
501 => 'Not Implemented',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Maintenance Mode',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version Not Supported',
|
||||
506 => 'Variant Also Negotiates',
|
||||
507 => 'Insufficient Storage',
|
||||
508 => 'Loop Detected',
|
||||
509 => 'Bandwidth Limit Exceeded',
|
||||
510 => 'Not Extended',
|
||||
511 => 'Network Authentication Required',
|
||||
520 => 'Unknown Error',
|
||||
521 => 'Web Server is Down',
|
||||
522 => 'Connection Timed Out',
|
||||
523 => 'Origin Is Unreachable',
|
||||
524 => 'A Timeout Occurred',
|
||||
525 => 'SSL Handshake Failed',
|
||||
526 => 'Invalid SSL Certificate',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
);
|
||||
return [
|
||||
0 => 'Unknown Error',
|
||||
'unknownError' => 'Unknown Error',
|
||||
100 => 'Continue',
|
||||
101 => 'Switching Protocols',
|
||||
102 => 'Processing',
|
||||
200 => 'OK',
|
||||
201 => 'Created',
|
||||
202 => 'Accepted',
|
||||
203 => 'Non-Authoritative Information',
|
||||
204 => 'No Content',
|
||||
205 => 'Reset Content',
|
||||
206 => 'Partial Content',
|
||||
207 => 'Multi-Status',
|
||||
208 => 'Already Reported',
|
||||
226 => 'IM Used',
|
||||
300 => 'Multiple Choices',
|
||||
301 => 'Moved Permanently',
|
||||
302 => 'Found',
|
||||
303 => 'See Other',
|
||||
304 => 'Not Modified',
|
||||
305 => 'Use Proxy',
|
||||
307 => 'Temporary Redirect',
|
||||
308 => 'Permanent Redirect',
|
||||
400 => 'Bad Request',
|
||||
401 => 'Unauthorized',
|
||||
402 => 'Payment Required',
|
||||
403 => 'Forbidden',
|
||||
404 => 'Not Found',
|
||||
405 => 'Method Not Allowed',
|
||||
406 => 'Not Acceptable',
|
||||
407 => 'Proxy Authentication Required',
|
||||
408 => 'Request Timeout',
|
||||
409 => 'Conflict',
|
||||
410 => 'Gone',
|
||||
411 => 'Length Required',
|
||||
412 => 'Precondition Failed',
|
||||
413 => 'Payload Too Large',
|
||||
414 => 'URI Too Long',
|
||||
415 => 'Unsupported Media Type',
|
||||
416 => 'Range Not Satisfiable',
|
||||
417 => 'Expectation Failed',
|
||||
418 => 'I\'m a teapot',
|
||||
419 => 'Session Has Expired',
|
||||
421 => 'Misdirected Request',
|
||||
422 => 'Unprocessable Entity',
|
||||
423 => 'Locked',
|
||||
424 => 'Failed Dependency',
|
||||
425 => 'Too Early',
|
||||
426 => 'Upgrade Required',
|
||||
428 => 'Precondition Required',
|
||||
429 => 'Too Many Requests',
|
||||
431 => 'Request Header Fields Too Large',
|
||||
444 => 'Connection Closed Without Response',
|
||||
449 => 'Retry With',
|
||||
451 => 'Unavailable For Legal Reasons',
|
||||
499 => 'Client Closed Request',
|
||||
500 => 'Internal Server Error',
|
||||
501 => 'Not Implemented',
|
||||
502 => 'Bad Gateway',
|
||||
503 => 'Maintenance Mode',
|
||||
504 => 'Gateway Timeout',
|
||||
505 => 'HTTP Version Not Supported',
|
||||
506 => 'Variant Also Negotiates',
|
||||
507 => 'Insufficient Storage',
|
||||
508 => 'Loop Detected',
|
||||
509 => 'Bandwidth Limit Exceeded',
|
||||
510 => 'Not Extended',
|
||||
511 => 'Network Authentication Required',
|
||||
520 => 'Unknown Error',
|
||||
521 => 'Web Server is Down',
|
||||
522 => 'Connection Timed Out',
|
||||
523 => 'Origin Is Unreachable',
|
||||
524 => 'A Timeout Occurred',
|
||||
525 => 'SSL Handshake Failed',
|
||||
526 => 'Invalid SSL Certificate',
|
||||
527 => 'Railgun Error',
|
||||
598 => 'Network Read Timeout Error',
|
||||
599 => 'Network Connect Timeout Error',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'next' => 'Sljedeća »',
|
||||
'previous' => '« Prethodna',
|
||||
);
|
||||
return [
|
||||
'next' => 'Sljedeća »',
|
||||
'previous' => '« Prethodna',
|
||||
];
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'reset' => 'Lozinka je ponovno postavljena!',
|
||||
'sent' => 'E-mail sa poveznicom za ponovno postavljanje lozinke je poslan!',
|
||||
'throttled' => 'Molimo pričekajte prije ponovnog pokušaja!',
|
||||
'token' => 'Oznaka za ponovno postavljanje lozinke više nije važeća.',
|
||||
'user' => 'Korisnik s navedenom e-mail adresom nije pronađen.',
|
||||
);
|
||||
return [
|
||||
'reset' => 'Lozinka je ponovno postavljena!',
|
||||
'sent' => 'E-mail sa poveznicom za ponovno postavljanje lozinke je poslan!',
|
||||
'throttled' => 'Molimo pričekajte prije ponovnog pokušaja!',
|
||||
'token' => 'Oznaka za ponovno postavljanje lozinke više nije važeća.',
|
||||
'user' => 'Korisnik s navedenom e-mail adresom nije pronađen.',
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
);
|
||||
return [
|
||||
'first_match' => '',
|
||||
'third_match' => '',
|
||||
];
|
||||
|
||||
@@ -1,218 +1,208 @@
|
||||
<?php
|
||||
|
||||
return array (
|
||||
'accepted' => 'Polje :attribute mora biti prihvaćeno.',
|
||||
'accepted_if' => 'Polje :attribute mora biti prihvaćeno kada je :other jednako :value.',
|
||||
'active_url' => 'Polje :attribute nije ispravan URL.',
|
||||
'after' => 'Polje :attribute mora biti datum nakon :date.',
|
||||
'after_or_equal' => 'Polje :attribute mora biti datum veći ili jednak :date.',
|
||||
'alpha' => 'Polje :attribute smije sadržavati samo slova.',
|
||||
'alpha_dash' => 'Polje :attribute smije sadržavati samo slova, brojeve i crtice.',
|
||||
'alpha_num' => 'Polje :attribute smije sadržavati samo slova i brojeve.',
|
||||
'array' => 'Polje :attribute mora biti niz.',
|
||||
'attached' => 'Polje :attribute je već prikvačeno.',
|
||||
'attributes' =>
|
||||
array (
|
||||
'address' => 'adresa',
|
||||
'age' => 'dob',
|
||||
'amount' => 'iznos',
|
||||
'area' => 'površina',
|
||||
'available' => 'dostupno',
|
||||
'birthday' => 'rođendan',
|
||||
'body' => 'tijelo',
|
||||
'city' => 'grad',
|
||||
'content' => 'sadržaj',
|
||||
'country' => 'država',
|
||||
'created_at' => 'kreirano',
|
||||
'creator' => 'autor',
|
||||
'current_password' => 'trenutna lozinka',
|
||||
'date' => 'datum',
|
||||
'date_of_birth' => 'datum rođenja',
|
||||
'day' => 'dan',
|
||||
'deleted_at' => 'obrisano',
|
||||
'description' => 'opis',
|
||||
'district' => 'općina',
|
||||
'duration' => 'trajanje',
|
||||
'email' => 'email',
|
||||
'excerpt' => 'izdvojeno',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'ime',
|
||||
'gender' => 'spol',
|
||||
'group' => 'grupa',
|
||||
'hour' => 'sat',
|
||||
'image' => 'slika',
|
||||
'last_name' => 'prezime',
|
||||
'lesson' => 'lekcija',
|
||||
'line_address_1' => 'adresa',
|
||||
'line_address_2' => 'dodatak adresi',
|
||||
'message' => 'poruka',
|
||||
'middle_name' => 'srednje ime',
|
||||
'minute' => 'minuta',
|
||||
'mobile' => 'mobitel',
|
||||
'month' => 'mjesec',
|
||||
'name' => 'ime',
|
||||
'national_code' => 'Nacionalni kod',
|
||||
'number' => 'broj',
|
||||
'password' => 'lozinka',
|
||||
'password_confirmation' => 'potvrda lozinke',
|
||||
'phone' => 'telefon',
|
||||
'photo' => 'fotografija',
|
||||
'postal_code' => 'poštanski broj',
|
||||
'price' => 'cijena',
|
||||
'province' => 'pokrajina',
|
||||
'recaptcha_response_field' => 'recaptcha polje',
|
||||
'remember' => 'zapamti me',
|
||||
'restored_at' => 'vraćeno',
|
||||
'result_text_under_image' => 'tekst rezultata ispod slike',
|
||||
'role' => 'uloga',
|
||||
'second' => 'sekunda',
|
||||
'sex' => 'spol',
|
||||
'short_text' => 'kratak tekst',
|
||||
'size' => 'veličina',
|
||||
'state' => 'država',
|
||||
'street' => 'ulica',
|
||||
'student' => 'učenik',
|
||||
'subject' => 'predmet',
|
||||
'teacher' => 'učitelj',
|
||||
'terms' => 'uvjeti',
|
||||
'test_description' => 'testni opis',
|
||||
'test_locale' => 'testni jezik',
|
||||
'test_name' => 'testno ime',
|
||||
'text' => 'tekst',
|
||||
'time' => 'vrijeme',
|
||||
'title' => 'naslov',
|
||||
'updated_at' => 'ažurirano',
|
||||
'username' => 'korisničko ime',
|
||||
'year' => 'godina',
|
||||
),
|
||||
'before' => 'Polje :attribute mora biti datum prije :date.',
|
||||
'before_or_equal' => 'Polje :attribute mora biti datum manji ili jednak :date.',
|
||||
'between' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute mora imati između :min - :max stavki.',
|
||||
'file' => 'Polje :attribute mora biti između :min - :max kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti između :min - :max.',
|
||||
'string' => 'Polje :attribute mora biti između :min - :max znakova.',
|
||||
),
|
||||
'boolean' => 'Polje :attribute mora biti false ili true.',
|
||||
'confirmed' => 'Potvrda polja :attribute se ne podudara.',
|
||||
'current_password' => 'Lozinka nije ispravna.',
|
||||
'date' => 'Polje :attribute nije ispravan datum.',
|
||||
'date_equals' => 'Stavka :attribute mora biti jednaka :date.',
|
||||
'date_format' => 'Polje :attribute ne podudara s formatom :format.',
|
||||
'declined' => 'Polje :attribute mora biti odbijeno.',
|
||||
'declined_if' => 'Polje :attribute mora biti odbijeno kada je :other jednako :value.',
|
||||
'different' => 'Polja :attribute i :other moraju biti različita.',
|
||||
'digits' => 'Polje :attribute mora sadržavati :digits znamenki.',
|
||||
'digits_between' => 'Polje :attribute mora imati između :min i :max znamenki.',
|
||||
'dimensions' => 'Polje :attribute ima neispravne dimenzije slike.',
|
||||
'distinct' => 'Polje :attribute ima dupliciranu vrijednost.',
|
||||
'doesnt_end_with' => 'Polje :attribute ne smije završavati s jednom od sljedećih vrijednosti: :values.',
|
||||
'doesnt_start_with' => 'Polje :attribute ne smije počinjati s jednom od sljedećih vrijednosti: :values.',
|
||||
'email' => 'Polje :attribute mora biti ispravna e-mail adresa.',
|
||||
'ends_with' => ':Attribute bi trebao završiti s jednim od sljedećih: :values.',
|
||||
'enum' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'exists' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'file' => 'Polje :attribute mora biti datoteka.',
|
||||
'filled' => 'Polje :attribute je obavezno.',
|
||||
'gt' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute mora biti veće od :value stavki.',
|
||||
'file' => 'Polje :attribute mora biti veće od :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti veće od :value.',
|
||||
'string' => 'Polje :attribute mora biti veće od :value karaktera.',
|
||||
),
|
||||
'gte' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute mora imati najmanje :value stavki.',
|
||||
'file' => 'Polje :attribute mora imati najmanje :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti veće ili jednako :value.',
|
||||
'string' => 'Polje :attribute mora biti veće ili jednako :value znakova.',
|
||||
),
|
||||
'image' => 'Polje :attribute mora biti slika.',
|
||||
'in' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'in_array' => 'Polje :attribute ne postoji u :other.',
|
||||
'integer' => 'Polje :attribute mora biti broj.',
|
||||
'ip' => 'Polje :attribute mora biti ispravna IP adresa.',
|
||||
'ipv4' => 'Polje :attribute mora biti ispravna IPv4 adresa.',
|
||||
'ipv6' => 'Polje :attribute mora biti ispravna IPv6 adresa.',
|
||||
'json' => 'Polje :attribute mora biti ispravan JSON string.',
|
||||
'lowercase' => 'Polje :attribute mora sadržavati samo mala slova.',
|
||||
'lt' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute mora biti manje od :value stavki.',
|
||||
'file' => 'Polje :attribute mora biti manje od :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti manje od :value.',
|
||||
'string' => 'Polje :attribute mora biti manje od :value znakova.',
|
||||
),
|
||||
'lte' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute ne smije imati više od :value stavki.',
|
||||
'file' => 'Polje :attribute mora biti manje ili jednako :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti manje ili jednako :value.',
|
||||
'string' => 'Polje :attribute mora biti manje ili jednako :value znakova.',
|
||||
),
|
||||
'mac_address' => 'Polje :attribute mora biti ispravna MAC adresa.',
|
||||
'max' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute ne smije imati više od :max stavki.',
|
||||
'file' => 'Polje :attribute mora biti manje od :max kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti manje od :max.',
|
||||
'string' => 'Polje :attribute mora sadržavati manje od :max znakova.',
|
||||
),
|
||||
'max_digits' => 'Polje :attribute ne smije imati više od :max znamenaka.',
|
||||
'mimes' => 'Polje :attribute mora biti datoteka tipa: :values.',
|
||||
'mimetypes' => 'Polje :attribute mora biti datoteka tipa: :values.',
|
||||
'min' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute mora sadržavati najmanje :min stavki.',
|
||||
'file' => 'Polje :attribute mora biti najmanje :min kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti najmanje :min.',
|
||||
'string' => 'Polje :attribute mora sadržavati najmanje :min znakova.',
|
||||
),
|
||||
'min_digits' => 'Polje :attribute mora sadržavati najmanje :min znamenaka.',
|
||||
'multiple_of' => 'Broj :attribute mora biti višekratnik :value',
|
||||
'not_in' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'not_regex' => 'Format polja :attribute je neispravan.',
|
||||
'numeric' => 'Polje :attribute mora biti broj.',
|
||||
'password' =>
|
||||
array (
|
||||
'letters' => 'Polje :attribute mora sadržavati najmanje jedno slovo.',
|
||||
'mixed' => 'Polje :attribute mora sadržavati najmanje jedno veliko i jedno malo slovo.',
|
||||
'numbers' => 'Polje :attribute mora sadržavati najmanje jedan broj.',
|
||||
'symbols' => 'Polje :attribute mora sadržavati najmanje jedan simbol.',
|
||||
'uncompromised' => 'Vrijednost u :attribute se pojavila u curenju informacija. Molimo vas da odaberete drugu vrijednost za :attribute.',
|
||||
),
|
||||
'present' => 'Polje :attribute mora biti prisutno.',
|
||||
'prohibited' => 'Polje :attribute je zabranjeno.',
|
||||
'prohibited_if' => 'Polje :attribute zabranjeno je kada je :other :value.',
|
||||
'prohibited_unless' => 'Polje :attribute zabranjeno je, osim ako :other nije u :values.',
|
||||
'prohibits' => 'Polje :attribute zabranjuje da polje :other bude prisutno.',
|
||||
'regex' => 'Polje :attribute se ne podudara s formatom.',
|
||||
'relatable' => 'Polje :attribute se ne može povezati s ovim resursom.',
|
||||
'required' => 'Polje :attribute je obavezno.',
|
||||
'required_array_keys' => 'Polje :attribute mora sadržavati unose za: :values.',
|
||||
'required_if' => 'Polje :attribute je obavezno kada polje :other sadrži :value.',
|
||||
'required_if_accepted' => 'Polje :attribute je obavezno kada je prihvaćeno polje :other.',
|
||||
'required_unless' => 'Polje :attribute je obavezno osim :other je u :values.',
|
||||
'required_with' => 'Polje :attribute je obavezno kada postoji polje :values.',
|
||||
'required_with_all' => 'Polje :attribute je obavezno kada postje polja :values.',
|
||||
'required_without' => 'Polje :attribute je obavezno kada ne postoji polje :values.',
|
||||
'required_without_all' => 'Polje :attribute je obavezno kada nijedno od polja :values ne postoji.',
|
||||
'same' => 'Polja :attribute i :other se moraju podudarati.',
|
||||
'size' =>
|
||||
array (
|
||||
'array' => 'Polje :attribute mora sadržavati :size stavki.',
|
||||
'file' => 'Polje :attribute mora biti :size kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti :size.',
|
||||
'string' => 'Polje :attribute mora biti :size znakova.',
|
||||
),
|
||||
'starts_with' => 'Stavka :attribute mora započinjati jednom od narednih stavki: :values',
|
||||
'string' => 'Polje :attribute mora biti riječ.',
|
||||
'timezone' => 'Polje :attribute mora biti ispravna vremenska zona.',
|
||||
'unique' => 'Polje :attribute već postoji.',
|
||||
'uploaded' => 'Polje :attribute nije uspešno učitano.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'Polje :attribute mora biti ispravan URL.',
|
||||
'uuid' => 'Stavka :attribute mora biti valjani UUID.',
|
||||
);
|
||||
return [
|
||||
'accepted' => 'Polje :attribute mora biti prihvaćeno.',
|
||||
'accepted_if' => 'Polje :attribute mora biti prihvaćeno kada je :other jednako :value.',
|
||||
'active_url' => 'Polje :attribute nije ispravan URL.',
|
||||
'after' => 'Polje :attribute mora biti datum nakon :date.',
|
||||
'after_or_equal' => 'Polje :attribute mora biti datum veći ili jednak :date.',
|
||||
'alpha' => 'Polje :attribute smije sadržavati samo slova.',
|
||||
'alpha_dash' => 'Polje :attribute smije sadržavati samo slova, brojeve i crtice.',
|
||||
'alpha_num' => 'Polje :attribute smije sadržavati samo slova i brojeve.',
|
||||
'array' => 'Polje :attribute mora biti niz.',
|
||||
'attached' => 'Polje :attribute je već prikvačeno.',
|
||||
'attributes' => [
|
||||
'address' => 'adresa',
|
||||
'age' => 'dob',
|
||||
'amount' => 'iznos',
|
||||
'area' => 'površina',
|
||||
'available' => 'dostupno',
|
||||
'birthday' => 'rođendan',
|
||||
'body' => 'tijelo',
|
||||
'city' => 'grad',
|
||||
'content' => 'sadržaj',
|
||||
'country' => 'država',
|
||||
'created_at' => 'kreirano',
|
||||
'creator' => 'autor',
|
||||
'current_password' => 'trenutna lozinka',
|
||||
'date' => 'datum',
|
||||
'date_of_birth' => 'datum rođenja',
|
||||
'day' => 'dan',
|
||||
'deleted_at' => 'obrisano',
|
||||
'description' => 'opis',
|
||||
'district' => 'općina',
|
||||
'duration' => 'trajanje',
|
||||
'email' => 'email',
|
||||
'excerpt' => 'izdvojeno',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'ime',
|
||||
'gender' => 'spol',
|
||||
'group' => 'grupa',
|
||||
'hour' => 'sat',
|
||||
'image' => 'slika',
|
||||
'last_name' => 'prezime',
|
||||
'lesson' => 'lekcija',
|
||||
'line_address_1' => 'adresa',
|
||||
'line_address_2' => 'dodatak adresi',
|
||||
'message' => 'poruka',
|
||||
'middle_name' => 'srednje ime',
|
||||
'minute' => 'minuta',
|
||||
'mobile' => 'mobitel',
|
||||
'month' => 'mjesec',
|
||||
'name' => 'ime',
|
||||
'national_code' => 'Nacionalni kod',
|
||||
'number' => 'broj',
|
||||
'password' => 'lozinka',
|
||||
'password_confirmation' => 'potvrda lozinke',
|
||||
'phone' => 'telefon',
|
||||
'photo' => 'fotografija',
|
||||
'postal_code' => 'poštanski broj',
|
||||
'price' => 'cijena',
|
||||
'province' => 'pokrajina',
|
||||
'recaptcha_response_field' => 'recaptcha polje',
|
||||
'remember' => 'zapamti me',
|
||||
'restored_at' => 'vraćeno',
|
||||
'result_text_under_image' => 'tekst rezultata ispod slike',
|
||||
'role' => 'uloga',
|
||||
'second' => 'sekunda',
|
||||
'sex' => 'spol',
|
||||
'short_text' => 'kratak tekst',
|
||||
'size' => 'veličina',
|
||||
'state' => 'država',
|
||||
'street' => 'ulica',
|
||||
'student' => 'učenik',
|
||||
'subject' => 'predmet',
|
||||
'teacher' => 'učitelj',
|
||||
'terms' => 'uvjeti',
|
||||
'test_description' => 'testni opis',
|
||||
'test_locale' => 'testni jezik',
|
||||
'test_name' => 'testno ime',
|
||||
'text' => 'tekst',
|
||||
'time' => 'vrijeme',
|
||||
'title' => 'naslov',
|
||||
'updated_at' => 'ažurirano',
|
||||
'username' => 'korisničko ime',
|
||||
'year' => 'godina',
|
||||
],
|
||||
'before' => 'Polje :attribute mora biti datum prije :date.',
|
||||
'before_or_equal' => 'Polje :attribute mora biti datum manji ili jednak :date.',
|
||||
'between' => [
|
||||
'array' => 'Polje :attribute mora imati između :min - :max stavki.',
|
||||
'file' => 'Polje :attribute mora biti između :min - :max kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti između :min - :max.',
|
||||
'string' => 'Polje :attribute mora biti između :min - :max znakova.',
|
||||
],
|
||||
'boolean' => 'Polje :attribute mora biti false ili true.',
|
||||
'confirmed' => 'Potvrda polja :attribute se ne podudara.',
|
||||
'current_password' => 'Lozinka nije ispravna.',
|
||||
'date' => 'Polje :attribute nije ispravan datum.',
|
||||
'date_equals' => 'Stavka :attribute mora biti jednaka :date.',
|
||||
'date_format' => 'Polje :attribute ne podudara s formatom :format.',
|
||||
'declined' => 'Polje :attribute mora biti odbijeno.',
|
||||
'declined_if' => 'Polje :attribute mora biti odbijeno kada je :other jednako :value.',
|
||||
'different' => 'Polja :attribute i :other moraju biti različita.',
|
||||
'digits' => 'Polje :attribute mora sadržavati :digits znamenki.',
|
||||
'digits_between' => 'Polje :attribute mora imati između :min i :max znamenki.',
|
||||
'dimensions' => 'Polje :attribute ima neispravne dimenzije slike.',
|
||||
'distinct' => 'Polje :attribute ima dupliciranu vrijednost.',
|
||||
'doesnt_end_with' => 'Polje :attribute ne smije završavati s jednom od sljedećih vrijednosti: :values.',
|
||||
'doesnt_start_with' => 'Polje :attribute ne smije počinjati s jednom od sljedećih vrijednosti: :values.',
|
||||
'email' => 'Polje :attribute mora biti ispravna e-mail adresa.',
|
||||
'ends_with' => ':Attribute bi trebao završiti s jednim od sljedećih: :values.',
|
||||
'enum' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'exists' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'file' => 'Polje :attribute mora biti datoteka.',
|
||||
'filled' => 'Polje :attribute je obavezno.',
|
||||
'gt' => [
|
||||
'array' => 'Polje :attribute mora biti veće od :value stavki.',
|
||||
'file' => 'Polje :attribute mora biti veće od :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti veće od :value.',
|
||||
'string' => 'Polje :attribute mora biti veće od :value karaktera.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'Polje :attribute mora imati najmanje :value stavki.',
|
||||
'file' => 'Polje :attribute mora imati najmanje :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti veće ili jednako :value.',
|
||||
'string' => 'Polje :attribute mora biti veće ili jednako :value znakova.',
|
||||
],
|
||||
'image' => 'Polje :attribute mora biti slika.',
|
||||
'in' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'in_array' => 'Polje :attribute ne postoji u :other.',
|
||||
'integer' => 'Polje :attribute mora biti broj.',
|
||||
'ip' => 'Polje :attribute mora biti ispravna IP adresa.',
|
||||
'ipv4' => 'Polje :attribute mora biti ispravna IPv4 adresa.',
|
||||
'ipv6' => 'Polje :attribute mora biti ispravna IPv6 adresa.',
|
||||
'json' => 'Polje :attribute mora biti ispravan JSON string.',
|
||||
'lowercase' => 'Polje :attribute mora sadržavati samo mala slova.',
|
||||
'lt' => [
|
||||
'array' => 'Polje :attribute mora biti manje od :value stavki.',
|
||||
'file' => 'Polje :attribute mora biti manje od :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti manje od :value.',
|
||||
'string' => 'Polje :attribute mora biti manje od :value znakova.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'Polje :attribute ne smije imati više od :value stavki.',
|
||||
'file' => 'Polje :attribute mora biti manje ili jednako :value kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti manje ili jednako :value.',
|
||||
'string' => 'Polje :attribute mora biti manje ili jednako :value znakova.',
|
||||
],
|
||||
'mac_address' => 'Polje :attribute mora biti ispravna MAC adresa.',
|
||||
'max' => [
|
||||
'array' => 'Polje :attribute ne smije imati više od :max stavki.',
|
||||
'file' => 'Polje :attribute mora biti manje od :max kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti manje od :max.',
|
||||
'string' => 'Polje :attribute mora sadržavati manje od :max znakova.',
|
||||
],
|
||||
'max_digits' => 'Polje :attribute ne smije imati više od :max znamenaka.',
|
||||
'mimes' => 'Polje :attribute mora biti datoteka tipa: :values.',
|
||||
'mimetypes' => 'Polje :attribute mora biti datoteka tipa: :values.',
|
||||
'min' => [
|
||||
'array' => 'Polje :attribute mora sadržavati najmanje :min stavki.',
|
||||
'file' => 'Polje :attribute mora biti najmanje :min kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti najmanje :min.',
|
||||
'string' => 'Polje :attribute mora sadržavati najmanje :min znakova.',
|
||||
],
|
||||
'min_digits' => 'Polje :attribute mora sadržavati najmanje :min znamenaka.',
|
||||
'multiple_of' => 'Broj :attribute mora biti višekratnik :value',
|
||||
'not_in' => 'Odabrano polje :attribute nije ispravno.',
|
||||
'not_regex' => 'Format polja :attribute je neispravan.',
|
||||
'numeric' => 'Polje :attribute mora biti broj.',
|
||||
'password' => [
|
||||
'letters' => 'Polje :attribute mora sadržavati najmanje jedno slovo.',
|
||||
'mixed' => 'Polje :attribute mora sadržavati najmanje jedno veliko i jedno malo slovo.',
|
||||
'numbers' => 'Polje :attribute mora sadržavati najmanje jedan broj.',
|
||||
'symbols' => 'Polje :attribute mora sadržavati najmanje jedan simbol.',
|
||||
'uncompromised' => 'Vrijednost u :attribute se pojavila u curenju informacija. Molimo vas da odaberete drugu vrijednost za :attribute.',
|
||||
],
|
||||
'present' => 'Polje :attribute mora biti prisutno.',
|
||||
'prohibited' => 'Polje :attribute je zabranjeno.',
|
||||
'prohibited_if' => 'Polje :attribute zabranjeno je kada je :other :value.',
|
||||
'prohibited_unless' => 'Polje :attribute zabranjeno je, osim ako :other nije u :values.',
|
||||
'prohibits' => 'Polje :attribute zabranjuje da polje :other bude prisutno.',
|
||||
'regex' => 'Polje :attribute se ne podudara s formatom.',
|
||||
'relatable' => 'Polje :attribute se ne može povezati s ovim resursom.',
|
||||
'required' => 'Polje :attribute je obavezno.',
|
||||
'required_array_keys' => 'Polje :attribute mora sadržavati unose za: :values.',
|
||||
'required_if' => 'Polje :attribute je obavezno kada polje :other sadrži :value.',
|
||||
'required_if_accepted' => 'Polje :attribute je obavezno kada je prihvaćeno polje :other.',
|
||||
'required_unless' => 'Polje :attribute je obavezno osim :other je u :values.',
|
||||
'required_with' => 'Polje :attribute je obavezno kada postoji polje :values.',
|
||||
'required_with_all' => 'Polje :attribute je obavezno kada postje polja :values.',
|
||||
'required_without' => 'Polje :attribute je obavezno kada ne postoji polje :values.',
|
||||
'required_without_all' => 'Polje :attribute je obavezno kada nijedno od polja :values ne postoji.',
|
||||
'same' => 'Polja :attribute i :other se moraju podudarati.',
|
||||
'size' => [
|
||||
'array' => 'Polje :attribute mora sadržavati :size stavki.',
|
||||
'file' => 'Polje :attribute mora biti :size kilobajta.',
|
||||
'numeric' => 'Polje :attribute mora biti :size.',
|
||||
'string' => 'Polje :attribute mora biti :size znakova.',
|
||||
],
|
||||
'starts_with' => 'Stavka :attribute mora započinjati jednom od narednih stavki: :values',
|
||||
'string' => 'Polje :attribute mora biti riječ.',
|
||||
'timezone' => 'Polje :attribute mora biti ispravna vremenska zona.',
|
||||
'unique' => 'Polje :attribute već postoji.',
|
||||
'uploaded' => 'Polje :attribute nije uspešno učitano.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'Polje :attribute mora biti ispravan URL.',
|
||||
'uuid' => 'Stavka :attribute mora biti valjani UUID.',
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user