mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
226 lines
11 KiB
PHP
226 lines
11 KiB
PHP
<?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' => 'Season {seasonNumber}',
|
|
'season_abbr' => 'S{seasonNumber}',
|
|
'number' => 'Episode {episodeNumber}',
|
|
'number_abbr' => 'Ep. {episodeNumber}',
|
|
'season_episode' => 'Season {seasonNumber} episode {episodeNumber}',
|
|
'season_episode_abbr' => 'S{seasonNumber}E{episodeNumber}',
|
|
'number_of_comments' => '{numberOfComments, plural,
|
|
one {# comment}
|
|
other {# comments}
|
|
}',
|
|
'all_podcast_episodes' => 'All podcast episodes',
|
|
'back_to_podcast' => 'Go back to podcast',
|
|
'edit' => 'Edit',
|
|
'preview' => 'Preview',
|
|
'publish' => 'Publish',
|
|
'publish_edit' => 'Edit publication',
|
|
'publish_date_edit' => 'Edit publication date',
|
|
'unpublish' => 'Unpublish',
|
|
'publish_error' => 'Episode is already published.',
|
|
'publish_edit_error' => 'Episode is already published.',
|
|
'publish_cancel_error' => 'Episode is already published.',
|
|
'publish_date_edit_error' => 'Episode has not been published yet, you cannot edit its publication date.',
|
|
'publish_date_edit_future_error' => 'Episode\'s publication date can only be set to a past date! If you would like to reschedule it, unpublish it first.',
|
|
'publish_date_edit_success' => 'Episode\'s publication date has been updated successfully!',
|
|
'unpublish_error' => 'Episode is not published.',
|
|
'delete' => 'Delete',
|
|
'go_to_page' => 'Go to page',
|
|
'create' => 'Add an episode',
|
|
'publication_status' => [
|
|
'published' => 'Published',
|
|
'with_podcast' => 'Published',
|
|
'scheduled' => 'Scheduled',
|
|
'not_published' => 'Not published',
|
|
],
|
|
'with_podcast_hint' => 'To be published at the same time as the podcast',
|
|
'list' => [
|
|
'search' => [
|
|
'placeholder' => 'Search for an episode',
|
|
'clear' => 'Clear search',
|
|
'submit' => 'Search',
|
|
],
|
|
'number_of_episodes' => '{numberOfEpisodes, plural,
|
|
one {# episode}
|
|
other {# episodes}
|
|
}',
|
|
'episode' => 'Episode',
|
|
'visibility' => 'Visibility',
|
|
'downloads' => 'Downloads',
|
|
'comments' => 'Comments',
|
|
'actions' => 'Actions',
|
|
],
|
|
'messages' => [
|
|
'createSuccess' => 'Episode has been successfully created!',
|
|
'editSuccess' => 'Episode has been successfully updated!',
|
|
'publishSuccess' => '{publication_status, select,
|
|
published {Episode successfully published!}
|
|
scheduled {Episode publication successfully scheduled!}
|
|
with_podcast {This episode will be published at the same time as the podcast.}
|
|
other {This episode is not published.}
|
|
}',
|
|
'publishCancelSuccess' => 'Episode publication successfully cancelled!',
|
|
'unpublishBeforeDeleteTip' => 'You must unpublish the episode before deleting it.',
|
|
'scheduleDateError' => 'Schedule date must be set!',
|
|
'deletePublishedEpisodeError' => 'Please unpublish the episode before deleting it.',
|
|
'deleteSuccess' => 'Episode successfully deleted!',
|
|
'deleteError' => 'Failed to delete episode {type, select,
|
|
transcript {transcript}
|
|
chapters {chapters}
|
|
image {cover}
|
|
audio {audio}
|
|
other {media}
|
|
}.',
|
|
'deleteFileError' => 'Failed to delete {type, select,
|
|
transcript {transcript}
|
|
chapters {chapters}
|
|
image {cover}
|
|
audio {audio}
|
|
other {media}
|
|
} file {file_key}. You may manually remove it from your disk.',
|
|
'sameSlugError' => 'An episode with the chosen slug already exists.',
|
|
],
|
|
'form' => [
|
|
'file_size_error' =>
|
|
'Your file size is too big! Max size is {0}. Increase the `memory_limit`, `upload_max_filesize` and `post_max_size` values in your php configuration file then restart your web server to upload your file.',
|
|
'audio_file' => 'Audio file',
|
|
'audio_file_hint' => 'Choose an .mp3 or .m4a audio file.',
|
|
'info_section_title' => 'Episode info',
|
|
'cover' => 'Episode cover',
|
|
'cover_hint' =>
|
|
'If you do not set a cover, the podcast cover will be used instead.',
|
|
'cover_size_hint' => 'Cover must be squared and at least 1400px wide and tall.',
|
|
'title' => 'Title',
|
|
'title_hint' =>
|
|
'Should contain a clear and concise episode name. Do not specify the episode or season numbers here.',
|
|
'permalink' => 'Permalink',
|
|
'season_number' => 'Season',
|
|
'episode_number' => 'Episode',
|
|
'type' => [
|
|
'label' => 'Type',
|
|
'full' => 'Full',
|
|
'full_hint' => 'Complete content (the episode)',
|
|
'trailer' => 'Trailer',
|
|
'trailer_hint' => 'Short, promotional piece of content that represents a preview of the current show',
|
|
'bonus' => 'Bonus',
|
|
'bonus_hint' => 'Extra content for the show (for example, behind the scenes info or interviews with the cast) or cross-promotional content for another show',
|
|
],
|
|
'premium_title' => 'Premium',
|
|
'premium' => 'Episode must be accessible to premium subscribers only',
|
|
'parental_advisory' => [
|
|
'label' => 'Parental advisory',
|
|
'hint' => 'Does the episode contain explicit content?',
|
|
'undefined' => 'undefined',
|
|
'clean' => 'Clean',
|
|
'explicit' => 'Explicit',
|
|
],
|
|
'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.',
|
|
'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. See the {podcastNamespaceLink} for more information.',
|
|
'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',
|
|
'transcript' => 'Transcript (subtitles / closed captions)',
|
|
'transcript_hint' => 'Only .srt or .vtt are allowed.',
|
|
'transcript_download' => 'Download transcript',
|
|
'transcript_file' => 'Transcript file (.srt or .vtt)',
|
|
'transcript_remote_url' => 'Remote url for transcript',
|
|
'transcript_file_delete' => 'Delete transcript file',
|
|
'chapters' => 'Chapters',
|
|
'chapters_hint' => 'File must be in JSON Chapters format.',
|
|
'chapters_download' => 'Download chapters',
|
|
'chapters_file' => 'Chapters file',
|
|
'chapters_remote_url' => 'Remote url for chapters file',
|
|
'chapters_file_delete' => 'Delete chapters file',
|
|
'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.',
|
|
'block' => 'Episode should be hidden from public catalogues',
|
|
'block_hint' =>
|
|
'The episode show or hide status: toggling this on prevents the episode from appearing in Apple Podcasts, Google Podcasts, and any third party apps that pull shows from these directories. (Not guaranteed)',
|
|
'submit_create' => 'Create episode',
|
|
'submit_edit' => 'Save episode',
|
|
],
|
|
'publish_form' => [
|
|
'back_to_episode_dashboard' => 'Back to episode dashboard',
|
|
'post' => 'Your announcement post',
|
|
'post_hint' =>
|
|
"Write a message to announce the publication of your episode. The message will be broadcasted to all your followers in the fediverse and be featured in your podcast's homepage.",
|
|
'message_placeholder' => 'Write your message…',
|
|
'publication_date' => 'Publication date',
|
|
'publication_method' => [
|
|
'now' => 'Now',
|
|
'schedule' => 'Schedule',
|
|
'with_podcast' => 'Publish alongside podcast',
|
|
],
|
|
'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',
|
|
'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 episode.',
|
|
'message_warning_submit' => 'Publish anyways',
|
|
],
|
|
'publish_date_edit_form' => [
|
|
'new_publication_date' => 'New publication date',
|
|
'new_publication_date_hint' => 'Must be set to a past date.',
|
|
'submit' => 'Edit publication date',
|
|
],
|
|
'unpublish_form' => [
|
|
'disclaimer' =>
|
|
"Unpublishing the episode will delete all the comments and posts associated with it and remove it from the podcast's RSS feed.",
|
|
'understand' => 'I understand, I want to unpublish the episode',
|
|
'submit' => 'Unpublish',
|
|
],
|
|
'delete_form' => [
|
|
'disclaimer' =>
|
|
"Deleting the episode will delete all media files, comments, video clips and soundbites associated with it.",
|
|
'understand' => 'I understand, I want to delete the episode',
|
|
'submit' => 'Delete',
|
|
],
|
|
'embed' => [
|
|
'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',
|
|
],
|
|
'publication_status_banner' => [
|
|
'draft_mode' => 'draft mode',
|
|
'text' => '{publication_status, select,
|
|
published {This episode is not yet published.}
|
|
scheduled {This episode is scheduled for publication on {publication_date}.}
|
|
with_podcast {This episode will be published at the same time as the podcast.}
|
|
other {This episode is not yet published.}
|
|
}',
|
|
'preview' => 'Preview',
|
|
],
|
|
];
|