castopod/app/Language/en/Episode.php
Yassine Doghri ac5f0c7328 feat: edit + delete podcast and episode
- refactor model / entity and controller logic for DRY code
- update episodes and podcasts
migrations
- define callbacks for podcast and episode models for enclosure update and cache
clearing
2020-10-15 14:40:57 +00:00

30 lines
842 B
PHP

<?
return [
'back_to_podcast' => 'Go back to podcast',
'edit' => 'Edit',
'delete' => 'Delete',
'create' => 'Add an episode',
'form' => [
'file' => 'Audio file',
'title' => 'Title',
'slug' => 'Slug',
'description' => 'Description',
'pub_date' => 'Publication date',
'image' => 'Image',
'explicit' => 'Explicit',
'author_name' => 'Author name',
'author_email' => 'Author email',
'type' => [
'label' => 'Type',
'full' => 'Full',
'trailer' => 'Trailer',
'bonus' => 'Bonus',
],
'episode_number' => 'Episode number',
'season_number' => 'Season number',
'block' => 'Block',
'submit_create' => 'Create episode',
'submit_edit' => 'Save episode',
]
];