2022-07-04 13:27:21 +00:00
|
|
|
<?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-08-22 15:56:51 +00:00
|
|
|
'podcast_contributors' => 'Prispievatelia podcastu',
|
|
|
|
'view' => "Príspevky používateľa {username} do podcastu {podcastTitle}",
|
2022-07-04 13:27:21 +00:00
|
|
|
'add' => 'Pridať prispievateľa',
|
|
|
|
'add_contributor' => 'Pridať prispievateľa pre {0}',
|
|
|
|
'edit_role' => 'Upraviť rolu pre {0}',
|
|
|
|
'edit' => 'Upraviť',
|
|
|
|
'remove' => 'Odstrániť',
|
|
|
|
'list' => [
|
2022-08-22 15:56:51 +00:00
|
|
|
'username' => 'Meno používateľa',
|
2022-07-04 13:27:21 +00:00
|
|
|
'role' => 'Rola',
|
|
|
|
],
|
|
|
|
'form' => [
|
2022-08-22 15:56:51 +00:00
|
|
|
'user' => 'Používateľ',
|
|
|
|
'user_placeholder' => 'Vybrať používateľa…',
|
2022-07-04 13:27:21 +00:00
|
|
|
'role' => 'Rola',
|
|
|
|
'role_placeholder' => 'Vybrať jeho úlohu…',
|
|
|
|
'submit_add' => 'Pridať prispievateľa',
|
2022-08-22 15:56:51 +00:00
|
|
|
'submit_edit' => 'Aktualizovať rolu',
|
2022-07-04 13:27:21 +00:00
|
|
|
],
|
2022-11-04 11:03:24 +00: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',
|
2022-07-04 13:27:21 +00:00
|
|
|
],
|
|
|
|
'messages' => [
|
2022-11-04 11:03:24 +00:00
|
|
|
'editSuccess' => 'Role successfully changed!',
|
|
|
|
'editOwnerError' => "You can't edit the podcast owner!",
|
2022-08-22 15:56:51 +00:00
|
|
|
'removeOwnerError' => "Nemôžete odstrániť vlastníka podcastu!",
|
2022-07-04 13:27:21 +00:00
|
|
|
'removeSuccess' =>
|
2022-08-22 15:56:51 +00:00
|
|
|
'Úspešne ste odstránili používateľa {username} z podcastu {podcastTitle}',
|
2022-07-04 13:27:21 +00:00
|
|
|
'alreadyAddedError' =>
|
2022-08-22 15:56:51 +00:00
|
|
|
"Prispievateľa, ktorého sa usiľujete pridať je už pridaný!",
|
2022-07-04 13:27:21 +00:00
|
|
|
],
|
|
|
|
];
|