mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
48 lines
1.6 KiB
PHP
48 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2020 Ad Aures
|
|
* @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',
|
|
],
|
|
'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',
|
|
],
|
|
'messages' => [
|
|
'editSuccess' => 'Role successfully changed!',
|
|
'editOwnerError' => "You can't edit the podcast owner!",
|
|
'removeOwnerError' => "You can't remove the podcast owner!",
|
|
'removeSuccess' =>
|
|
'You have successfully removed {username} from {podcastTitle}',
|
|
'alreadyAddedError' =>
|
|
"The contributor you're trying to add has already been added!",
|
|
],
|
|
];
|