mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
29 lines
987 B
PHP
29 lines
987 B
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.',
|
||
|
'forcePassReset' => 'Force pass reset',
|
||
|
'ban' => 'Ban',
|
||
|
'unban' => 'Unban',
|
||
|
'delete' => 'Delete',
|
||
|
'create' => 'Create a user',
|
||
|
'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',
|
||
|
]
|
||
|
];
|