castopod/modules/Admin/Language/sk/Podcast.php

328 lines
16 KiB
PHP
Raw Normal View History

2022-07-04 15:27:21 +02:00
<?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 [
2023-03-16 17:45:41 +01:00
'all_podcasts' => 'Všetky podcasty',
'no_podcast' => 'Žiadny podcast nenájdený!',
'create' => 'Vytvoriť podcast',
'import' => 'Importovať podcast',
2023-06-21 19:17:32 +02:00
'all_imports' => 'Podcast imports',
2022-09-06 16:55:46 +02:00
'new_episode' => 'Nová časť',
2023-03-16 17:45:41 +01:00
'view' => 'Zobraziť podcast',
'edit' => 'Upraviť podcast',
'publish' => 'Zverejniť podcast',
'publish_edit' => 'Upraviť zverejnené',
'delete' => 'Vymazať podcast',
'see_episodes' => 'Ukázať časti',
'see_contributors' => 'Pozrieť prispievateľov',
2023-11-29 18:27:10 +01:00
'monetization_other' => 'Other monetization',
2023-03-16 17:45:41 +01:00
'go_to_page' => 'Prejsť na stránku',
2022-09-06 16:55:46 +02:00
'latest_episodes' => 'Posledné časti',
'see_all_episodes' => 'Pozrieť všetky časti',
2023-03-16 17:45:41 +01:00
'draft' => 'Koncept',
2022-07-04 15:27:21 +02:00
'messages' => [
2023-03-16 17:45:41 +01:00
'createSuccess' => 'Podcast úspešne vytvorený!',
2022-07-04 15:27:21 +02:00
'editSuccess' => 'Podcast has been successfully updated!',
'importSuccess' => 'Podcast has been successfully imported!',
'deleteSuccess' => 'Podcast @{podcast_handle} successfully deleted!',
'deletePodcastMediaError' => 'Failed to delete podcast {type, select,
cover {cover}
banner {banner}
other {media}
}.',
'deleteEpisodeMediaError' => 'Failed to delete podcast episode {episode_slug} {type, select,
transcript {transcript}
chapters {chapters}
image {cover}
audio {audio}
other {media}
}.',
'deletePodcastMediaFolderError' => 'Failed to delete podcast media folder {folder_path}. You may manually remove it from your disk.',
'podcastFeedUpdateSuccess' => 'Successful update: {number_of_new_episodes, plural,
one {# episode was}
other {# episodes were}
} added to the podcast!',
2023-06-21 19:17:32 +02:00
'podcastFeedUpToDate' => 'Podcast už je aktualizovaný.',
2022-07-14 11:03:44 +02:00
'publishError' => 'This podcast is either already published or scheduled for publication.',
'publishEditError' => 'This podcast is not scheduled for publication.',
'publishCancelSuccess' => 'Podcast publication successfully cancelled!',
'scheduleDateError' => 'Schedule date must be set!',
2022-07-04 15:27:21 +02:00
],
'form' => [
2024-01-15 15:59:13 +01:00
'identity_section_title' => 'Identita podcastu',
2022-07-04 15:27:21 +02:00
'identity_section_subtitle' => 'These fields allow you to get noticed.',
2024-01-15 15:59:13 +01:00
'fediverse_section_title' => 'Identita vo Fediverse',
2023-11-29 18:27:10 +01:00
2023-06-21 19:17:32 +02:00
'cover' => 'Obal podcastu',
2024-01-15 15:59:13 +01:00
'cover_size_hint' => 'Obrázok musí byť štvorcový a minimálne 1400px široký a vysoký.',
2022-07-04 15:27:21 +02:00
'banner' => 'Podcast banner',
'banner_size_hint' => 'Banner must have a 3:1 ratio and be at least 1500px wide.',
'banner_delete' => 'Delete podcast banner',
2023-03-16 17:45:41 +01:00
'title' => 'Názov',
2022-07-04 15:27:21 +02:00
'handle' => 'Handle',
'handle_hint' =>
'Used to identify the podcast. Uppercase, lowercase, numbers and underscores are accepted.',
'type' => [
2023-03-16 17:45:41 +01:00
'label' => 'Typ',
'episodic' => 'Epizodický',
2022-07-04 15:27:21 +02:00
'episodic_hint' => 'If episodes are intended to be consumed without any specific order. Newest episodes will be presented first.',
'serial' => 'Serial',
2024-02-22 11:11:10 +01:00
'serial_hint' => 'If episodes are intended to be consumed in sequential order. Episodes will be presented in numeric order.',
],
'medium' => [
'label' => 'Medium',
'hint' => 'Medium as represented by podcast:medium tag in RSS. Changing this may change how players present your feed.',
'podcast' => 'Podcast',
'podcast_hint' => 'Describes a feed for a podcast show.',
'music' => 'Music',
'music_hint' => 'A feed of music organized into an "album" with each item a song within the album.',
'audiobook' => 'Audiobook',
'audiobook_hint' => 'Specific types of audio with one item per feed, or where items represent chapters within the book.',
2022-07-04 15:27:21 +02:00
],
2023-03-16 17:45:41 +01:00
'description' => 'Popis',
'classification_section_title' => 'Zaradenie',
2022-07-04 15:27:21 +02:00
'classification_section_subtitle' =>
'These fields will impact your audience and competition.',
2023-03-16 17:45:41 +01:00
'language' => 'Jazyk',
'category' => 'Kategória',
'category_placeholder' => 'Vybrať kategóriu…',
'other_categories' => 'Ostatné kategórie',
2022-07-04 15:27:21 +02:00
'parental_advisory' => [
'label' => 'Parental advisory',
'hint' => 'Obsahuje explicitný obsah?',
'undefined' => 'neuvedené',
2024-02-05 18:03:36 +01:00
'clean' => 'Čistá',
2023-07-27 12:49:25 +02:00
'explicit' => 'Chúlostivé',
2022-07-04 15:27:21 +02:00
],
2023-06-21 19:17:32 +02:00
'author_section_title' => 'Autor',
'author_section_subtitle' => 'Kto spravuje tento podcast?',
'owner_name' => 'Meno vlastníka',
2022-07-04 15:27:21 +02:00
'owner_name_hint' =>
'For administrative use only. Visible in the public RSS feed.',
2023-06-21 19:17:32 +02:00
'owner_email' => 'Email vlastníka',
2022-07-04 15:27:21 +02:00
'owner_email_hint' =>
'Will be used by most platforms to verify the podcast ownership. Visible in the public RSS feed.',
2024-01-15 15:59:13 +01:00
'is_owner_email_removed_from_feed' => 'Remove the owner email from the public RSS feed',
'is_owner_email_removed_from_feed_hint' => 'You may need to temporarily unhide the email so that a directory can verify your podcast ownership.',
2023-03-16 17:45:41 +01:00
'publisher' => 'Vydavateľ',
2022-07-04 15:27:21 +02:00
'publisher_hint' =>
'The group responsible for creating the show. Often refers to the parent company or network of a podcast. This field is sometimes labeled as Author.',
2024-01-15 15:59:13 +01:00
'copyright' => 'Autorské práva',
2023-03-16 17:45:41 +01:00
'location_section_title' => 'Umiestnenie',
2024-01-15 15:59:13 +01:00
'location_section_subtitle' => 'O akom mieste/oblasti je tento podcast?',
'location_name' => 'Názov oblasti, alebo adresa',
2022-07-04 15:27:21 +02:00
'location_name_hint' => 'This can be a real place or fictional',
'monetization_section_title' => 'Monetization',
'monetization_section_subtitle' =>
'Earn money thanks to your audience.',
2024-02-05 18:03:36 +01:00
'premium' => 'Prémiový obsah',
'premium_by_default' => 'Epizódy musia byť predvolene nastavené ako prémiové',
2022-10-14 18:12:14 +02:00
'premium_by_default_hint' => 'Podcast episodes will be marked as premium by default. You can still choose to set some episodes, trailers or bonuses as public.',
2022-12-09 16:42:46 +01:00
'op3' => 'Open Podcast Prefix Project (OP3)',
2024-02-05 18:03:36 +01:00
'op3_link' => 'Visit your OP3 dashboard (external link)',
2022-12-09 16:42:46 +01:00
'op3_hint' => 'Value your analytics data with OP3, an open-source and trusted third party analytics service. Share, validate and compare your analytics data with the open podcasting ecosystem.',
'op3_enable' => 'Enable OP3 analytics service',
'op3_enable_hint' => 'For security reasons, premium episodes\' analytics data will not be shared with OP3.',
2022-07-04 15:27:21 +02:00
'payment_pointer' => 'Payment Pointer for Web Monetization',
'payment_pointer_hint' =>
'This is your where you will receive money thanks to Web Monetization',
'advanced_section_title' => 'Advanced Parameters',
'advanced_section_subtitle' =>
'If you need RSS tags that Castopod does not handle, set them here.',
'custom_rss' => 'Custom RSS tags for the podcast',
'custom_rss_hint' => 'This will be injected within the ❬channel❭ tag.',
'new_feed_url' => 'New feed URL',
'new_feed_url_hint' => 'Use this field when you move to another domain or podcast hosting platform. By default, the value is set to the current RSS URL if the podcast is imported.',
'old_feed_url' => 'Old feed URL',
2024-02-05 18:03:36 +01:00
'partnership' => 'Partnerstvo',
2022-07-04 15:27:21 +02:00
'partner_id' => 'ID',
2023-03-16 17:45:41 +01:00
'partner_link_url' => 'URL adresa odkazu',
'partner_image_url' => 'URL adresa obrázka',
2022-07-04 15:27:21 +02:00
'partner_id_hint' => 'Your own partner ID',
'partner_link_url_hint' => 'The generic partner link address',
'partner_image_url_hint' => 'The generic partner image address',
2022-07-14 11:03:44 +02:00
'block' => 'Podcast should be hidden from public catalogues',
'block_hint' =>
'The podcast show or hide status: toggling this on prevents the entire podcast from appearing in Apple Podcasts, Google Podcasts, and any third party apps that pull shows from these directories. (Not guaranteed)',
2022-07-04 15:27:21 +02:00
'complete' => 'Podcast will not be having new episodes',
'lock' => 'Prevent podcast from being copied',
'lock_hint' =>
'The purpose is to tell other podcast platforms whether they are allowed to import this feed. A value of yes means that any attempt to import this feed into a new platform should be rejected.',
'submit_create' => 'Vytvoriť podcast',
'submit_edit' => 'Uložiť podcast',
2022-07-04 15:27:21 +02:00
],
'category_options' => [
'uncategorized' => 'nezaradený',
'arts' => 'Umenia',
'business' => 'Podnikanie',
'comedy' => 'Komédia',
'education' => 'Vzdelanie',
'fiction' => 'Fikcia',
'government' => 'Štátna správa',
'health_and_fitness' => 'Zdravie a fitnes',
'history' => 'História',
2022-07-04 15:27:21 +02:00
'kids_and_family' => 'Kids &amp Family',
2023-07-27 12:49:25 +02:00
'leisure' => 'Voľný čas',
'music' => 'Hudba',
'news' => 'Správy',
2022-07-04 15:27:21 +02:00
'religion_and_spirituality' => 'Religion &amp Spirituality',
2023-07-27 12:49:25 +02:00
'science' => 'Veda',
'society_and_culture' => 'Spoločnosť a kultúra',
'sports' => 'Športy',
'technology' => 'Technológia',
2024-01-15 15:59:13 +01:00
'true_crime' => 'Skutočné krimi',
2022-07-04 15:27:21 +02:00
'tv_and_film' => 'TV &amp Film',
'books' => 'Knihy',
'design' => 'Dizajn',
2022-07-04 15:27:21 +02:00
'fashion_and_beauty' => 'Fashion &amp Beauty',
2024-01-15 15:59:13 +01:00
'food' => 'Jedlo',
'performing_arts' => 'Divadelné umenie',
'visual_arts' => 'Vizuálni umelci',
'careers' => 'Kariéra',
2023-03-16 17:45:41 +01:00
'entrepreneurship' => 'Podnikateľský',
'investing' => 'Investičný',
'management' => 'Manažment',
2022-07-04 15:27:21 +02:00
'marketing' => 'Marketing',
2023-03-16 17:45:41 +01:00
'non_profit' => 'Neziskový',
2024-02-05 18:03:36 +01:00
'comedy_interviews' => 'Komediálne rozhovory',
2022-07-04 15:27:21 +02:00
'improv' => 'Improv',
'stand_up' => 'Stand-Up',
2023-03-16 17:45:41 +01:00
'courses' => 'Kurzy',
2023-07-27 12:49:25 +02:00
'how_to' => 'Ako na to',
'language_learning' => 'Učenie jazykov',
'self_improvement' => 'Sebazdokonaľovanie',
2022-07-04 15:27:21 +02:00
'comedy_fiction' => 'Comedy Fiction',
2024-01-15 15:59:13 +01:00
'drama' => 'Dráma',
2023-07-27 12:49:25 +02:00
'science_fiction' => 'Vedecko-fantastické',
2022-07-04 15:27:21 +02:00
'alternative_health' => 'Alternative Health',
'fitness' => 'Fitness',
2023-03-16 17:45:41 +01:00
'medicine' => 'Medicínsky',
2024-02-05 18:03:36 +01:00
'mental_health' => 'Duševné zdravie',
2022-07-04 15:27:21 +02:00
'nutrition' => 'Nutrition',
2023-03-16 17:45:41 +01:00
'sexuality' => 'Sexualita',
2024-02-05 18:03:36 +01:00
'education_for_kids' => 'Vzdelávanie pre deti',
2023-07-27 12:49:25 +02:00
'parenting' => 'Rodičovstvo',
2022-07-04 15:27:21 +02:00
'pets_and_animals' => 'Pets &amp Animals',
2023-03-16 17:45:41 +01:00
'stories_for_kids' => 'Príbehy pre deti',
2022-07-04 15:27:21 +02:00
'animation_and_manga' => 'Animation &amp Manga',
'automotive' => 'Automotive',
'aviation' => 'Aviation',
'crafts' => 'Crafts',
2023-07-27 12:49:25 +02:00
'games' => 'Hry',
'hobbies' => 'Záľuby',
2022-07-04 15:27:21 +02:00
'home_and_garden' => 'Home &amp Garden',
2023-07-27 12:49:25 +02:00
'video_games' => 'Videohry',
2022-07-04 15:27:21 +02:00
'music_commentary' => 'Music Commentary',
2023-07-27 12:49:25 +02:00
'music_history' => 'Hudobná história',
'music_interviews' => 'Hudobné rozhovory',
2022-07-04 15:27:21 +02:00
'business_news' => 'Business News',
'daily_news' => 'Denné správy',
2022-07-04 15:27:21 +02:00
'entertainment_news' => 'Entertainment News',
'news_commentary' => 'News Commentary',
2023-07-27 12:49:25 +02:00
'politics' => 'Politika',
'sports_news' => 'Športové správy',
'tech_news' => 'Technologické novinky',
2022-07-04 15:27:21 +02:00
'buddhism' => 'Buddhism',
2023-07-27 12:49:25 +02:00
'christianity' => 'Kresťanstvo',
2024-02-05 18:03:36 +01:00
'hinduism' => 'Hinduizmus',
2022-07-04 15:27:21 +02:00
'islam' => 'Islam',
'judaism' => 'Judaism',
2023-07-27 12:49:25 +02:00
'religion' => 'Náboženstvo',
'spirituality' => 'Duchovno',
'astronomy' => 'Astronómia',
'chemistry' => 'Chémia',
2022-07-04 15:27:21 +02:00
'earth_sciences' => 'Earth Sciences',
'life_sciences' => 'Life Sciences',
2023-07-27 12:49:25 +02:00
'mathematics' => 'Matematické',
2022-07-04 15:27:21 +02:00
'natural_sciences' => 'Natural Sciences',
2023-03-16 17:45:41 +01:00
'nature' => 'Príroda',
'physics' => 'Fyzika',
2024-01-15 15:59:13 +01:00
'social_sciences' => 'Sociálne vedy',
2023-03-16 17:45:41 +01:00
'documentary' => 'Dokumentárny',
2022-07-04 15:27:21 +02:00
'personal_journals' => 'Personal Journals',
2023-03-16 17:45:41 +01:00
'philosophy' => 'Filozofia',
2022-07-04 15:27:21 +02:00
'places_and_travel' => 'Places &amp Travel',
2023-03-16 17:45:41 +01:00
'relationships' => 'Vzťahy',
2024-01-15 15:59:13 +01:00
'baseball' => 'Bejzbal',
2022-07-04 15:27:21 +02:00
'basketball' => 'Basketball',
'cricket' => 'Cricket',
'fantasy_sports' => 'Fantasy Sports',
2024-01-15 15:59:13 +01:00
'football' => 'Futbal',
2022-07-04 15:27:21 +02:00
'golf' => 'Golf',
'hockey' => 'Hockey',
'rugby' => 'Rugby',
'running' => 'Running',
2024-02-05 18:03:36 +01:00
'soccer' => 'Futbal',
2023-03-16 17:45:41 +01:00
'swimming' => 'Plávanie',
'tennis' => 'Tenis',
2024-02-05 18:03:36 +01:00
'volleyball' => 'Volejbal',
2023-03-16 17:45:41 +01:00
'wilderness' => 'Divočina',
'wrestling' => 'Zápasnícky',
2022-07-04 15:27:21 +02:00
'after_shows' => 'After Shows',
2023-03-16 17:45:41 +01:00
'film_history' => 'Filmová história',
'film_interviews' => 'Filmové rozhovory',
'film_reviews' => 'Filmové recenzie',
'tv_reviews' => 'TV recenzie',
2022-07-04 15:27:21 +02:00
],
2022-07-14 11:03:44 +02:00
'publish_form' => [
2023-03-16 17:45:41 +01:00
'back_to_podcast_dashboard' => 'Späť na podcastovú nástenku',
2024-01-15 15:59:13 +01:00
'post' => 'Váš oznamovací príspevok',
2022-07-14 11:03:44 +02:00
'post_hint' =>
"Write a message to announce the publication of your podcast. The message will be featured in your podcast's homepage.",
2023-07-27 12:49:25 +02:00
'message_placeholder' => 'Napíšte vašu správu…',
'submit' => 'Zverejniť',
'publication_date' => 'Dátum zverejnenia',
2022-07-14 11:03:44 +02:00
'publication_method' => [
2023-07-27 12:49:25 +02:00
'now' => 'Hneď teraz',
'schedule' => 'Naplánovať',
2022-07-14 11:03:44 +02:00
],
2023-07-27 12:49:25 +02:00
'scheduled_publication_date' => 'Dátum plánovaného zverejnenia',
2022-07-14 11:03:44 +02:00
'scheduled_publication_date_hint' =>
'You can schedule the podcast release by setting a future publication date. This field must be formatted as YYYY-MM-DD HH:mm',
2023-07-27 12:49:25 +02:00
'submit_edit' => 'Upraviť zverejnenie',
'cancel_publication' => 'Zrušiť zverejnenie',
2022-07-14 11:03:44 +02:00
'message_warning' => 'You did not write a message for your announcement post!',
'message_warning_hint' => 'Having a message increases social engagement, resulting in a better visibility for your podcast.',
2023-07-27 12:49:25 +02:00
'message_warning_submit' => 'Napriek tomu zverejniť',
2022-07-14 11:03:44 +02:00
],
'publication_status_banner' => [
2024-02-05 18:03:36 +01:00
'draft_mode' => 'konceptový režim',
'not_published' => 'Tento podcast ešte nieje zverejnený.',
2022-07-14 11:03:44 +02:00
'scheduled' => 'This podcast is scheduled for publication on {publication_date}.',
],
2022-07-04 15:27:21 +02:00
'delete_form' => [
'disclaimer' =>
"Deleting the podcast will delete all episodes, media files, posts and analytics associated with it. This action is irreversible, you will not be able to retrieve them afterwards.",
'understand' => 'I understand, I want the podcast to be permanently deleted',
'submit' => 'Vymazať',
2022-07-04 15:27:21 +02:00
],
'by' => 'Od {publisher}',
2022-07-04 15:27:21 +02:00
'season' => 'Season {seasonNumber}',
'list_of_episodes_year' => '{year} episodes ({episodeCount})',
'list_of_episodes_season' =>
'Season {seasonNumber} episodes ({episodeCount})',
'no_episode' => 'Žiadna epizóda nenájdená!',
2024-01-15 15:59:13 +01:00
'follow' => 'Nasledovať',
2022-07-04 15:27:21 +02:00
'followers' => '{numberOfFollowers, plural,
one {# follower}
other {# followers}
}',
'posts' => '{numberOfPosts, plural,
one {# post}
other {# posts}
}',
2023-07-27 12:49:25 +02:00
'activity' => 'Aktivita',
'episodes' => 'Časti',
'sponsor' => 'Sponzor',
'funding_links' => 'Odkazy na financovanie {podcastTitle}',
'find_on' => 'Nájsť {podcastTitle} na',
'listen_on' => 'Počúvajte na',
2022-07-04 15:27:21 +02:00
];