2020-08-05 16:10:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @copyright 2020 Podlibre
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
|
|
|
'label' => 'breadcrumb',
|
|
|
|
config('App')->adminGateway => 'Home',
|
|
|
|
'podcasts' => 'podcasts',
|
|
|
|
'episodes' => 'episodes',
|
|
|
|
'contributors' => 'contributors',
|
2020-08-18 16:31:28 +00:00
|
|
|
'pages' => 'pages',
|
2020-08-05 16:10:39 +00:00
|
|
|
'add' => 'add',
|
|
|
|
'new' => 'new',
|
|
|
|
'edit' => 'edit',
|
|
|
|
'users' => 'users',
|
|
|
|
'my-account' => 'my account',
|
|
|
|
'change-password' => 'change password',
|
2020-08-21 08:41:09 +00:00
|
|
|
'import' => 'feed import',
|
2020-08-05 16:10:39 +00:00
|
|
|
];
|