Commit 9582f2a9 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

feat: add Lithuanian and Czech languages

parent 527f0c7a
Loading
Loading
Loading
Loading
Loading
+8 −6
Original line number Diff line number Diff line
@@ -123,17 +123,19 @@ class App extends BaseConfig
     * @var list<string>
     */
    public array $supportedLocales = [
        'br',
        'ca',
        'cs',
        'de',
        'en',
        'es',
        'fr',
        'lt',
        'nn-no',
        'pl',
        'de',
        'pt-br',
        'nn-no',
        'es',
        'zh-hans',
        'ca',
        'br',
        'sr-latn',
        'zh-hans',
    ];

    /**
+8 −6
Original line number Diff line number Diff line
+ br/***
+ ca/***
+ cs/***
+ de/***
+ en/***
+ es/***
+ fr/***
+ lt/***
+ nn-no/***
+ pl/***
+ de/***
+ pt-br/***
+ nn-no/***
+ es/***
+ zh-hans/***
+ ca/***
+ br/***
+ sr-latn/***
+ zh-hans/***
- **
+34 −0
Original line number Diff line number Diff line
<?php

declare(strict_types=1);

/**
 * @copyright  2020 Ad Aures
 * @license    https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
 * @link       https://castopod.org/
 */

return [
    'title' => "Komentář {actorDisplayName} k {episodeTitle}",
    'back_to_comments' => 'Zpět na komentáře',
    'form' => [
        'episode_message_placeholder' => 'Napište komentář…',
        'reply_to_placeholder' => 'Odpovědět @{actorUsername}',
        'submit' => 'Odeslat',
        'submit_reply' => 'Odpovědět',
    ],
    'likes' => '{numberOfLikes, plural,
        one {# se líbí}
        other {# se líbí}
    }',
    'replies' => '{numberOfReplies, plural,
        one {# odpověď}
        other {# odpovědi}
    }',
    'like' => 'Líbí se mi',
    'reply' => 'Odpovědět',
    'view_replies' => 'Zobrazit odpovědi ({numberOfReplies})',
    'block_actor' => 'Blokovat uživatele @{actorUsername}',
    'block_domain' => 'Blokovat doménu @{actorDomain}',
    'delete' => 'Odstranit komentář',
];
+30 −0
Original line number Diff line number Diff line
<?php

declare(strict_types=1);

/**
 * @copyright  2020 Ad Aures
 * @license    https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
 * @link       https://castopod.org/
 */

return [
    'yes' => 'Ano',
    'no' => 'Ne',
    'cancel' => 'Zrušit',
    'optional' => 'Volitelné',
    'close' => 'Zavřít',
    'home' => 'Domů',
    'explicit' => 'Explicitní',
    'powered_by' => 'Běží na {castopod}',
    'go_back' => 'Jít zpět',
    'play_episode_button' => [
        'play' => 'Přehrát',
        'playing' => 'Přehrávání',
    ],
    'read_more' => 'Číst více',
    'read_less' => 'Číst méně',
    'see_more' => 'Zobraz více',
    'see_less' => 'Zobrazit méně',
    'legal_notice' => 'Právní ustanovení',
];
+50 −0
Original line number Diff line number Diff line
<?php

declare(strict_types=1);

/**
 * @copyright  2020 Ad Aures
 * @license    https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
 * @link       https://castopod.org/
 */

return [
    'season' => 'Série: {{seasonNumber}}',
    'season_abbr' => 'S{seasonNumber}',
    'number' => 'Epizoda {episodeNumber}',
    'number_abbr' => 'Ep. {episodeNumber}',
    'season_episode' => 'Série {seasonNumber} epizoda {episodeNumber}',
    'season_episode_abbr' => 'S{seasonNumber}:E{episodeNumber}',
    'persons' => '{personsCount, plural,
        one {# osoba}
        other {# osoby}
    }',
    'persons_list' => 'Osoby',
    'back_to_episodes' => 'Zpět na epizody {podcast}',
    'comments' => 'Komentáře',
    'activity' => 'Aktivita',
    'chapters' => 'Kapitoly',
    'transcript' => 'Přepis',
    'description' => 'Popis epizody',
    'number_of_comments' => '{numberOfComments, plural,
        one {# komentář}
        other {# komentáře}
    }',
    'all_podcast_episodes' => 'Všechny epizody podcastu',
    'back_to_podcast' => 'Přejít zpět na podcast',
    'preview' => [
        'title' => 'Náhled',
        'not_published' => 'Nezveřejněno',
        'text' => '{publication_status, select,
            published {Tato epizoda ještě není publikována.}
            scheduled {Tato epizoda je naplánována na {publication_date}}
            with_podcast {Tato epizoda bude zveřejněna současně s podcastem.}
            other {Tato epizoda ještě není publikována.}
        }',
        'publish' => 'Publikovat',
        'publish_edit' => 'Editovat publikaci',
    ],
    'no_chapters' => 'Pro tuto epizodu nejsou k dispozici žádné kapitoly.',
    'download_transcript' => 'Stáhnout přepis ({extension})',
    'no_transcript' => 'Pro tuto epizodu není k dispozici žádný přepis.',
];
Loading