2020-08-04 11:25:22 +00:00
|
|
|
<?php
|
|
|
|
|
2020-07-16 10:08:23 +00:00
|
|
|
/**
|
|
|
|
* @copyright 2020 Podlibre
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
|
|
|
'podcast_contributors' => 'Podcast contributors',
|
2020-08-05 16:10:39 +00:00
|
|
|
'view' => '{username}\'s contribution to {podcastName}',
|
2020-07-16 10:08:23 +00:00
|
|
|
'add' => 'Add contributor',
|
|
|
|
'add_contributor' => 'Add a contributor for {0}',
|
|
|
|
'edit_role' => 'Update role for {0}',
|
|
|
|
'edit' => 'Edit',
|
|
|
|
'remove' => 'Remove',
|
2020-10-02 15:38:16 +00:00
|
|
|
'list' => [
|
|
|
|
'username' => 'Username',
|
|
|
|
'role' => 'Role',
|
|
|
|
],
|
2020-07-16 10:08:23 +00:00
|
|
|
'form' => [
|
|
|
|
'user' => 'User',
|
|
|
|
'role' => 'Role',
|
|
|
|
'submit_add' => 'Add contributor',
|
2020-08-04 11:25:22 +00:00
|
|
|
'submit_edit' => 'Update role',
|
|
|
|
],
|
2020-08-14 18:27:57 +00:00
|
|
|
'roles' => [
|
|
|
|
'podcast_admin' => 'Podcast admin',
|
|
|
|
],
|
2020-08-04 11:25:22 +00:00
|
|
|
'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!',
|
|
|
|
],
|
2020-07-16 10:08:23 +00:00
|
|
|
];
|