mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
add Laravel languages
This commit is contained in:
210
lang/cs/validation.php
Normal file
210
lang/cs/validation.php
Normal file
@@ -0,0 +1,210 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'accepted' => ':Attribute musí být přijat.',
|
||||
'accepted_if' => 'The :attribute must be accepted when :other is :value.',
|
||||
'active_url' => ':Attribute není platnou URL adresou.',
|
||||
'after' => ':Attribute musí být datum po :date.',
|
||||
'after_or_equal' => ':Attribute musí být datum :date nebo pozdější.',
|
||||
'alpha' => ':Attribute může obsahovat pouze písmena.',
|
||||
'alpha_dash' => ':Attribute může obsahovat pouze písmena, číslice, pomlčky a podtržítka. České znaky (á, é, í, ó, ú, ů, ž, š, č, ř, ď, ť, ň) nejsou podporovány.',
|
||||
'alpha_num' => ':Attribute může obsahovat pouze písmena a číslice.',
|
||||
'array' => ':Attribute musí být pole.',
|
||||
'attached' => 'Tento :attribute je již připojen.',
|
||||
'before' => ':Attribute musí být datum před :date.',
|
||||
'before_or_equal' => 'Datum :attribute musí být před nebo rovno :date.',
|
||||
'between' => [
|
||||
'array' => ':Attribute musí obsahovat nejméně :min a nesmí obsahovat více než :max prvků.',
|
||||
'file' => ':Attribute musí být větší než :min a menší než :max Kilobytů.',
|
||||
'numeric' => ':Attribute musí být hodnota mezi :min a :max.',
|
||||
'string' => ':Attribute musí být delší než :min a kratší než :max znaků.',
|
||||
],
|
||||
'boolean' => ':Attribute musí být true nebo false',
|
||||
'confirmed' => ':Attribute nesouhlasí.',
|
||||
'current_password' => 'Současné heslo není spravné.',
|
||||
'date' => ':Attribute musí být platné datum.',
|
||||
'date_equals' => ':Attribute musí být datum shodné s :date.',
|
||||
'date_format' => ':Attribute není platný formát data podle :format.',
|
||||
'declined' => 'The :attribute must be declined.',
|
||||
'declined_if' => 'The :attribute must be declined when :other is :value.',
|
||||
'different' => ':Attribute a :other se musí lišit.',
|
||||
'digits' => ':Attribute musí být :digits pozic dlouhé.',
|
||||
'digits_between' => ':Attribute musí být dlouhé nejméně :min a nejvíce :max pozic.',
|
||||
'dimensions' => ':Attribute má neplatné rozměry.',
|
||||
'distinct' => ':Attribute má duplicitní hodnotu.',
|
||||
'doesnt_end_with' => 'The :attribute may not end with one of the following: :values.',
|
||||
'doesnt_start_with' => 'The :attribute may not start with one of the following: :values.',
|
||||
'email' => ':Attribute není platný formát.',
|
||||
'ends_with' => ':Attribute musí končit jednou z následujících hodnot: :values',
|
||||
'enum' => 'The selected :attribute is invalid.',
|
||||
'exists' => 'Zvolená hodnota pro :attribute není platná.',
|
||||
'file' => ':Attribute musí být soubor.',
|
||||
'filled' => ':Attribute musí být vyplněno.',
|
||||
'gt' => [
|
||||
'array' => 'Pole :attribute musí mít více prvků než :value.',
|
||||
'file' => 'Velikost souboru :attribute musí být větší než :value kB.',
|
||||
'numeric' => ':Attribute musí být větší než :value.',
|
||||
'string' => 'Počet znaků :attribute musí být větší :value.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'Pole :attribute musí mít :value prvků nebo více.',
|
||||
'file' => 'Velikost souboru :attribute musí být větší nebo rovno :value kB.',
|
||||
'numeric' => ':Attribute musí být větší nebo rovno :value.',
|
||||
'string' => 'Počet znaků :attribute musí být větší nebo rovno :value.',
|
||||
],
|
||||
'image' => ':Attribute musí být obrázek.',
|
||||
'in' => 'Zvolená hodnota pro :attribute je neplatná.',
|
||||
'in_array' => ':Attribute není obsažen v :other.',
|
||||
'integer' => ':Attribute musí být celé číslo.',
|
||||
'ip' => ':Attribute musí být platnou IP adresou.',
|
||||
'ipv4' => ':Attribute musí být platná IPv4 adresa.',
|
||||
'ipv6' => ':Attribute musí být platná IPv6 adresa.',
|
||||
'json' => ':Attribute musí být platný JSON řetězec.',
|
||||
'lowercase' => 'The :attribute must be lowercase.',
|
||||
'lt' => [
|
||||
'array' => ':Attribute by měl obsahovat méně než :value položek.',
|
||||
'file' => 'Velikost souboru :attribute musí být menší než :value kB.',
|
||||
'numeric' => ':Attribute musí být menší než :value.',
|
||||
'string' => ':Attribute musí obsahovat méně než :value znaků.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => ':Attribute by měl obsahovat maximálně :value položek.',
|
||||
'file' => 'Velikost souboru :attribute musí být menší než :value kB.',
|
||||
'numeric' => ':Attribute musí být menší nebo rovno než :value.',
|
||||
'string' => ':Attribute nesmí být delší než :value znaků.',
|
||||
],
|
||||
'mac_address' => 'The :attribute must be a valid MAC address.',
|
||||
'max' => [
|
||||
'array' => ':Attribute nemůže obsahovat více než :max prvků.',
|
||||
'file' => 'Velikost souboru :attribute musí být menší než :value kB.',
|
||||
'numeric' => ':Attribute nemůže být větší než :max.',
|
||||
'string' => ':Attribute nemůže být delší než :max znaků.',
|
||||
],
|
||||
'max_digits' => 'The :attribute must not have more than :max digits.',
|
||||
'mimes' => ':Attribute musí být jeden z následujících datových typů :values.',
|
||||
'mimetypes' => ':Attribute musí být jeden z následujících datových typů :values.',
|
||||
'min' => [
|
||||
'array' => ':Attribute musí obsahovat více než :min prvků.',
|
||||
'file' => ':Attribute musí být větší než :min kB.',
|
||||
'numeric' => ':Attribute musí být větší než :min.',
|
||||
'string' => ':Attribute musí být delší než :min znaků.',
|
||||
],
|
||||
'min_digits' => 'The :attribute must have at least :min digits.',
|
||||
'multiple_of' => ':Attribute musí být násobkem :value',
|
||||
'not_in' => 'Zvolená hodnota pro :attribute je neplatná.',
|
||||
'not_regex' => ':Attribute musí být regulární výraz.',
|
||||
'numeric' => ':Attribute musí být číslo.',
|
||||
'password' => [
|
||||
'letters' => 'The :attribute must contain at least one letter.',
|
||||
'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.',
|
||||
'numbers' => 'The :attribute must contain at least one number.',
|
||||
'symbols' => 'The :attribute must contain at least one symbol.',
|
||||
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
|
||||
],
|
||||
'present' => ':Attribute musí být vyplněno.',
|
||||
'prohibited' => 'Pole :attribute je zakázáno.',
|
||||
'prohibited_if' => 'Pole :attribute je zakázáno, když je :other :value.',
|
||||
'prohibited_unless' => 'Pole :attribute je zakázáno, pokud není rok :other v roce :values.',
|
||||
'prohibits' => 'The :attribute field prohibits :other from being present.',
|
||||
'regex' => ':Attribute nemá správný formát.',
|
||||
'relatable' => 'Tento :attribute nemusí být spojen s tímto zdrojem.',
|
||||
'required' => ':Attribute musí být vyplněno.',
|
||||
'required_array_keys' => 'The :attribute field must contain entries for: :values.',
|
||||
'required_if' => ':Attribute musí být vyplněno pokud :other je :value.',
|
||||
'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
|
||||
'required_unless' => ':Attribute musí být vyplněno dokud :other je v :values.',
|
||||
'required_with' => ':Attribute musí být vyplněno pokud :values je vyplněno.',
|
||||
'required_with_all' => ':Attribute musí být vyplněno pokud :values je zvoleno.',
|
||||
'required_without' => ':Attribute musí být vyplněno pokud :values není vyplněno.',
|
||||
'required_without_all' => ':Attribute musí být vyplněno pokud není žádné z :values zvoleno.',
|
||||
'same' => ':Attribute a :other se musí shodovat.',
|
||||
'size' => [
|
||||
'array' => ':Attribute musí obsahovat právě :size prvků.',
|
||||
'file' => ':Attribute musí mít přesně :size Kilobytů.',
|
||||
'numeric' => ':Attribute musí být přesně :size.',
|
||||
'string' => ':Attribute musí být přesně :size znaků dlouhý.',
|
||||
],
|
||||
'starts_with' => ':Attribute musí začínat jednou z následujících hodnot: :values',
|
||||
'string' => ':Attribute musí být řetězec znaků.',
|
||||
'timezone' => ':Attribute musí být platná časová zóna.',
|
||||
'unique' => ':Attribute musí být unikátní.',
|
||||
'uploaded' => 'Nahrávání :attribute se nezdařilo.',
|
||||
'uppercase' => 'The :attribute must be uppercase.',
|
||||
'url' => 'Formát :attribute je neplatný.',
|
||||
'uuid' => ':Attribute musí být validní UUID.',
|
||||
'attributes' => [
|
||||
'address' => 'address',
|
||||
'age' => 'age',
|
||||
'amount' => 'amount',
|
||||
'area' => 'area',
|
||||
'available' => 'available',
|
||||
'birthday' => 'birthday',
|
||||
'body' => 'body',
|
||||
'city' => 'city',
|
||||
'content' => 'content',
|
||||
'country' => 'country',
|
||||
'created_at' => 'created at',
|
||||
'creator' => 'creator',
|
||||
'current_password' => 'current password',
|
||||
'date' => 'date',
|
||||
'date_of_birth' => 'date of birth',
|
||||
'day' => 'day',
|
||||
'deleted_at' => 'deleted at',
|
||||
'description' => 'description',
|
||||
'district' => 'district',
|
||||
'duration' => 'duration',
|
||||
'email' => 'email',
|
||||
'excerpt' => 'excerpt',
|
||||
'filter' => 'filter',
|
||||
'first_name' => 'first name',
|
||||
'gender' => 'gender',
|
||||
'group' => 'group',
|
||||
'hour' => 'hour',
|
||||
'image' => 'image',
|
||||
'last_name' => 'last name',
|
||||
'lesson' => 'lesson',
|
||||
'line_address_1' => 'line address 1',
|
||||
'line_address_2' => 'line address 2',
|
||||
'message' => 'message',
|
||||
'middle_name' => 'middle name',
|
||||
'minute' => 'minute',
|
||||
'mobile' => 'mobile',
|
||||
'month' => 'month',
|
||||
'name' => 'name',
|
||||
'national_code' => 'national code',
|
||||
'number' => 'number',
|
||||
'password' => 'heslo',
|
||||
'password_confirmation' => 'password confirmation',
|
||||
'phone' => 'phone',
|
||||
'photo' => 'photo',
|
||||
'postal_code' => 'postal code',
|
||||
'price' => 'price',
|
||||
'province' => 'province',
|
||||
'recaptcha_response_field' => 'recaptcha response field',
|
||||
'remember' => 'remember',
|
||||
'restored_at' => 'restored at',
|
||||
'result_text_under_image' => 'result text under image',
|
||||
'role' => 'role',
|
||||
'second' => 'second',
|
||||
'sex' => 'sex',
|
||||
'short_text' => 'short text',
|
||||
'size' => 'size',
|
||||
'state' => 'state',
|
||||
'street' => 'street',
|
||||
'student' => 'student',
|
||||
'subject' => 'subject',
|
||||
'teacher' => 'teacher',
|
||||
'terms' => 'terms',
|
||||
'test_description' => 'test description',
|
||||
'test_locale' => 'test locale',
|
||||
'test_name' => 'test name',
|
||||
'text' => 'text',
|
||||
'time' => 'time',
|
||||
'title' => 'title',
|
||||
'updated_at' => 'updated at',
|
||||
'username' => 'username',
|
||||
'year' => 'year',
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user