mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +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
31 lines
1.0 KiB
PHP
31 lines
1.0 KiB
PHP
<?
|
|
/**
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
return [
|
|
'createSuccess' => 'User created successfully! The new user will be prompted with a password reset during his first login attempt.',
|
|
'forcePassResetSuccess' => 'The user will be prompted with a password reset during his next login attempt.',
|
|
'banSuccess' => 'User has been banned.',
|
|
'unbanSuccess' => 'User has been unbanned.',
|
|
'deleteSuccess' => 'User has been deleted.',
|
|
'forcePassReset' => 'Force pass reset',
|
|
'ban' => 'Ban',
|
|
'unban' => 'Unban',
|
|
'delete' => 'Delete',
|
|
'create' => 'Create a user',
|
|
'all_users' => 'All users',
|
|
'form' => [
|
|
'email' => 'Email',
|
|
'username' => 'Username',
|
|
'password' => 'Password',
|
|
'new_password' => 'New Password',
|
|
'repeat_password' => 'Repeat password',
|
|
'repeat_new_password' => 'Repeat new password',
|
|
'submit_create' => 'Create user',
|
|
'submit_edit' => 'Save',
|
|
]
|
|
];
|