L10n: Add Czech translation

This commit is contained in:
Aditoo17 2018-09-16 20:42:20 +02:00 committed by GitHub
parent ef61505c6e
commit 8f2e764913
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 225 additions and 0 deletions

View File

@ -0,0 +1,19 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages that we need to display to the user. You are free to modify
| these language lines according to your application's requirements.
|
*/
'failed' => 'Tyto přihlašovací údaje se neshodují s našemi záznamy.',
'throttle' => 'Příliš mnoho pokusů o přihlášení. Prosím zkuste to znovu za :seconds sekund.',
];

View File

@ -0,0 +1,14 @@
<?php
return [
'viewMyProfile' => 'Zobrazit můj profil',
'myTimeline' => 'Moje časová osa',
'publicTimeline' => 'Veřejná časová osa',
'remoteFollow' => 'Vzdálené sledování',
'settings' => 'Nastavení',
'admin' => 'Administrace',
'logout' => 'Odhlásit',
'directMessages' => 'Přímé zprávy',
];

View File

@ -0,0 +1,10 @@
<?php
return [
'likedPhoto' => 'si oblíbil/a vaši fotku.',
'startedFollowingYou' => 'vás začal/a sledovat.',
'commented' => 'okomentoval/a vaši fotku.',
'mentionedYou' => 'vás zmínil/a.',
];

View File

@ -0,0 +1,19 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Pagination Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the paginator library to build
| the simple pagination links. You are free to change them to anything
| you want to customize your views to better match your application.
|
*/
'previous' => '« Předchozí',
'next' => 'Další »',
];

View File

@ -0,0 +1,22 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Password Reset Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are the default lines which match reasons
| that are given by the password broker for a password update attempt
| has failed, such as for an invalid token or invalid new password.
|
*/
'password' => 'Hesla musí být alespoň šest znaků dlouhá a shodovat se s potvrzením.',
'reset' => 'Vaše heslo bylo obnoveno!',
'sent' => 'Poslali jsme vám e-mailem odkaz pro obnovu hesla!',
'token' => 'Tento token pro obnovu hesla je neplatný.',
'user' => "Nemůžeme najít uživatele s touto e-mailovou adresou.",
];

View File

@ -0,0 +1,12 @@
<?php
return [
'emptyTimeline' => 'Tento uživatel ještě nemá žádné příspěvky!',
'emptyFollowers' => 'Tento uživatel ještě nemá žádné sledovatele!',
'emptyFollowing' => 'Tento uživatel ještě nikoho nesleduje!',
'emptySaved' => 'Ještě jste neuložil/a žádné příspěvky!',
'savedWarning' => 'Pouze vy můžete vidět, co máte uložené',
'privateProfileWarning' => 'Tento účet je soukromý',
'alreadyFollow' => 'Již uživatele :username sledujete?',
'loginToSeeProfile' => 'pro zobrazení jeho/jejích fotek a videí.',
];

View File

@ -0,0 +1,7 @@
<?php
return [
'emptyPersonalTimeline' => 'Vaše časová osa je prázdná.',
];

View File

@ -0,0 +1,122 @@
<?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' => ':attribute musí být akceptován.',
'active_url' => ':attribute není platná URL adresa.',
'after' => ':attribute musí být datum po :date.',
'after_or_equal' => ':attribute musí být datum po nebo rovný datu :date.',
'alpha' => ':attribute musí obsahovat pouze písmena.',
'alpha_dash' => ':attribute musí obsahovat pouze písmena, číslice a podtržítka.',
'alpha_num' => ':attribute musí obsahovat pouze písmena a číslice.',
'array' => ':attribute musí být pole.',
'before' => ':attribute musí být datum před :date.',
'before_or_equal' => ':attribute musí být datum před nebo rovný datu :date.',
'between' => [
'numeric' => ':attribute musí být mezi :min a :max.',
'file' => ':attribute musí být mezi :min a :max kilobyty.',
'string' => ':attribute musí být mezi :min a :max znaky.',
'array' => ':attribute musí mít mezi :min a :max položkami.',
],
'boolean' => 'Pole :attribute musí být true nebo false.',
'confirmed' => 'Potvrzení :attribute se neshoduje.',
'date' => ':attribute není platné datum.',
'date_format' => ':attribute se neshoduje s formátem :format.',
'different' => ':attribute a :other musí být jiné.',
'digits' => ':attribute musí mít :digits číslic.',
'digits_between' => ':attribute musí mít mezi :min a :max číslicemi.',
'dimensions' => ':attribute má neplatné rozměry obrázku.',
'distinct' => 'Pole :attribute má duplicitní hodnotu.',
'email' => ':attribute musí být platná e-mailová adresa.',
'exists' => 'Zvolený :attribute je neplatný.',
'file' => ':attribute musí být soubor.',
'filled' => 'Pole :attribute musí mít hodnotu.',
'image' => ':attribute musí být obrázek.',
'in' => 'Zvolený :attribute je neplatný.',
'in_array' => 'Pole :attribute neexistuje v :other.',
'integer' => ':attribute musí být celé číslo.',
'ip' => ':attribute musí být platná IP adresa.',
'ipv4' => ':attribute musí být platná IPv4 adresa.',
'ipv6' => ':attribute musí být platná IPv6 adresa.',
'json' => ':attribute musí být platný řetězec JSON.',
'max' => [
'numeric' => ':attribute nesmí být větší než :max.',
'file' => ':attribute nesmí být větší než :max kilobytů.',
'string' => ':attribute nesmí být větší než :max znaků.',
'array' => ':attribute nesmí mít více než :max položek.',
],
'mimes' => ':attribute musí být soubor typu: :values.',
'mimetypes' => ':attribute musí být soubor typu: :values.',
'min' => [
'numeric' => ':attribute musí být alespoň :min.',
'file' => ':attribute musí být alespoň :min kilobytů.',
'string' => ':attribute musí být alespoň :min znaků.',
'array' => ':attribute musí mít alespoň :min položek.',
],
'not_in' => 'Zvolený :attribute je neplatný.',
'not_regex' => 'Formát :attribute je neplatný.',
'numeric' => ':attribute musí být číslo.',
'present' => 'Pole :attribute musí být přítomné.',
'regex' => 'Formát :attribute je neplatný.',
'required' => 'Pole :attribute je vyžadováno.',
'required_if' => 'Pole :attribute je vyžadováno, pokud je :other :value.',
'required_unless' => 'Pole :attribute je vyžadováno, pokud není :other v :values.',
'required_with' => 'Pole :attribute je vyžadováno, pokud je přítomno :values.',
'required_with_all' => 'Pole :attribute je vyžadováno, pokud je přítomno :values.',
'required_without' => 'Pole :attribute je vyžadováno, pokud není přítomno :values.',
'required_without_all' => 'Pole :attribute je vyžadováno, pokud není přítomno žádné z :values.',
'same' => ':attribute a :other se musí shodovat.',
'size' => [
'numeric' => ':attribute musí být :size.',
'file' => ':attribute musí být :size kilobytů.',
'string' => ':attribute musí být :size znaků.',
'array' => ':attribute musí obsahovat :size položek.',
],
'string' => ':attribute musí být řetězec.',
'timezone' => ':attribute musí být platná zóna.',
'unique' => ':attribute je již zabráno.',
'uploaded' => 'Nahrávání :attribute selhalo.',
'url' => 'Formát :attribute je neplatný.',
/*
|--------------------------------------------------------------------------
| 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' => [],
];