mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-15 02:35:46 +00:00

- add AuthSeeder to bootstrap authorization data and remove UserSeeder - create a superadmin group having all authorizations - refactor routes and controller methods to separate get and post requests - refactor admin views with a title section in layout - add contributors section to podcasts to manage contributions (add, edit roles and remove) closes #3, #18
22 lines
543 B
PHP
22 lines
543 B
PHP
<?
|
|
/**
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
return [
|
|
'podcast_contributors' => 'Podcast contributors',
|
|
'add' => 'Add contributor',
|
|
'add_contributor' => 'Add a contributor for {0}',
|
|
'edit_role' => 'Update role for {0}',
|
|
'edit' => 'Edit',
|
|
'remove' => 'Remove',
|
|
'form' => [
|
|
'user' => 'User',
|
|
'role' => 'Role',
|
|
'submit_add' => 'Add contributor',
|
|
'submit_edit' => 'Update role'
|
|
]
|
|
];
|