2021-08-23 11:05:16 +00:00
< ? php
declare ( strict_types = 1 );
/**
2022-02-19 16:06:11 +00:00
* @ copyright 2020 Ad Aures
2021-08-23 11:05:16 +00:00
* @ license https :// www . gnu . org / licenses / agpl - 3.0 . en . html AGPL3
* @ link https :// castopod . org /
*/
return [
'all_podcasts' => 'All podcasts' ,
'no_podcast' => 'No podcast found!' ,
2021-09-21 15:51:04 +00:00
'create' => 'Create podcast' ,
'import' => 'Import podcast' ,
2023-06-21 16:17:11 +00:00
'all_imports' => 'Podcast imports' ,
2021-08-23 11:05:16 +00:00
'new_episode' => 'New Episode' ,
'view' => 'View podcast' ,
'edit' => 'Edit podcast' ,
2022-07-05 16:39:20 +00:00
'publish' => 'Publish podcast' ,
'publish_edit' => 'Edit publication' ,
2021-08-23 11:05:16 +00:00
'delete' => 'Delete podcast' ,
'see_episodes' => 'See episodes' ,
'see_contributors' => 'See contributors' ,
2023-11-17 17:26:37 +00:00
'monetization_other' => 'Other monetization' ,
2021-08-23 11:05:16 +00:00
'go_to_page' => 'Go to page' ,
'latest_episodes' => 'Latest episodes' ,
'see_all_episodes' => 'See all episodes' ,
2022-07-05 16:39:20 +00:00
'draft' => 'Draft' ,
2022-01-05 14:58:53 +00:00
'messages' => [
2022-07-05 16:39:20 +00:00
'createSuccess' => 'Podcast successfully created!' ,
2022-01-05 14:58:53 +00:00
'editSuccess' => 'Podcast has been successfully updated!' ,
'importSuccess' => 'Podcast has been successfully imported!' ,
2022-06-07 11:13:06 +00:00
'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.' ,
2022-06-15 12:07:00 +00:00
'podcastFeedUpdateSuccess' => ' Successful update : { number_of_new_episodes , plural ,
2022-06-15 10:27:13 +00:00
one { # episode was}
other { # episodes were}
} added to the podcast ! ' ,
2022-06-15 12:07:00 +00:00
'podcastFeedUpToDate' => 'Podcast is already up to date.' ,
2022-07-05 16:39:20 +00: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-01-05 14:58:53 +00:00
],
2021-08-23 11:05:16 +00:00
'form' => [
'identity_section_title' => 'Podcast identity' ,
'identity_section_subtitle' => 'These fields allow you to get noticed.' ,
2023-10-12 15:52:20 +00:00
'fediverse_section_title' => 'Fediverse identity' ,
2021-11-01 17:12:03 +00:00
'cover' => 'Podcast cover' ,
2022-06-15 12:07:00 +00:00
'cover_size_hint' => 'Cover must be squared and at least 1400px wide and tall.' ,
2021-11-01 17:12:03 +00:00
'banner' => 'Podcast banner' ,
2022-06-15 12:07:00 +00:00
'banner_size_hint' => 'Banner must have a 3:1 ratio and be at least 1500px wide.' ,
2021-11-01 17:12:03 +00:00
'banner_delete' => 'Delete podcast banner' ,
2021-08-23 11:05:16 +00:00
'title' => 'Title' ,
'handle' => 'Handle' ,
'handle_hint' =>
'Used to identify the podcast. Uppercase, lowercase, numbers and underscores are accepted.' ,
'type' => [
'label' => 'Type' ,
'episodic' => 'Episodic' ,
2021-12-31 10:21:57 +00:00
'episodic_hint' => 'If episodes are intended to be consumed without any specific order. Newest episodes will be presented first.' ,
2021-08-23 11:05:16 +00:00
'serial' => 'Serial' ,
2024-02-05 16:51:04 +00: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.' ,
2021-08-23 11:05:16 +00:00
],
'description' => 'Description' ,
'classification_section_title' => 'Classification' ,
'classification_section_subtitle' =>
'These fields will impact your audience and competition.' ,
'language' => 'Language' ,
'category' => 'Category' ,
'category_placeholder' => 'Select a category…' ,
'other_categories' => 'Other categories' ,
'parental_advisory' => [
'label' => 'Parental advisory' ,
'hint' => 'Does it contain explicit content?' ,
'undefined' => 'undefined' ,
'clean' => 'Clean' ,
'explicit' => 'Explicit' ,
],
'author_section_title' => 'Author' ,
'author_section_subtitle' => 'Who is managing the podcast?' ,
'owner_name' => 'Owner name' ,
'owner_name_hint' =>
'For administrative use only. Visible in the public RSS feed.' ,
'owner_email' => 'Owner email' ,
'owner_email_hint' =>
'Will be used by most platforms to verify the podcast ownership. Visible in the public RSS feed.' ,
2024-01-01 10:11:29 +00: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.' ,
2021-08-23 11:05:16 +00:00
'publisher' => 'Publisher' ,
'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’ .' ,
'copyright' => 'Copyright' ,
'location_section_title' => 'Location' ,
'location_section_subtitle' => 'What place is this podcast about?' ,
'location_name' => 'Location name or address' ,
'location_name_hint' => 'This can be a real place or fictional' ,
'monetization_section_title' => 'Monetization' ,
'monetization_section_subtitle' =>
'Earn money thanks to your audience.' ,
2022-09-28 15:02:09 +00:00
'premium' => 'Premium' ,
'premium_by_default' => 'Episodes must be set as premium by default' ,
'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 15:04:42 +00:00
'op3' => 'Open Podcast Prefix Project (OP3)' ,
2024-01-23 13:19:53 +00:00
'op3_link' => 'Visit your OP3 dashboard (external link)' ,
2022-12-09 15:04:42 +00: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.' ,
2021-08-23 11:05:16 +00: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.' ,
2024-04-24 10:03:20 +00:00
'verify_txt' => 'Ownership verification TXT' ,
'verify_txt_hint' => 'Rather than relying on email, certain third-party services may confirm your podcast ownership by requesting you to embed a verification text within your feed.' ,
'verify_txt_helper' => 'This text is injected into a <podcast:txt purpose="verify"> tag.' ,
2022-02-09 17:44:24 +00:00
'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.' ,
2022-06-15 10:27:13 +00:00
'old_feed_url' => 'Old feed URL' ,
2021-08-23 11:05:16 +00:00
'partnership' => 'Partnership' ,
'partner_id' => 'ID' ,
'partner_link_url' => 'Link URL' ,
'partner_image_url' => 'Image URL' ,
'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-05 16:39:20 +00: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)' ,
2021-08-23 11:05:16 +00: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' => 'Create podcast' ,
'submit_edit' => 'Save podcast' ,
],
'category_options' => [
'uncategorized' => 'uncategorized' ,
'arts' => 'Arts' ,
'business' => 'Business' ,
'comedy' => 'Comedy' ,
'education' => 'Education' ,
'fiction' => 'Fiction' ,
'government' => 'Government' ,
'health_and_fitness' => 'Health & Fitness' ,
'history' => 'History' ,
'kids_and_family' => 'Kids & Family' ,
'leisure' => 'Leisure' ,
'music' => 'Music' ,
'news' => 'News' ,
'religion_and_spirituality' => 'Religion & Spirituality' ,
'science' => 'Science' ,
'society_and_culture' => 'Society & Culture' ,
'sports' => 'Sports' ,
'technology' => 'Technology' ,
'true_crime' => 'True Crime' ,
'tv_and_film' => 'TV & Film' ,
'books' => 'Books' ,
'design' => 'Design' ,
'fashion_and_beauty' => 'Fashion & Beauty' ,
'food' => 'Food' ,
'performing_arts' => 'Performing Arts' ,
'visual_arts' => 'Visual Arts' ,
'careers' => 'Careers' ,
'entrepreneurship' => 'Entrepreneurship' ,
'investing' => 'Investing' ,
'management' => 'Management' ,
'marketing' => 'Marketing' ,
'non_profit' => 'Non-Profit' ,
'comedy_interviews' => 'Comedy Interviews' ,
'improv' => 'Improv' ,
'stand_up' => 'Stand-Up' ,
'courses' => 'Courses' ,
'how_to' => 'How To' ,
'language_learning' => 'Language Learning' ,
'self_improvement' => 'Self-Improvement' ,
'comedy_fiction' => 'Comedy Fiction' ,
'drama' => 'Drama' ,
'science_fiction' => 'Science Fiction' ,
'alternative_health' => 'Alternative Health' ,
'fitness' => 'Fitness' ,
'medicine' => 'Medicine' ,
'mental_health' => 'Mental Health' ,
'nutrition' => 'Nutrition' ,
'sexuality' => 'Sexuality' ,
'education_for_kids' => 'Education for Kids' ,
'parenting' => 'Parenting' ,
'pets_and_animals' => 'Pets & Animals' ,
'stories_for_kids' => 'Stories for Kids' ,
'animation_and_manga' => 'Animation & Manga' ,
'automotive' => 'Automotive' ,
'aviation' => 'Aviation' ,
'crafts' => 'Crafts' ,
'games' => 'Games' ,
'hobbies' => 'Hobbies' ,
'home_and_garden' => 'Home & Garden' ,
'video_games' => 'Video Games' ,
'music_commentary' => 'Music Commentary' ,
'music_history' => 'Music History' ,
'music_interviews' => 'Music Interviews' ,
'business_news' => 'Business News' ,
'daily_news' => 'Daily News' ,
'entertainment_news' => 'Entertainment News' ,
'news_commentary' => 'News Commentary' ,
'politics' => 'Politics' ,
'sports_news' => 'Sports News' ,
'tech_news' => 'Tech News' ,
'buddhism' => 'Buddhism' ,
'christianity' => 'Christianity' ,
'hinduism' => 'Hinduism' ,
'islam' => 'Islam' ,
'judaism' => 'Judaism' ,
'religion' => 'Religion' ,
'spirituality' => 'Spirituality' ,
'astronomy' => 'Astronomy' ,
'chemistry' => 'Chemistry' ,
'earth_sciences' => 'Earth Sciences' ,
'life_sciences' => 'Life Sciences' ,
'mathematics' => 'Mathematics' ,
'natural_sciences' => 'Natural Sciences' ,
'nature' => 'Nature' ,
'physics' => 'Physics' ,
'social_sciences' => 'Social Sciences' ,
'documentary' => 'Documentary' ,
'personal_journals' => 'Personal Journals' ,
'philosophy' => 'Philosophy' ,
'places_and_travel' => 'Places & Travel' ,
'relationships' => 'Relationships' ,
'baseball' => 'Baseball' ,
'basketball' => 'Basketball' ,
'cricket' => 'Cricket' ,
'fantasy_sports' => 'Fantasy Sports' ,
'football' => 'Football' ,
'golf' => 'Golf' ,
'hockey' => 'Hockey' ,
'rugby' => 'Rugby' ,
'running' => 'Running' ,
'soccer' => 'Soccer' ,
'swimming' => 'Swimming' ,
'tennis' => 'Tennis' ,
'volleyball' => 'Volleyball' ,
'wilderness' => 'Wilderness' ,
'wrestling' => 'Wrestling' ,
'after_shows' => 'After Shows' ,
'film_history' => 'Film History' ,
'film_interviews' => 'Film Interviews' ,
'film_reviews' => 'Film Reviews' ,
'tv_reviews' => 'TV Reviews' ,
],
2022-07-05 16:39:20 +00:00
'publish_form' => [
'back_to_podcast_dashboard' => 'Back to podcast dashboard' ,
'post' => 'Your announcement post' ,
'post_hint' =>
" Write a message to announce the publication of your podcast. The message will be featured in your podcast's homepage. " ,
'message_placeholder' => 'Write your message…' ,
'submit' => 'Publish' ,
'publication_date' => 'Publication date' ,
'publication_method' => [
'now' => 'Now' ,
'schedule' => 'Schedule' ,
],
'scheduled_publication_date' => 'Scheduled publication date' ,
'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' ,
'submit_edit' => 'Edit publication' ,
'cancel_publication' => 'Cancel publication' ,
'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.' ,
'message_warning_submit' => 'Publish anyway' ,
],
'publication_status_banner' => [
'draft_mode' => 'draft mode' ,
'not_published' => 'This podcast is not yet published.' ,
'scheduled' => 'This podcast is scheduled for publication on {publication_date}.' ,
],
2022-06-07 11:13:06 +00: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' => 'Delete' ,
],
2021-08-23 11:05:16 +00:00
'by' => 'By {publisher}' ,
'season' => 'Season {seasonNumber}' ,
'list_of_episodes_year' => '{year} episodes ({episodeCount})' ,
'list_of_episodes_season' =>
'Season {seasonNumber} episodes ({episodeCount})' ,
'no_episode' => 'No episode found!' ,
'follow' => 'Follow' ,
'followers' => ' { numberOfFollowers , plural ,
2022-04-21 12:53:47 +00:00
one { # follower}
other { # followers}
2021-08-23 11:05:16 +00:00
} ' ,
'posts' => ' { numberOfPosts , plural ,
2022-04-21 12:53:47 +00:00
one { # post}
other { # posts}
2021-08-23 11:05:16 +00:00
} ' ,
'activity' => 'Activity' ,
'episodes' => 'Episodes' ,
'sponsor' => 'Sponsor' ,
'funding_links' => 'Funding links for {podcastTitle}' ,
'find_on' => 'Find {podcastTitle} on' ,
'listen_on' => 'Listen on' ,
];