2022-03-30 15:09:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2023-08-27 13:26:06 +00:00
|
|
|
use Modules\Admin\Config\Admin;
|
|
|
|
|
2022-03-30 15:09:35 +00:00
|
|
|
/**
|
|
|
|
* @copyright 2020 Ad Aures
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
2022-04-05 15:45:54 +00:00
|
|
|
'label' => 'kruimelpad',
|
2023-08-27 13:26:06 +00:00
|
|
|
config(Admin::class)
|
2022-04-05 15:45:54 +00:00
|
|
|
->gateway => 'Hoofdpagina',
|
2022-03-30 15:09:35 +00:00
|
|
|
'podcasts' => 'podcasts',
|
2022-04-05 15:45:54 +00:00
|
|
|
'episodes' => 'afleveringen',
|
2022-11-25 17:44:19 +00:00
|
|
|
'subscriptions' => 'abonnementen',
|
2022-04-05 15:45:54 +00:00
|
|
|
'contributors' => 'bijdragers',
|
|
|
|
'pages' => 'paginas',
|
|
|
|
'settings' => 'instellingen',
|
|
|
|
'theme' => 'thema',
|
2023-05-05 14:28:51 +00:00
|
|
|
'about' => 'over',
|
2022-04-05 15:45:54 +00:00
|
|
|
'add' => 'toevoegen',
|
|
|
|
'new' => 'nieuw',
|
|
|
|
'edit' => 'bewerken',
|
|
|
|
'persons' => 'personen',
|
|
|
|
'publish' => 'publiceren',
|
|
|
|
'publish-edit' => 'publicatie aanpassen',
|
2023-05-05 14:28:51 +00:00
|
|
|
'publish-date-edit' => 'publicatiedatum bewerken',
|
2022-04-05 15:45:54 +00:00
|
|
|
'unpublish' => 'publicatie ongedaan maken',
|
|
|
|
'delete' => 'verwijder',
|
2022-11-25 17:44:19 +00:00
|
|
|
'remove' => 'verwijder',
|
2022-03-30 15:09:35 +00:00
|
|
|
'fediverse' => 'fediverse',
|
2023-05-05 14:28:51 +00:00
|
|
|
'blocked-actors' => 'geblokkeerde actoren',
|
|
|
|
'blocked-domains' => 'geblokkeerde domeinen',
|
2022-04-05 15:45:54 +00:00
|
|
|
'users' => 'gebruikers',
|
|
|
|
'my-account' => 'mijn account',
|
|
|
|
'change-password' => 'wachtwoord wijzigen',
|
2023-06-21 17:17:32 +00:00
|
|
|
'imports' => 'imports',
|
2023-11-29 17:27:10 +00:00
|
|
|
'sync-feeds' => 'synchronize feeds',
|
2023-05-05 14:28:51 +00:00
|
|
|
'platforms' => 'platformen',
|
2022-04-05 15:45:54 +00:00
|
|
|
'social' => 'sociale netwerken',
|
|
|
|
'funding' => 'financiering',
|
2023-11-29 17:27:10 +00:00
|
|
|
'monetization-other' => 'other monetization',
|
2022-04-05 15:45:54 +00:00
|
|
|
'analytics' => 'statistieken',
|
|
|
|
'locations' => 'locaties',
|
2023-05-05 14:28:51 +00:00
|
|
|
'webpages' => 'webpagina\'s',
|
2022-04-05 15:45:54 +00:00
|
|
|
'unique-listeners' => 'unieke luisteraars',
|
|
|
|
'players' => 'spelers',
|
|
|
|
'listening-time' => 'afspeeltijd',
|
2023-05-05 14:28:51 +00:00
|
|
|
'time-periods' => 'tijdspanne',
|
|
|
|
'soundbites' => 'geluidsfragment',
|
|
|
|
'video-clips' => 'videoclips',
|
|
|
|
'embed' => 'embedbare speler',
|
2022-09-23 15:51:26 +00:00
|
|
|
'notifications' => 'meldingen',
|
2023-05-05 14:28:51 +00:00
|
|
|
'suspend' => 'opschorten',
|
2022-03-30 15:09:35 +00:00
|
|
|
];
|