50 lines
1.5 KiB
PHP
50 lines
1.5 KiB
PHP
<?php
|
|
|
|
// Settings (profile + security) page strings (R16). Shared buttons live in common.php.
|
|
return [
|
|
// Identity header
|
|
'account' => 'Account',
|
|
'role_admin' => 'Administrator',
|
|
'two_factor_on' => '2FA on',
|
|
'two_factor_off' => '2FA off',
|
|
|
|
// Section nav tabs
|
|
'tab_profile' => 'Profile',
|
|
'tab_security' => 'Security',
|
|
|
|
// Profile panel
|
|
'profile_title' => 'Profile',
|
|
'profile_subtitle' => 'Name and email',
|
|
'name' => 'Name',
|
|
'email' => 'Email',
|
|
|
|
// Password panel
|
|
'password_title' => 'Password',
|
|
'password_subtitle' => 'At least 10 characters',
|
|
'current_password' => 'Current password',
|
|
'new_password' => 'New password',
|
|
'repeat_password' => 'Repeat',
|
|
'change_password' => 'Change password',
|
|
|
|
// Two-factor panel
|
|
'twofa_title' => 'Two-factor authentication',
|
|
'twofa_subtitle' => 'TOTP (authenticator app)',
|
|
'twofa_status_on' => '2FA is active',
|
|
'twofa_status_off' => '2FA is not set up',
|
|
'twofa_hint_on' => 'Login requires a TOTP code.',
|
|
'twofa_hint_off' => 'Recommended — protects login with a second factor.',
|
|
'twofa_setup' => 'Set up',
|
|
|
|
// Notifications
|
|
'profile_saved' => 'Profile saved.',
|
|
'password_changed' => 'Password changed.',
|
|
|
|
// Disable-2FA confirmation modal
|
|
'disable_2fa_heading' => 'Disable 2FA',
|
|
'disable_2fa_body' => 'Two-factor authentication will be removed. Your account will then be protected by password only.',
|
|
'disable_2fa_notify' => '2FA disabled.',
|
|
|
|
// Page title
|
|
'title' => 'Settings — Clusev',
|
|
];
|