snipe-it/resources/lang/cs/validation.php

156 lines
9 KiB
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
return [
2016-03-25 01:18:05 -07:00
/*
|--------------------------------------------------------------------------
| 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.
|
*/
2017-09-06 18:05:32 -07:00
'accepted' => 'Je potřeba potvrdit :attribute.',
'active_url' => ':attribute není platnou URL.',
'after' => ':attribute nemůže být dříve než :date.',
2017-10-17 18:52:20 -07:00
'after_or_equal' => 'Atribut musí mít datum následující nebo rovné: datum.',
2017-09-06 18:05:32 -07:00
'alpha' => ':attribute může obsahovat pouze písmena.',
'alpha_dash' => ':attribute může obsahovat pouze písmena, čísla, a pomlčky.',
'alpha_num' => ':attribute může obsahovat pouze písmena čísla.',
2017-10-17 18:52:20 -07:00
'array' => 'Atribut musí být atribut.',
2017-09-06 18:05:32 -07:00
'before' => ':attribute nemůže být později než :date.',
2017-10-17 18:52:20 -07:00
'before_or_equal' => 'Atribut: musí mít datum před datem nebo se rovnat: datum.',
2017-09-06 18:05:32 -07:00
'between' => [
'numeric' => ':attribute musí být mezi :min - :max.',
'file' => ':attribute musí být mezi :min - :max kilobajtů.',
'string' => ':attribute smí obsahovat pouze :min - :max znaků.',
2017-10-17 18:52:20 -07:00
'array' => 'Atribut: musí obsahovat položky: min a max.',
2017-09-06 18:05:32 -07:00
],
'boolean' => ':attribute musí být true nebo false.',
'confirmed' => 'Potvrzení :attribute se neshoduje.',
'date' => ':attribute není platným datem.',
'date_format' => 'Atribut :attribute nesouhlasí s formátem :format.',
'different' => ':attribute a :other se musí lišit.',
'digits' => ':attribute musí být :digits číslo.',
'digits_between' => ':attribute musí být mezi hodnotami :min a :max.',
2017-10-17 18:52:20 -07:00
'dimensions' => 'Atribut: má neplatné kóty obrázku.',
'distinct' => 'Pole atributu: atribut má duplicitní hodnotu.',
2017-09-06 18:05:32 -07:00
'email' => 'Formát :attribute je neplatný.',
'exists' => 'Zvolený :attribute je neplatný.',
2017-10-17 18:52:20 -07:00
'file' => 'Atribut: musí být soubor.',
'filled' => 'Pole atributu: musí mít hodnotu.',
2017-09-06 18:05:32 -07:00
'image' => ':attribute musí být obrázek.',
'import_field_empty' => 'Hodnota pro :fieldname nemůže být null.',
2017-09-06 18:05:32 -07:00
'in' => 'Zvolený :attribute je neplatný.',
2017-10-17 18:52:20 -07:00
'in_array' => 'Pole atributu neexistuje v: jiné.',
2017-09-06 18:05:32 -07:00
'integer' => ':attribute musí být celočíselný.',
'ip' => ':attribute musí být platná IP adresa.',
2017-10-17 18:52:20 -07:00
'ipv4' => 'Atribut: musí mít platnou adresu IPv4.',
'ipv6' => 'Atribut: musí být platná adresa IPv6.',
'is_unique_department' => ':attribute musí být unikátní pro tuto lokalitu společnosti',
2017-10-17 18:52:20 -07:00
'json' => 'Atribut: musí být platný řetězec JSON.',
2017-09-06 18:05:32 -07:00
'max' => [
'numeric' => ':attribute nesmí být větší než :max.',
'file' => ':attribute nesmí být větší než :max kilobajtů.',
'string' => ':attribute nesmí být větší než :max znaků.',
2017-10-17 18:52:20 -07:00
'array' => 'Atribut: Atribut nesmí mít více než: max položky.',
2017-09-06 18:05:32 -07:00
],
'mimes' => ':attribute musí být soubor typu: :values.',
2017-10-17 18:52:20 -07:00
'mimetypes' => 'Atribut: musí být soubor typu:: values.',
2017-09-06 18:05:32 -07:00
'min' => [
'numeric' => ':attribute musí být minimálne :min.',
'file' => ':attribute musí být minimálně :min kilobajtů.',
'string' => ':attribute musí mít minimálně :min znaků.',
2017-10-17 18:52:20 -07:00
'array' => 'Atribut musí mít alespoň: min položky.',
2017-09-06 18:05:32 -07:00
],
'starts_with' => ':attribute musí končit jednou z následujících hodnot: :values.',
'ends_with' => 'The :attribute must end with one of the following: :values.',
2017-09-06 18:05:32 -07:00
'not_in' => 'Zvolený :attribute je neplatný.',
'numeric' => ':attribute musí být číslo.',
2017-10-17 18:52:20 -07:00
'present' => 'Pole atributu musí být přítomno.',
2018-09-28 11:54:52 -07:00
'valid_regex' => 'Toto není platný regulární výraz. ',
2017-09-06 18:05:32 -07:00
'regex' => 'Formát :attribute je neplatný.',
'required' => 'Pole :attribute je požadováno.',
'required_if' => 'Položka :attribute je vyžadována, když :other je :value.',
2017-10-17 18:52:20 -07:00
'required_unless' => 'Pole atributu: je povinné, pokud: jiný není v: hodnoty.',
2017-09-06 18:05:32 -07:00
'required_with' => 'Hodnota :attribute je vyžadována, když je přítomno :values.',
2017-10-17 18:52:20 -07:00
'required_with_all' => 'Pole atributu: je požadováno, když: jsou přítomny hodnoty.',
2017-09-06 18:05:32 -07:00
'required_without' => 'Hodnota :attribute je vyžadována, když není přítomno :values.',
2017-10-17 18:52:20 -07:00
'required_without_all' => 'Pole atributu: je vyžadováno, pokud nejsou žádné hodnoty: existují.',
2017-09-06 18:05:32 -07:00
'same' => ':attribute a :other se musí shodovat.',
'size' => [
'numeric' => ':attribute musí být :size.',
'file' => ':attribute musí být :size kilobajtů.',
'string' => ':attribute musí mít :size znaků.',
2017-10-17 18:52:20 -07:00
'array' => 'Atribut: musí obsahovat: položky velikosti.',
2017-09-06 18:05:32 -07:00
],
2017-10-17 18:52:20 -07:00
'string' => 'Atribut: musí být řetězec.',
'timezone' => 'Atribut: musí být platnou zónou.',
'two_column_unique_undeleted' => 'The :attribute must be unique across :table1 and :table2. ',
2017-09-06 18:05:32 -07:00
'unique' => ':attribute byl již vybrán.',
2017-10-17 18:52:20 -07:00
'uploaded' => 'Atribut: se nepodařilo nahrát.',
2017-09-06 18:05:32 -07:00
'url' => 'Formát :attribute je neplatný.',
'unique_undeleted' => 'Je třeba, aby se :attribute neopakoval.',
'non_circular' => ':attribute nesmí vytvořit kruhový odkaz.',
'not_array' => 'The :attribute field cannot be an array.',
'unique_serial' => 'The :attribute must be unique.',
'disallow_same_pwd_as_user_fields' => 'Heslo nemůže být stejné jako uživatelské jméno.',
'letters' => 'Heslo musí obsahovat nejméně jedno písmeno.',
'numbers' => 'Heslo musí obsahovat alespoň jednu číslici.',
'case_diff' => 'Heslo musí použít smíšené znaky.',
'symbols' => 'Heslo musí obsahovat symboly.',
'gte' => [
'numeric' => 'Hodnota nemůže být záporná'
],
2017-09-06 18:05:32 -07:00
2016-03-25 01:18:05 -07:00
/*
|--------------------------------------------------------------------------
| 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.
|
*/
2017-09-06 18:05:32 -07:00
'custom' => [
'alpha_space' => 'Pole atributu: atribut obsahuje znak, který není povolen.',
'email_array' => 'Jedna nebo více e-mailových adres je neplatná.',
'hashed_pass' => 'Vaše současné heslo je nesprávné',
2017-10-17 18:52:20 -07:00
'dumbpwd' => 'Toto heslo je příliš běžné.',
'statuslabel_type' => 'Musíte vybrat platný typ štítku stavu',
// date_format validation with slightly less stupid messages. It duplicates a lot, but it gets the job done :(
// We use this because the default error message for date_format is reflects php Y-m-d, which non-PHP
// people won't know how to format.
'purchase_date.date_format' => ':attribute musí být platné datum ve formátu RRRR-MM-DD',
'last_audit_date.date_format' => ':attribute musí být platné datum ve formátu RRRR-MM-DD hh:mm:ss',
'expiration_date.date_format' => ':attribute musí být platné datum ve formátu RRRR-MM-DD',
'termination_date.date_format' => ':attribute musí být platné datum ve formátu RRRR-MM-DD',
'expected_checkin.date_format' => ':attribute musí být platné datum ve formátu RRRR-MM-DD',
'start_date.date_format' => ':attribute musí být platné datum ve formátu RRRR-MM-DD',
'end_date.date_format' => ':attribute musí být platné datum ve formátu RRRR-MM-DD',
2017-09-06 18:05:32 -07:00
],
2016-03-25 01:18:05 -07:00
/*
|--------------------------------------------------------------------------
| 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.
|
*/
2017-09-06 18:05:32 -07:00
'attributes' => [],
2016-03-25 01:18:05 -07:00
];