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-25 17:44:19 +00:00
'title' => 'Ιδιοκτήτης Διακομιστή' ,
'description' => 'Ο ιδιοκτήτης του Castopod.' ,
2022-10-20 07:55:28 +00:00
],
'superadmin' => [
2022-11-25 17:44:19 +00:00
'title' => 'Υπερδιαχειριστής' ,
'description' => 'Έχει πλήρη έλεγχο του Castopod.' ,
2022-10-20 07:55:28 +00:00
],
'manager' => [
2022-11-25 17:44:19 +00:00
'title' => 'Διαχειριστής' ,
'description' => 'Διαχείριση περιεχομένου του Castopod.' ,
2022-10-20 07:55:28 +00:00
],
'podcaster' => [
'title' => 'Podcaster' ,
2022-11-25 17:44:19 +00:00
'description' => 'Γενικοί χρήστες του Castopod.' ,
2022-10-20 07:55:28 +00:00
],
],
'instance_permissions' => [
2022-11-25 17:44:19 +00:00
'admin.access' => 'Μπορεί ν α έχει πρόσβαση στην περιοχή διαχείρισης Castopod.' ,
'admin.settings' => 'Μπορεί ν α έχει πρόσβαση στις ρυθμίσεις Castopod.' ,
'users.manage' => 'Μπορεί ν α διαχειριστεί τους χρήστες Castopod.' ,
'persons.manage' => 'Μπορεί ν α διαχειριστεί τα άτομα.' ,
'pages.manage' => 'Μπορεί ν α διαχειριστεί τις σελίδες.' ,
'podcasts.view' => 'Μπορεί ν α δει όλα τα podcasts.' ,
'podcasts.create' => 'Μπορεί ν α δημιουργήσει νέα podcasts.' ,
'podcasts.import' => 'Μπορεί ν α εισάγει podcasts.' ,
'fediverse.manage-blocks' => 'Μπορεί ν α εμποδίσει τους ψευτογενείς ηθοποιούς/τομείς ν α αλληλεπιδρούν με το Castopod.' ,
2022-10-20 07:55:28 +00:00
],
'podcast_groups' => [
'owner' => [
2022-11-25 17:44:19 +00:00
'title' => 'Ιδιοκτήτης Podcast' ,
'description' => 'Ο ιδιοκτήτης του podcast.' ,
2022-10-20 07:55:28 +00:00
],
'admin' => [
2022-11-25 17:44:19 +00:00
'title' => 'Διαχειριστής' ,
'description' => 'Έχει πλήρη έλεγχο του podcast #{id}.' ,
2022-10-20 07:55:28 +00:00
],
'editor' => [
2022-11-25 17:44:19 +00:00
'title' => 'Εκδότης' ,
'description' => 'Διαχειρίζεται περιεχόμενο και δημοσιεύσεις του podcast #{id}.' ,
2022-10-20 07:55:28 +00:00
],
'author' => [
2022-11-25 17:44:19 +00:00
'title' => 'Συντάκτης' ,
2022-10-20 07:55:28 +00:00
'description' => 'Manages content of podcast #{id} but cannot publish them.' ,
],
'guest' => [
2022-11-25 17:44:19 +00:00
'title' => 'Επισκέπτης' ,
'description' => 'Γενικός συντελεστής του podcast #{id}.' ,
2022-10-20 07:55:28 +00:00
],
],
'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}.' ,
'manage-publications' => 'Can publish podcast #{id}.' ,
2022-11-04 11:03:24 +00:00
'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.' ,
2024-05-21 16:07:56 +00:00
'episodes' => [
'view' => 'Can view dashboards and analytics of podcast #{id}\'s episodes.' ,
'create' => 'Can create episodes for podcast #{id}.' ,
'edit' => 'Can edit episodes of podcast #{id}.' ,
'delete' => 'Can delete episodes of podcast #{id}.' ,
'manage-persons' => 'Can manage episode persons of podcast #{id}.' ,
'manage-clips' => 'Can manage video clips or soundbites of podcast #{id}.' ,
'manage-publications' => 'Can publish/unpublish episodes and posts of podcast #{id}.' ,
'manage-comments' => 'Can create/remove episode comments of podcast #{id}.' ,
],
2022-10-20 07:55:28 +00:00
],
// missing keys
'code' => 'Your 6-digit code' ,
'set_password' => 'Set your password' ,
// Welcome email
'welcomeSubject' => 'You\'ve been invited to {siteName}' ,
'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.' ,
];