2022-10-20 07:55:28 +00:00
< ? php
declare ( strict_types = 1 );
/**
* @ copyright 2022 Ad Aures
* @ license https :// www . gnu . org / licenses / agpl - 3.0 . en . html AGPL3
* @ link https :// castopod . org /
*/
return [
'instance_groups' => [
'owner' => [
2022-11-04 11:03:24 +00:00
'title' => 'Instanzbesitzer' ,
'description' => 'Der Castopod-Besitzer.' ,
2022-10-20 07:55:28 +00:00
],
'superadmin' => [
2022-11-04 11:03:24 +00:00
'title' => 'Super-Administrator' ,
'description' => 'Hat die vollständige Kontrolle über Castopod.' ,
2022-10-20 07:55:28 +00:00
],
'manager' => [
'title' => 'Manager' ,
2022-11-04 11:03:24 +00:00
'description' => 'Verwaltet Castopods Inhalte.' ,
2022-10-20 07:55:28 +00:00
],
'podcaster' => [
'title' => 'Podcaster' ,
'description' => 'General users of Castopod.' ,
],
],
'instance_permissions' => [
2022-11-04 11:03:24 +00:00
'admin.access' => 'Kann auf den Admin-Bereich von Castopod zugreifen.' ,
'admin.settings' => 'Kann auf die Einstellungen von Castopod zugreifen.' ,
'users.manage' => 'Kann Castopod-Benutzer verwalten.' ,
'persons.manage' => 'Kann Mitwirkende verwalten.' ,
'pages.manage' => 'Kann Seiten verwalten.' ,
'podcasts.view' => 'Kann alle Podcasts einsehen.' ,
'podcasts.create' => 'Kann neue Podcasts erstellen.' ,
'podcasts.import' => 'Kann Podcasts importieren.' ,
2022-10-20 07:55:28 +00:00
'fediverse.manage-blocks' => 'Can block fediverse actors/domains from interacting with Castopod.' ,
],
'podcast_groups' => [
'owner' => [
2022-11-04 11:03:24 +00:00
'title' => 'Podcast-Besitzer' ,
'description' => 'Der Podcast-Besitzer.' ,
2022-10-20 07:55:28 +00:00
],
'admin' => [
2022-11-04 11:03:24 +00:00
'title' => 'Administrator' ,
'description' => 'Hat die vollständige Kontrolle über Podcast #{id}.' ,
2022-10-20 07:55:28 +00:00
],
'editor' => [
'title' => 'Editor' ,
2022-11-04 11:03:24 +00:00
'description' => 'Verwaltet Inhalte und Veröffentlichungen von Podcast #{id}.' ,
2022-10-20 07:55:28 +00:00
],
'author' => [
2022-11-04 11:03:24 +00:00
'title' => 'Autor' ,
'description' => 'Verwaltet Inhalte von Podcast #{id}, kann diese aber nicht veröffentlichen.' ,
2022-10-20 07:55:28 +00:00
],
'guest' => [
2022-11-04 11:03:24 +00:00
'title' => 'Gast' ,
2022-10-20 07:55:28 +00:00
'description' => 'General contributor of the podcast #{id}.' ,
],
],
'podcast_permissions' => [
'view' => 'Can view dashboard and analytics of podcast #{id}.' ,
'edit' => 'Can edit podcast #{id}.' ,
'delete' => 'Can delete podcast #{id}.' ,
'manage-import' => 'Can synchronize imported podcast #{id}.' ,
'manage-persons' => 'Can manage subscriptions of podcast #{id}.' ,
'manage-subscriptions' => 'Can manage subscriptions of podcast #{id}.' ,
'manage-contributors' => 'Can manage contributors of podcast #{id}.' ,
'manage-platforms' => 'Can set/remove platform links of podcast #{id}.' ,
2022-11-04 11:03:24 +00:00
'manage-publications' => 'Kann Podcast #{id} veröffentlichen.' ,
'manage-notifications' => 'Can view and mark notifications as read for podcast #{id}.' ,
2022-10-20 07:55:28 +00:00
'interact-as' => 'Can interact as the podcast #{id} to favourite, share or reply to posts.' ,
'episodes.view' => 'Can view dashboards and analytics of podcast #{id}\'s episodes.' ,
2022-11-04 11:03:24 +00:00
'episodes.create' => 'Kann Folgen für Podcast #{id} erstellen.' ,
'episodes.edit' => 'Kann Folgen von Podcast #{id} bearbeiten.' ,
'episodes.delete' => 'Kann Folgen von Podcast #{id} löschen.' ,
2022-10-20 07:55:28 +00:00
'episodes.manage-persons' => 'Can manage episode persons of podcast #{id}.' ,
'episodes.manage-clips' => 'Can manage video clips or soundbites of podcast #{id}.' ,
'episodes.manage-publications' => 'Can publish/unpublish episodes and posts of podcast #{id}.' ,
'episodes.manage-comments' => 'Can create/remove episode comments of podcast #{id}.' ,
],
// missing keys
2022-11-04 11:03:24 +00:00
'code' => 'Ihr 6-stelliger Code' ,
2022-10-20 07:55:28 +00:00
2022-11-04 11:03:24 +00:00
'notEnoughPrivilege' => 'Sie haben keine ausreichenden Berechtigungen, um auf diese Seite zuzugreifen.' ,
'set_password' => 'Legen Sie Ihr Passwort fest' ,
2022-10-20 07:55:28 +00:00
// Welcome email
2022-11-04 11:03:24 +00:00
'welcomeSubject' => 'Sie wurden zu {siteName} eingeladen' ,
2022-10-20 07:55:28 +00:00
'emailWelcomeMailBody' => 'An account was created for you on {domain}, click on the login link below to set your password. The link is valid for {numberOfHours} hours after this email was sent.' ,
];