mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- add About podcast page - use different layout for episode pages - improve on user feedback with design - restructure app theme folders - update js packages to latest versions
38 lines
1.0 KiB
PHP
38 lines
1.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
return [
|
|
'go_to_website' => 'View site',
|
|
'go_to_admin' => 'Go to admin',
|
|
'dashboard' => 'Dashboard',
|
|
'admin' => 'Home',
|
|
'podcasts' => 'Podcasts',
|
|
'podcast-list' => 'All podcasts',
|
|
'podcast-create' => 'New podcast',
|
|
'podcast-import' => 'Import a podcast',
|
|
'persons' => 'Persons',
|
|
'person-list' => 'All persons',
|
|
'person-create' => 'New person',
|
|
'fediverse' => 'Fediverse',
|
|
'fediverse-blocked-actors' => 'Blocked accounts',
|
|
'fediverse-blocked-domains' => 'Blocked domains',
|
|
'users' => 'Users',
|
|
'user-list' => 'All users',
|
|
'user-create' => 'New user',
|
|
'pages' => 'Pages',
|
|
'page-list' => 'All pages',
|
|
'page-create' => 'New Page',
|
|
'account' => [
|
|
'my-account' => 'My account',
|
|
'change-password' => 'Change password',
|
|
'logout' => 'Logout',
|
|
],
|
|
];
|