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-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',
|
|
|
|
'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',
|
|
|
|
'form' => [
|
|
|
|
'file' => 'Audio file',
|
|
|
|
'title' => 'Title',
|
|
|
|
'slug' => 'Slug',
|
|
|
|
'description' => 'Description',
|
|
|
|
'pub_date' => 'Publication date',
|
|
|
|
'image' => 'Image',
|
|
|
|
'explicit' => 'Explicit',
|
2020-06-26 14:34:52 +00:00
|
|
|
'author_name' => 'Author name',
|
|
|
|
'author_email' => 'Author email',
|
2020-06-10 15:00:12 +00:00
|
|
|
'type' => [
|
|
|
|
'label' => 'Type',
|
|
|
|
'full' => 'Full',
|
|
|
|
'trailer' => 'Trailer',
|
|
|
|
'bonus' => 'Bonus',
|
|
|
|
],
|
|
|
|
'episode_number' => 'Episode number',
|
|
|
|
'season_number' => 'Season number',
|
|
|
|
'block' => 'Block',
|
2020-06-30 18:17:41 +02:00
|
|
|
'submit_create' => 'Create episode',
|
|
|
|
'submit_edit' => 'Save episode',
|
2020-08-04 11:25:22 +00:00
|
|
|
],
|
|
|
|
];
|