mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 00:35:47 +00:00
42 lines
1.2 KiB
PHP
42 lines
1.2 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-Administratoren',
|
|
'view' => "{username}'s Mitwirkung an {podcastTitle}",
|
|
'add' => 'Adminstrator zufügen',
|
|
'add_contributor' => 'Administrator zufügen für {0}',
|
|
'edit_role' => 'Rolle aktualisieren für {0}',
|
|
'edit' => 'Bearbeiten',
|
|
'remove' => 'Entfernen',
|
|
'list' => [
|
|
'username' => 'Benutzername',
|
|
'role' => 'Rolle',
|
|
],
|
|
'form' => [
|
|
'user' => 'Benutzer',
|
|
'user_placeholder' => 'Benutzer auswählen…',
|
|
'role' => 'Rolle',
|
|
'role_placeholder' => 'Rolle auswählen…',
|
|
'submit_add' => 'Administrator zufügen',
|
|
'submit_edit' => 'Rolle aktualisieren',
|
|
],
|
|
'roles' => [
|
|
'podcast_admin' => 'Podcast Administrator',
|
|
],
|
|
'messages' => [
|
|
'removeOwnerError' => "Der Podcast Inhaber kann nicht entfernt werden!",
|
|
'removeSuccess' =>
|
|
'{username} wurde von {podcastTitle} entfernt',
|
|
'alreadyAddedError' =>
|
|
"Der Adminstrator wurde bereits zugefügt!",
|
|
],
|
|
];
|