2020-08-04 11:25:22 +00:00
< ? php
2021-06-08 09:52:11 +00:00
declare ( strict_types = 1 );
2020-07-10 12:20:25 +00:00
/**
* @ copyright 2020 Podlibre
* @ license https :// www . gnu . org / licenses / agpl - 3.0 . en . html AGPL3
* @ link https :// castopod . org /
*/
2020-06-05 13:54:40 +00:00
return [
2020-07-10 12:20:25 +00:00
'all_podcasts' => 'All podcasts' ,
'no_podcast' => 'No podcast found!' ,
2020-10-02 15:38:16 +00:00
'create' => 'Create a podcast' ,
'import' => 'Import a podcast' ,
2020-06-30 18:17:41 +02:00
'new_episode' => 'New Episode' ,
2020-10-06 15:39:27 +00:00
'feed' => 'RSS' ,
2020-07-27 09:35:34 +00:00
'view' => 'View podcast' ,
'edit' => 'Edit podcast' ,
'delete' => 'Delete podcast' ,
2020-07-10 12:20:25 +00:00
'see_episodes' => 'See episodes' ,
2020-07-16 10:08:23 +00:00
'see_contributors' => 'See contributors' ,
2020-08-04 11:25:22 +00:00
'go_to_page' => 'Go to page' ,
2020-10-02 15:38:16 +00:00
'latest_episodes' => 'Latest episodes' ,
'see_all_episodes' => 'See all episodes' ,
2020-06-10 15:00:12 +00:00
'form' => [
2020-10-02 15:38:16 +00:00
'identity_section_title' => 'Podcast identity' ,
'identity_section_subtitle' => 'These fields allow you to get noticed.' ,
'image' => 'Cover image' ,
2020-06-05 13:54:40 +00:00
'title' => 'Title' ,
'name' => 'Name' ,
2021-02-10 16:20:01 +00:00
'name_hint' =>
'Used for generating the podcast URL. Uppercase, lowercase, numbers and underscores are accepted.' ,
2020-06-05 13:54:40 +00:00
'type' => [
'label' => 'Type' ,
2020-10-02 15:38:16 +00:00
'hint' =>
'- <strong>episodic</strong>: if episodes are intended to be consumed without any specific order. Newest episodes will be presented first.<br/>- <strong>serial</strong>: if episodes are intended to be consumed in sequential order. The oldest episodes will be presented first.' ,
2020-06-05 13:54:40 +00:00
'episodic' => 'Episodic' ,
'serial' => 'Serial' ,
],
2020-10-02 15:38:16 +00:00
'description' => 'Description' ,
'classification_section_title' => 'Classification' ,
'classification_section_subtitle' =>
'These fields will impact your audience and competition.' ,
'language' => 'Language' ,
'category' => 'Category' ,
2021-05-25 14:05:12 +00:00
'category_placeholder' => 'Select a category…' ,
2020-10-02 15:38:16 +00:00
'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.' ,
'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’ .' ,
2020-06-05 13:54:40 +00:00
'copyright' => 'Copyright' ,
2020-12-23 14:11:38 +00:00
'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' ,
2020-11-26 18:53:52 +00:00
'monetization_section_title' => 'Monetization' ,
'monetization_section_subtitle' =>
'Earn money thanks to your audience.' ,
'payment_pointer' => 'Payment Pointer for Web Monetization' ,
'payment_pointer_hint' =>
'This is your where you will receive money thanks to Web Monetization' ,
2021-03-19 16:12:36 +00:00
'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.' ,
2021-03-30 16:21:00 +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' ,
2020-10-02 15:38:16 +00:00
'status_section_title' => 'Status' ,
'status_section_subtitle' => 'Dead or alive?' ,
'block' => 'Podcast should be hidden from all platforms' ,
'complete' => 'Podcast will not be having new episodes' ,
2020-10-29 15:45:19 +00:00
'lock' => 'Prevent podcast from being copied' ,
2020-10-20 13:46:00 +00:00
'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.' ,
2020-06-30 18:17:41 +02:00
'submit_create' => 'Create podcast' ,
'submit_edit' => 'Save podcast' ,
2020-06-05 13:54:40 +00:00
],
'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' ,
2020-06-26 14:34:52 +00:00
'self_improvement' => 'Self-Improvement' ,
2020-06-05 13:54:40 +00:00
'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' ,
],
2020-10-02 15:38:16 +00:00
'by' => 'By {publisher}' ,
2020-09-04 09:09:26 +00:00
'season' => 'Season {seasonNumber}' ,
2021-04-02 17:20:02 +00:00
'list_of_episodes_year' => '{year} episodes ({episodeCount})' ,
'list_of_episodes_season' =>
'Season {seasonNumber} episodes ({episodeCount})' ,
2020-09-04 09:09:26 +00:00
'no_episode' => 'No episode found!' ,
'no_episode_hint' =>
'Navigate the podcast episodes with the navigation bar above.' ,
2021-04-02 17:20:02 +00:00
'follow' => 'Follow' ,
'followers' => ' { numberOfFollowers , plural ,
one { < span class = " font-semibold " > #</span> follower}
other { < span class = " font-semibold " > #</span> followers}
} ' ,
'notes' => ' { numberOfNotes , plural ,
one { < span class = " font-semibold " > #</span> note}
other { < span class = " font-semibold " > #</span> notes}
} ' ,
'activity' => 'Activity' ,
'episodes' => 'Episodes' ,
'sponsor_title' => 'Enjoying the show?' ,
'sponsor' => 'Sponsor' ,
'funding_links' => 'Funding links for {podcastTitle}' ,
'find_on' => 'Find {podcastTitle} on' ,
'listen_on' => 'Listen on' ,
2020-08-04 11:25:22 +00:00
];