<?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
| such as the size rules. Feel free to tweak each of these messages.
|
*/
'accepted' => ':attribute musí by? akceptovaný.',
'active_url' => ':attribute má neplatnú URL adresu.',
'after' => ':attribute musí by? dátum po :date.',
'alpha' => ':attribute mô?e obsahova? len písmená.',
'alpha_dash' => ':attribute mô?e obsahova? len písmená, ?ísla a poml?ky.',
'alpha_num' => ':attribute mô?e obsahova? len písmená, ?ísla.',
'array' => ':attribute musí by? pole.',
'before' => ':attribute musí by? dátum pred :date.',
'between' => [
'numeric' => ':attribute musí ma? rozsah :min - :max.',
'file' => ':attribute musí ma? rozsah :min - :max kilobajtov.',
'string' => ':attribute musí ma? rozsah :min - :max znakov.',
'array' => ':attribute musí ma? rozsah :min - :max prvkov.',
],
'confirmed' => ':attribute konfirmácia sa nezhoduje.',
'date' => ':attribute má neplatný dátum.',
'date_format' => ':attribute sa nezhoduje s formátom :format.',
'different' => ':attribute a :other musia by? odli?né.',
'digits' => ':attribute musí ma? :digits ?íslic.',
'digits_between' => ':attribute musí ma? rozsah :min a? :max ?íslic.',
'email' => ':attribute má neplatný formát.',
'exists' => 'ozna?ený :attribute je neplatný.',
'image' => ':attribute musí by? obrázok.',
'in' => 'ozna?ený :attribute je neplatný.',
'integer' => ':attribute musí by? celé ?íslo.',
'ip' => ':attribute musí by? platná IP adresa.',
'max' => [
'numeric' => ':attribute nemô?e by? vä??í ako :max.',
'file' => ':attribute nemô?e by? vä??í ako :max kilobajtov.',
'string' => ':attribute nemô?e by? vä??í ako :max znakov.',
'array' => ':attribute nemô?e ma? viac ako :max prvkov.',
],
'mimes' => ':attribute musí by? súbor s koncovkou: :values.',
'extensions' => ':attribute musí mä? niektorú z nasledujúcich prípon: :values.',
'min' => [
'numeric' => ':attribute musí ma? aspo? :min.',
'file' => ':attribute musí ma? aspo? :min kilobajtov.',
'string' => ':attribute musí ma? aspo? :min znakov.',
'array' => ':attribute musí ma? aspo? :min prvkov.',
],
'not_in' => 'ozna?ený :attribute je neplatný.',
'numeric' => ':attribute musí by? ?íslo.',
'regex' => ':attribute má neplatný formát.',
'required' => ':attribute je po?adované.',
'required_if' => ':attribute je po?adované ke? :other je :value.',
'required_with' => ':attribute je po?adované ke? :values je prítomné.',
'required_without' => ':attribute je po?adované ke? :values nie je prítomné.',
'same' => ':attribute a :other sa musia zhodova?.',
'size' => [
'numeric' => ':attribute musí by? :size.',
'file' => ':attribute musí ma? :size kilobajtov.',
'string' => ':attribute musí ma? :size znakov.',
'array' => ':attribute musí obsahova? :size prvkov.',
],
'unique' => ':attribute u? existuje.',
'url' => ':attribute musí ma? formát URL.',
/*
|--------------------------------------------------------------------------
| 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' => [],
/*
|--------------------------------------------------------------------------
| 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' => [],
];
|