castopod/modules/Auth/Language/de/Contributor.php

48 lines
1.6 KiB
PHP
Raw Normal View History

<?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 [
2022-07-04 15:27:21 +02:00
'podcast_contributors' => 'Podcast-Administratoren',
2022-09-23 17:51:26 +02:00
'view' => "{username}'s Administration von {podcastTitle}",
2022-07-04 15:27:21 +02:00
'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…',
2022-07-04 15:27:21 +02:00
'submit_add' => 'Administrator zufügen',
'submit_edit' => 'Rolle aktualisieren',
],
2022-11-04 12:03:24 +01: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',
],
'messages' => [
2022-11-04 12:03:24 +01:00
'editSuccess' => 'Role successfully changed!',
'editOwnerError' => "You can't edit the podcast owner!",
'removeOwnerError' => "Der Podcast Inhaber kann nicht entfernt werden!",
'removeSuccess' =>
'{username} wurde von {podcastTitle} entfernt',
'alreadyAddedError' =>
2022-07-04 15:27:21 +02:00
"Der Adminstrator wurde bereits zugefügt!",
],
];