2020-08-04 11:25:22 +00:00
< ? php
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-10 15:00:12 +00:00
return [
2020-09-04 09:09:26 +00:00
'season' => 'Season {seasonNumber}' ,
2020-10-29 17:25:15 +00:00
'season_abbr' => 'S{seasonNumber}' ,
2020-09-04 09:09:26 +00:00
'number' => 'Episode {episodeNumber}' ,
2020-10-02 15:38:16 +00:00
'number_abbr' => 'Ep. {episodeNumber}' ,
'season_episode' => 'Season {seasonNumber} episode {episodeNumber}' ,
'season_episode_abbr' => 'S{seasonNumber}E{episodeNumber}' ,
2021-04-02 17:20:02 +00:00
'back_to_episodes' => 'Back to episodes of {podcast}' ,
'activity' => 'Activity' ,
'description' => 'Description' ,
'total_favourites' => ' { numberOfTotalFavourites , plural ,
one { # total favourite}
other { # total favourites}
} ' ,
'total_reblogs' => ' { numberOfTotalReblogs , plural ,
one { # total share}
other { # total shares}
} ' ,
'total_notes' => ' { numberOfTotalNotes , plural ,
one { # note}
other { # total notes}
} ' ,
2020-07-10 12:20:25 +00:00
'all_podcast_episodes' => 'All podcast episodes' ,
2020-06-26 14:34:52 +00:00
'back_to_podcast' => 'Go back to podcast' ,
2020-06-30 18:17:41 +02:00
'edit' => 'Edit' ,
2021-04-02 17:20:02 +00:00
'publish' => 'Publish' ,
'publish_edit' => 'Edit publication' ,
'unpublish' => 'Unpublish' ,
2020-06-30 18:17:41 +02:00
'delete' => 'Delete' ,
2020-08-04 11:25:22 +00:00
'go_to_page' => 'Go to page' ,
2020-06-10 15:00:12 +00:00
'create' => 'Add an episode' ,
2020-12-09 17:52:30 +00:00
'publication_status' => [
'published' => 'Published on {0}' ,
'scheduled' => 'Scheduled for {0}' ,
'not_published' => 'Not published' ,
],
2020-06-10 15:00:12 +00:00
'form' => [
2021-04-08 10:45:58 +00:00
'warning' =>
'In case of fatal error, try increasing the `memory_limit`, `upload_max_filesize` and `post_max_size` values in your php configuration file then restart your web server.<br />These values must be higher than the audio file you wish to upload.' ,
2021-05-03 17:39:58 +00:00
'audio_file' => 'Audio file' ,
'audio_file_hint' => 'Choose an .mp3 or .m4a audio file.' ,
2020-10-02 15:38:16 +00:00
'info_section_title' => 'Episode info' ,
'info_section_subtitle' => '' ,
'image' => 'Cover image' ,
'image_hint' =>
'If you do not set an image, the podcast cover will be used instead.' ,
2020-06-10 15:00:12 +00:00
'title' => 'Title' ,
2020-10-02 15:38:16 +00:00
'title_hint' =>
'Should contain a clear and concise episode name. Do not specify the episode or season numbers here.' ,
2020-06-10 15:00:12 +00:00
'slug' => 'Slug' ,
2020-10-02 15:38:16 +00:00
'slug_hint' => 'Used for generating the episode URL.' ,
'season_number' => 'Season' ,
'episode_number' => 'Episode' ,
2020-06-10 15:00:12 +00:00
'type' => [
'label' => 'Type' ,
2020-10-02 15:38:16 +00:00
'hint' =>
'- <strong>full</strong>: complete content the episode.<br/>- <strong>trailer</strong>: short, promotional piece of content that represents a preview of the current show.<br/>- <strong>bonus</strong>: extra content for the show (for example, behind the scenes info or interviews with the cast) or cross-promotional content for another show.' ,
2020-06-10 15:00:12 +00:00
'full' => 'Full' ,
'trailer' => 'Trailer' ,
'bonus' => 'Bonus' ,
],
2020-10-02 15:38:16 +00:00
'parental_advisory' => [
'label' => 'Parental advisory' ,
'hint' => 'Does the episode contain explicit content?' ,
'undefined' => 'undefined' ,
'clean' => 'Clean' ,
'explicit' => 'Explicit' ,
],
2021-04-02 17:20:02 +00:00
'show_notes_section_title' => 'Show notes' ,
'show_notes_section_subtitle' =>
'Up to 4000 characters, be clear and concise. Show notes help potential listeners in finding the episode.' ,
'description' => 'Description' ,
'description_footer' => 'Description footer' ,
'description_footer_hint' =>
'This text is added at the end of each episode description, it is a good place to input your social links for example.' ,
2020-11-24 20:18:08 +00:00
'additional_files_section_title' => 'Additional files' ,
'additional_files_section_subtitle' =>
'These files may be used by other platforms to provide better experience to your audience.<br />See the {podcastNamespaceLink} for more information.' ,
2021-04-02 17:20:02 +00:00
'location_section_title' => 'Location' ,
'location_section_subtitle' => 'What place is this episode about?' ,
'location_name' => 'Location name or address' ,
'location_name_hint' => 'This can be a real or fictional location' ,
2020-11-24 20:18:08 +00:00
'transcript' => 'Transcript or closed captions' ,
'transcript_hint' => 'Allowed formats are txt, html, srt or json.' ,
2021-05-03 17:39:58 +00:00
'transcript_file' => 'Transcript file' ,
'transcript_file_remote_url' => 'Remote url for transcript' ,
'transcript_file_delete' => 'Delete transcript file' ,
2020-11-24 20:18:08 +00:00
'chapters' => 'Chapters' ,
2021-05-03 17:39:58 +00:00
'chapters_hint' => 'File must be in JSON Chapters format.' ,
'chapters_file' => 'Chapters file' ,
'chapters_file_remote_url' => 'Remote url for chapters file' ,
'chapters_file_delete' => 'Delete chapters file' ,
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 episode' ,
'custom_rss_hint' => 'This will be injected within the ❬item❭ tag.' ,
2021-04-02 17:20:02 +00:00
'block' => 'Episode should be hidden from all platforms' ,
'block_hint' =>
'The episode show or hide status. If you want this episode removed from the Apple directory, toggle this on.' ,
2020-06-30 18:17:41 +02:00
'submit_create' => 'Create episode' ,
'submit_edit' => 'Save episode' ,
2020-08-04 11:25:22 +00:00
],
2021-04-02 17:20:02 +00:00
'publish_form' => [
'note' => 'Your note' ,
'note_hint' =>
'The message you write will be broadcasted to all your followers in the fediverse.' ,
'publication_date' => 'Publication date' ,
'publication_method' => [
'now' => 'Now' ,
'schedule' => 'Schedule' ,
],
'scheduled_publication_date' => 'Scheduled publication date' ,
'scheduled_publication_date_clear' => 'Clear publication date' ,
'scheduled_publication_date_hint' =>
'You can schedule the episode release by setting a future publication date. This field must be formatted as YYYY-MM-DD HH:mm' ,
'submit' => 'Publish' ,
'submit_edit' => 'Edit publication' ,
],
'unpublish_form' => [
'disclaimer' =>
'Unpublishing the episode will delete all the notes associated with the episode and remove it from the podcast\'s RSS feed.' ,
'understand' => 'I understand, I want to unpublish the episode' ,
'submit' => 'Unpublish' ,
],
2020-12-07 20:13:46 +00:00
'soundbites' => 'Soundbites' ,
'soundbites_form' => [
'title' => 'Edit soundbites' ,
'info_section_title' => 'Episode soundbites' ,
'info_section_subtitle' => 'Add, edit or delete soundbites' ,
'start_time' => 'Start' ,
'start_time_hint' =>
'The first second of the soundbite, it can be a decimal number.' ,
'duration' => 'Duration' ,
'duration_hint' =>
'The duration of the soundbite (in seconds), it can be a decimal number.' ,
'label' => 'Label' ,
'label_hint' => 'Text that will be displayed.' ,
'play' => 'Play soundbite' ,
'delete' => 'Delete soundbite' ,
'bookmark' =>
'Click while playing to get current position, click again to get duration.' ,
'submit_edit' => 'Save all soundbites' ,
],
2021-02-27 21:21:26 +00:00
'embeddable_player' => [
'add' => 'Add embeddable player' ,
'title' => 'Embeddable player' ,
'label' =>
'Pick a theme color, copy the embeddable player to clipboard, then paste it on your website.' ,
'clipboard_iframe' => 'Copy embeddable player to clipboard' ,
'clipboard_url' => 'Copy address to clipboard' ,
'dark' => 'Dark' ,
'dark-transparent' => 'Dark transparent' ,
'light' => 'Light' ,
'light-transparent' => 'Light transparent' ,
],
2020-08-04 11:25:22 +00:00
];