Browse Source

Merge pull request #468 from Aditoo17/dev

L10n: Add Czech translation
daniel 6 years ago
parent
commit
727eee4acb

+ 19 - 0
resources/lang/cs/auth.php

@@ -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.',
+
+];

+ 14 - 0
resources/lang/cs/navmenu.php

@@ -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',
+
+];

+ 10 - 0
resources/lang/cs/notification.php

@@ -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.',
+
+];

+ 19 - 0
resources/lang/cs/pagination.php

@@ -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ší »',
+
+];

+ 22 - 0
resources/lang/cs/passwords.php

@@ -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.",
+
+];

+ 12 - 0
resources/lang/cs/profile.php

@@ -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í.',
+];

+ 7 - 0
resources/lang/cs/timeline.php

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

+ 122 - 0
resources/lang/cs/validation.php

@@ -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' => [],
+
+];