mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-14 02:05:47 +00:00

- add podcast sidebar navigation - add podcast dashboard with latest episodes - add pagination to podcast episodes - add components helper to reuse ui components (button, data_table, etc.) - enhance podcast and episode forms by splitting them into form sections - add hint tooltips to podcast and episode forms - transform radio inputs as buttons for better ux - replace explicit field by parental_advisory - replace author field by publisher - add podcasts_categories table to set multiple categories - use choices.js to enhance multiselect fields - update Language files - update js dependencies to latest versions closes #31, #9
44 lines
1.8 KiB
PHP
44 lines
1.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
return [
|
|
'old_podcast_section_title' => 'The podcast to import',
|
|
'old_podcast_section_subtitle' => '',
|
|
'imported_feed_url' => 'Feed URL',
|
|
'imported_feed_url_hint' =>
|
|
'The feed must be in `.xml` format. Make sure you are legally allowed to copy the podcast.',
|
|
'new_podcast_section_title' => 'The new podcast',
|
|
'new_podcast_section_subtitle' => '',
|
|
'name' => 'Name',
|
|
'name_hint' => 'Used for generating the podcast URL.',
|
|
'advanced_params_section_title' => 'Advanced parameters',
|
|
'advanced_params_section_subtitle' =>
|
|
'Keep the default values if you have no idea of what the fields are for.',
|
|
'slug_field' => [
|
|
'label' => 'Which field should be used to calculate episode slug',
|
|
'link' => '<link>',
|
|
'title' => '<title>',
|
|
],
|
|
'description_field' => [
|
|
'label' => 'Source field used for episode description / show notes',
|
|
'description' => '<description>',
|
|
'summary' => '<itunes:summary>',
|
|
'subtitle_summary' =>
|
|
'<itunes:subtitle> + <itunes:summary>',
|
|
],
|
|
'force_renumber' => 'Force episodes renumbering',
|
|
'force_renumber_hint' =>
|
|
'Use this if your podcast does not have episode numbers but wish to set them during import.',
|
|
'season_number' => 'Season number',
|
|
'season_number_hint' =>
|
|
'Use this if your podcast does not have a season number but wish to set one during import. Leave blank otherwise.',
|
|
'max_episodes' => 'Maximum number of episodes to import',
|
|
'max_episodes_hint' => 'Leave blank to import all episodes',
|
|
'submit' => 'Import podcast',
|
|
];
|