2020-08-04 11:25:22 +00:00
|
|
|
<?php
|
|
|
|
|
2020-07-10 12:20:25 +00:00
|
|
|
/**
|
|
|
|
* @copyright 2020 Podlibre
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
2020-07-31 16:05:10 +00:00
|
|
|
'edit_roles' => 'Edit {username}\'s roles',
|
2020-07-10 12:20:25 +00:00
|
|
|
'forcePassReset' => 'Force pass reset',
|
|
|
|
'ban' => 'Ban',
|
|
|
|
'unban' => 'Unban',
|
|
|
|
'delete' => 'Delete',
|
|
|
|
'create' => 'Create a user',
|
2020-08-05 16:10:39 +00:00
|
|
|
'view' => '{username}\'s info',
|
2020-07-16 10:08:23 +00:00
|
|
|
'all_users' => 'All users',
|
2020-07-10 12:20:25 +00:00
|
|
|
'form' => [
|
|
|
|
'email' => 'Email',
|
|
|
|
'username' => 'Username',
|
|
|
|
'password' => 'Password',
|
|
|
|
'new_password' => 'New Password',
|
2020-07-31 16:05:10 +00:00
|
|
|
'roles' => 'Roles',
|
2020-07-10 12:20:25 +00:00
|
|
|
'submit_create' => 'Create user',
|
|
|
|
'submit_edit' => 'Save',
|
2020-08-14 18:27:57 +00:00
|
|
|
'submit_password_change' => 'Change!',
|
|
|
|
],
|
|
|
|
'roles' => [
|
|
|
|
'superadmin' => 'Super admin',
|
2020-08-04 11:25:22 +00:00
|
|
|
],
|
|
|
|
'messages' => [
|
|
|
|
'createSuccess' =>
|
|
|
|
'User created successfully! {username} will be prompted with a password reset upon first authentication.',
|
|
|
|
'rolesEditSuccess' =>
|
|
|
|
'{username}\'s roles have been successfully updated.',
|
|
|
|
'forcePassResetSuccess' =>
|
|
|
|
'{username} will be prompted with a password reset upon next visit.',
|
|
|
|
'banSuccess' => '{username} has been banned.',
|
|
|
|
'unbanSuccess' => '{username} has been unbanned.',
|
|
|
|
'banSuperAdminError' =>
|
|
|
|
'{username} is a superadmin, one does not simply ban a superadmin…',
|
|
|
|
'deleteSuperAdminError' =>
|
|
|
|
'{username} is a superadmin, one does not simply delete a superadmin…',
|
|
|
|
'deleteSuccess' => '{username} has been deleted.',
|
|
|
|
],
|
2020-07-10 12:20:25 +00:00
|
|
|
];
|