mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-11 10:05:09 +00:00

- refactor episode, podcast and category entities to add dynamic properties - refactor Routes when adding feed route - update migration files to better fit itunes' and rss' specs - update podcast and episode forms - add SimpleRSSElement class to Libraries - add rss_helper - update home controller to redirect if system has only one podcast
27 lines
746 B
PHP
27 lines
746 B
PHP
<?
|
|
|
|
return [
|
|
'back_to_podcast' => 'Go back to podcast',
|
|
'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 episode',
|
|
]
|
|
]; |