castopod/app/Language/en/Episodes.php
Yassine Doghri f3b2c8b84f feat(episodes): add create form and view pages for episode
- add james-heinrich/getid3 library as a dependency to composer.json
- update DEPENDENCIES.md file
- fix episodes table migration script
- add js devDependencies: prettier, @prettier/plugin-php and lint-staged to automatically format staged files before commit
- reformat all files to the prettier format
- refactor code by separating some logic as helper functions
- overwrite existing files when uploading new files with the same name

fixes #1
2020-10-15 14:40:47 +00:00

24 lines
617 B
PHP

<?
return [
'create' => 'Add an episode',
'form' => [
'file' => 'Audio file',
'title' => 'Title',
'slug' => 'Slug',
'description' => 'Description',
'pub_date' => 'Publication date',
'image' => 'Image',
'explicit' => 'Explicit',
'type' => [
'label' => 'Type',
'full' => 'Full',
'trailer' => 'Trailer',
'bonus' => 'Bonus',
],
'episode_number' => 'Episode number',
'season_number' => 'Season number',
'block' => 'Block',
'submit' => 'Create episode',
]
];