2022-04-14 13:11:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2023-08-27 13:26:06 +00:00
|
|
|
use Modules\Admin\Config\Admin;
|
|
|
|
|
2022-04-14 13:11:07 +00:00
|
|
|
/**
|
|
|
|
* @copyright 2020 Ad Aures
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
|
|
|
'label' => 'navigeringslenke',
|
2023-08-27 13:26:06 +00:00
|
|
|
config(Admin::class)
|
2022-04-14 13:11:07 +00:00
|
|
|
->gateway => 'Heim',
|
|
|
|
'podcasts' => 'podkastar',
|
|
|
|
'episodes' => 'episodar',
|
2023-03-16 16:45:41 +00:00
|
|
|
'subscriptions' => 'tingingar',
|
2022-04-14 13:11:07 +00:00
|
|
|
'contributors' => 'bidragsytarar',
|
|
|
|
'pages' => 'sider',
|
|
|
|
'settings' => 'innstillingar',
|
|
|
|
'theme' => 'bunad',
|
2023-03-16 16:45:41 +00:00
|
|
|
'about' => 'om',
|
2022-04-14 13:11:07 +00:00
|
|
|
'add' => 'legg til',
|
|
|
|
'new' => 'ny',
|
|
|
|
'edit' => 'rediger',
|
|
|
|
'persons' => 'personar',
|
|
|
|
'publish' => 'legg ut',
|
|
|
|
'publish-edit' => 'rediger publiseringa',
|
2023-03-16 16:45:41 +00:00
|
|
|
'publish-date-edit' => 'rediger publiseringsdato',
|
2022-04-14 13:11:07 +00:00
|
|
|
'unpublish' => 'avpubliser',
|
|
|
|
'delete' => 'slett',
|
2023-05-09 14:30:05 +00:00
|
|
|
'remove' => 'fjern',
|
2022-04-14 13:11:07 +00:00
|
|
|
'fediverse' => 'fødiverset',
|
2023-05-09 14:30:05 +00:00
|
|
|
'blocked-actors' => 'blokkerte aktørar',
|
|
|
|
'blocked-domains' => 'blokkerte domene',
|
2022-04-14 13:11:07 +00:00
|
|
|
'users' => 'brukarar',
|
|
|
|
'my-account' => 'kontoen min',
|
|
|
|
'change-password' => 'endre passord',
|
2023-09-09 11:48:16 +00:00
|
|
|
'imports' => 'importar',
|
2023-11-29 17:27:10 +00:00
|
|
|
'sync-feeds' => 'synchronize feeds',
|
2022-04-14 13:11:07 +00:00
|
|
|
'platforms' => 'plattformer',
|
|
|
|
'social' => 'sosiale nettverk',
|
|
|
|
'funding' => 'finansiering',
|
2023-11-29 17:27:10 +00:00
|
|
|
'monetization-other' => 'other monetization',
|
2022-04-14 13:11:07 +00:00
|
|
|
'analytics' => 'analysar',
|
|
|
|
'locations' => 'stader',
|
|
|
|
'webpages' => 'nettsider',
|
|
|
|
'unique-listeners' => 'unike lyttarar',
|
|
|
|
'players' => 'spelarar',
|
|
|
|
'listening-time' => 'lyttetid',
|
|
|
|
'time-periods' => 'tidsperiodar',
|
|
|
|
'soundbites' => 'lydbetar',
|
|
|
|
'video-clips' => 'videoklypp',
|
|
|
|
'embed' => 'innbyggbar spelar',
|
2023-05-09 14:30:05 +00:00
|
|
|
'notifications' => 'varslingar',
|
|
|
|
'suspend' => 'utvis',
|
2022-04-14 13:11:07 +00:00
|
|
|
];
|