53 lines
2.1 KiB
PHP
53 lines
2.1 KiB
PHP
<?php
|
|
|
|
// Multi-user account management (Settings → Users). All accounts are equal admins
|
|
// (no roles). One group per feature (R16); shared buttons live in common.php.
|
|
return [
|
|
// Panel header
|
|
'title' => 'Accounts',
|
|
'subtitle' => 'Every account is a full administrator',
|
|
'create' => 'Add account',
|
|
|
|
// List
|
|
'you' => 'you',
|
|
'twofa_on' => '2FA on',
|
|
'twofa_off' => '2FA off',
|
|
'none' => 'No accounts',
|
|
|
|
// Create modal
|
|
'create_title' => 'Add account',
|
|
'create_subtitle' => 'Full administrator. Set a password — or leave it blank to generate a one-time password shown once.',
|
|
'name_label' => 'Name',
|
|
'name_placeholder' => 'Jane Doe',
|
|
'email_label' => 'Email',
|
|
'email_placeholder' => 'jane@example.com',
|
|
'password_label' => 'Password',
|
|
'password_placeholder' => 'Blank = generate a one-time password',
|
|
'password_hint' => 'Optional. Min. 6 characters. Leave blank to generate a secure one-time password.',
|
|
'created_notify' => 'Account :name created.',
|
|
'create_submit' => 'Create account',
|
|
|
|
// Temp-password reveal (shown once)
|
|
'temp_heading' => 'Account created',
|
|
'temp_intro' => 'Share this one-time password with :name. They must change it on first sign-in.',
|
|
'temp_label' => 'Temporary password',
|
|
'temp_warning' => 'Copy this password now — it is shown only once and cannot be retrieved later.',
|
|
'temp_copy' => 'Copy',
|
|
'temp_copied' => 'Copied',
|
|
'done' => 'Done',
|
|
|
|
// Remove (R5 confirm)
|
|
'remove' => 'Remove',
|
|
'remove_heading' => 'Remove account',
|
|
'remove_body' => 'This permanently deletes the account and ends all of its sessions. This cannot be undone.',
|
|
'remove_notify' => 'Account removed.',
|
|
'cannot_remove_self' => 'You cannot remove your own account.',
|
|
'cannot_remove_last' => 'You cannot remove the last remaining account.',
|
|
|
|
// Force logout (R5 confirm)
|
|
'logout' => 'Sign out everywhere',
|
|
'logout_heading' => 'Sign out everywhere',
|
|
'logout_body' => 'This ends every active session for this account and rotates its remember-me token.',
|
|
'logout_notify' => 'Account signed out of all devices.',
|
|
];
|