mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 00:35: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
38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
return [
|
|
'podcast_contributors' => 'Podcast contributors',
|
|
'view' => '{username}\'s contribution to {podcastName}',
|
|
'add' => 'Add contributor',
|
|
'add_contributor' => 'Add a contributor for {0}',
|
|
'edit_role' => 'Update role for {0}',
|
|
'edit' => 'Edit',
|
|
'remove' => 'Remove',
|
|
'list' => [
|
|
'username' => 'Username',
|
|
'role' => 'Role',
|
|
],
|
|
'form' => [
|
|
'user' => 'User',
|
|
'role' => 'Role',
|
|
'submit_add' => 'Add contributor',
|
|
'submit_edit' => 'Update role',
|
|
],
|
|
'roles' => [
|
|
'podcast_admin' => 'Podcast admin',
|
|
],
|
|
'messages' => [
|
|
'removeOwnerContributorError' => 'You can\'t remove the podcast owner!',
|
|
'removeContributorSuccess' =>
|
|
'You have successfully removed {username} from {podcastTitle}',
|
|
'alreadyAddedError' =>
|
|
'The contributor you\'re trying to add has already been added!',
|
|
],
|
|
];
|