2022-03-29 15:33:32 +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 [
|
|
|
|
'messages' => [
|
2022-04-05 15:45:54 +00:00
|
|
|
'actorNotFound' => 'Das Konto konnte nicht gefunden werden!',
|
|
|
|
'blockActorSuccess' => '{actor} wurde blockiert!',
|
2023-03-16 16:45:41 +00:00
|
|
|
'unblockActorSuccess' => 'Benutzer wurde entsperrt!',
|
2022-04-05 15:45:54 +00:00
|
|
|
'blockDomainSuccess' => '{domain} wurde blockiert!',
|
|
|
|
'unblockDomainSuccess' => '{domain} wurde freigegeben!',
|
2022-03-29 15:33:32 +00:00
|
|
|
],
|
2022-04-05 15:45:54 +00:00
|
|
|
'blocked_actors' => 'Blockierte Konten',
|
|
|
|
'blocked_domains' => 'Blockierte Domains',
|
2022-03-29 15:33:32 +00:00
|
|
|
'block_lists_form' => [
|
2022-04-05 15:45:54 +00:00
|
|
|
'handle' => 'Account-Identifikation',
|
|
|
|
'handle_hint' => '@username@domain Konto eingeben.',
|
|
|
|
'domain' => 'Domain',
|
|
|
|
'submit' => 'Blockieren!',
|
2022-03-29 15:33:32 +00:00
|
|
|
],
|
|
|
|
'list' => [
|
2022-04-05 15:45:54 +00:00
|
|
|
'actor' => 'Konto',
|
|
|
|
'domain' => 'Domain',
|
|
|
|
'unblock' => 'Freigeben',
|
2022-03-29 15:33:32 +00:00
|
|
|
],
|
|
|
|
];
|