67 lines
2.4 KiB
PHP
67 lines
2.4 KiB
PHP
<?php
|
|
|
|
// Settings (profile + security) page strings (R16). Shared buttons live in common.php.
|
|
return [
|
|
// Identity header
|
|
'account' => 'Konto',
|
|
'role_admin' => 'Administrator',
|
|
'two_factor_on' => '2FA aktiv',
|
|
'two_factor_off' => '2FA aus',
|
|
|
|
// Section nav tabs
|
|
'tab_profile' => 'Profil',
|
|
'tab_security' => 'Sicherheit',
|
|
'tab_users' => 'Benutzer',
|
|
'tab_sessions' => 'Sitzungen',
|
|
'tab_email' => 'E-Mail',
|
|
|
|
// Profile panel
|
|
'profile_title' => 'Profil',
|
|
'profile_subtitle' => 'Name und E-Mail',
|
|
'name' => 'Name',
|
|
'email' => 'E-Mail',
|
|
|
|
// Password panel
|
|
'password_title' => 'Passwort',
|
|
'password_subtitle' => 'Mindestens 10 Zeichen',
|
|
'current_password' => 'Aktuelles Passwort',
|
|
'new_password' => 'Neues Passwort',
|
|
'repeat_password' => 'Wiederholen',
|
|
'change_password' => 'Passwort ändern',
|
|
|
|
// Two-factor panel
|
|
'twofa_title' => 'Zwei-Faktor-Authentifizierung',
|
|
'twofa_subtitle' => 'TOTP (Authenticator-App)',
|
|
'twofa_status_on' => '2FA ist aktiv',
|
|
'twofa_status_off' => '2FA ist nicht eingerichtet',
|
|
'twofa_hint_on' => 'Der Login erfordert einen TOTP-Code.',
|
|
'twofa_hint_off' => 'Empfohlen — schützt den Login mit einem zweiten Faktor.',
|
|
'twofa_setup' => 'Einrichten',
|
|
'twofa_recommended' => '2FA ist optional, aber empfohlen — sichere dein Konto mit einem Authenticator oder Security-Key.',
|
|
'twofa_remove_totp' => 'Authenticator entfernen',
|
|
|
|
// Account recovery (last-resort) note — admin-only, post-login
|
|
'recovery_note' => 'Konto-Wiederherstellung (letzter Ausweg): per SSH auf den Host einloggen und `clusev:reset-admin` ausführen.',
|
|
|
|
// Notifications
|
|
'profile_saved' => 'Profil gespeichert.',
|
|
'password_changed' => 'Passwort geändert.',
|
|
|
|
// Disable-2FA confirmation modal
|
|
'disable_2fa_heading' => 'Authenticator entfernen',
|
|
'disable_2fa_body' => 'Den Authenticator (TOTP) als Faktor entfernen? Security-Keys bleiben bestehen.',
|
|
'disable_2fa_notify' => 'Authenticator entfernt.',
|
|
|
|
// Stub tabs (filled in 0.9.0)
|
|
'coming_soon' => 'Wird in 0.9.0 ergänzt.',
|
|
'users_title' => 'Benutzer',
|
|
'users_subtitle' => 'Konten und Rollen verwalten',
|
|
'sessions_title' => 'Sitzungen',
|
|
'sessions_subtitle' => 'Aktive Anmeldungen',
|
|
'email_title' => 'E-Mail',
|
|
'email_subtitle' => 'SMTP und Benachrichtigungen',
|
|
|
|
// Page title
|
|
'title' => 'Einstellungen — Clusev',
|
|
];
|