mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 00:35:47 +00:00
60 lines
1.7 KiB
PHP
60 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Modules\Admin\Config\Admin;
|
|
|
|
/**
|
|
* @copyright 2020 Ad Aures
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
return [
|
|
'label' => 'breadcrumb',
|
|
config(Admin::class)
|
|
->gateway => 'Hem',
|
|
'podcasts' => 'podcasts',
|
|
'episodes' => 'avsnitt',
|
|
'subscriptions' => 'prenumerationer',
|
|
'contributors' => 'bidragsgivare',
|
|
'pages' => 'sidor',
|
|
'settings' => 'inställningar',
|
|
'theme' => 'tema',
|
|
'about' => 'om',
|
|
'add' => 'lägg till',
|
|
'new' => 'ny',
|
|
'edit' => 'redigera',
|
|
'persons' => 'personer',
|
|
'publish' => 'publicera',
|
|
'publish-edit' => 'redigera publikation',
|
|
'publish-date-edit' => 'redigera publiceringsdatum',
|
|
'unpublish' => 'avpublicera',
|
|
'delete' => 'radera',
|
|
'remove' => 'ta bort',
|
|
'fediverse' => 'fediverse',
|
|
'blocked-actors' => 'blocked actors',
|
|
'blocked-domains' => 'blocked domains',
|
|
'users' => 'användare',
|
|
'my-account' => 'mitt konto',
|
|
'change-password' => 'ändra lösenord',
|
|
'imports' => 'imports',
|
|
'sync-feeds' => 'synchronize feeds',
|
|
'platforms' => 'plattformar',
|
|
'social' => 'sociala nätverk',
|
|
'funding' => 'finansiering',
|
|
'monetization-other' => 'other monetization',
|
|
'analytics' => 'analys',
|
|
'locations' => 'platser',
|
|
'webpages' => 'webbplatser',
|
|
'unique-listeners' => 'unika lyssnare',
|
|
'players' => 'spelare',
|
|
'listening-time' => 'lyssningstid',
|
|
'time-periods' => 'tidsperiod',
|
|
'soundbites' => 'ljudklipp',
|
|
'video-clips' => 'videoklipp',
|
|
'embed' => 'inbäddad spelare',
|
|
'notifications' => 'aviseringar',
|
|
'suspend' => 'suspendera',
|
|
];
|