2021-08-23 11:05:16 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
2022-02-19 16:06:11 +00:00
|
|
|
* @copyright 2020 Ad Aures
|
2021-08-23 11:05:16 +00:00
|
|
|
* @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 {podcastTitle}",
|
|
|
|
'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',
|
|
|
|
'user_placeholder' => 'Select a user…',
|
|
|
|
'role' => 'Role',
|
|
|
|
'role_placeholder' => 'Select its role…',
|
|
|
|
'submit_add' => 'Add contributor',
|
|
|
|
'submit_edit' => 'Update role',
|
|
|
|
],
|
2022-11-04 11:03:24 +00:00
|
|
|
'delete_form' => [
|
|
|
|
'title' => 'Remove {contributor}',
|
|
|
|
'disclaimer' =>
|
|
|
|
'You are about to remove {contributor} from contributors. They will not be able to access "{podcastTitle}" anymore.',
|
|
|
|
'understand' => 'I understand, I want to remove {contributor} from "{podcastTitle}"',
|
|
|
|
'submit' => 'Remove',
|
2021-08-23 11:05:16 +00:00
|
|
|
],
|
|
|
|
'messages' => [
|
2022-11-04 11:03:24 +00:00
|
|
|
'editSuccess' => 'Role successfully changed!',
|
|
|
|
'editOwnerError' => "You can't edit the podcast owner!",
|
2022-01-05 14:58:53 +00:00
|
|
|
'removeOwnerError' => "You can't remove the podcast owner!",
|
|
|
|
'removeSuccess' =>
|
2021-08-23 11:05:16 +00:00
|
|
|
'You have successfully removed {username} from {podcastTitle}',
|
|
|
|
'alreadyAddedError' =>
|
|
|
|
"The contributor you're trying to add has already been added!",
|
|
|
|
],
|
|
|
|
];
|