2022-03-30 15:09:35 +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' => [
|
2024-02-05 17:03:36 +00:00
|
|
|
'actorNotFound' => 'Het account werd niet gevonden!',
|
|
|
|
'blockActorSuccess' => '{actor} is geblokkeerd!',
|
2024-03-08 13:05:48 +00:00
|
|
|
'unblockActorSuccess' => 'Acteur is gedeblokkeerd!',
|
2024-02-05 17:03:36 +00:00
|
|
|
'blockDomainSuccess' => '{domain} is geblokkeerd!',
|
|
|
|
'unblockDomainSuccess' => '{domain} is gedeblokkeerd!',
|
2022-03-30 15:09:35 +00:00
|
|
|
],
|
2024-02-05 17:03:36 +00:00
|
|
|
'blocked_actors' => 'Geblokkeerde accounts',
|
|
|
|
'blocked_domains' => 'Geblokkeerde domeinen',
|
2022-03-30 15:09:35 +00:00
|
|
|
'block_lists_form' => [
|
|
|
|
'handle' => 'Account handle',
|
|
|
|
'handle_hint' => 'Input @username@domain account.',
|
2024-02-05 17:03:36 +00:00
|
|
|
'domain' => 'Domeinnaam',
|
2022-03-30 15:09:35 +00:00
|
|
|
'submit' => 'Block!',
|
|
|
|
],
|
|
|
|
'list' => [
|
|
|
|
'actor' => 'Account',
|
2024-02-05 17:03:36 +00:00
|
|
|
'domain' => 'Domeinnaam',
|
|
|
|
'unblock' => 'Deblokkeren',
|
2022-03-30 15:09:35 +00:00
|
|
|
],
|
|
|
|
];
|