40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
|
|
// SMTP/E-Mail-Konfiguration (Settings → E-Mail). Schlüssel identisch mit lang/en/mail.php (R16).
|
|
return [
|
|
// Panel
|
|
'title' => 'SMTP-Server',
|
|
'subtitle' => 'Postausgang für Passwort-Reset und Benachrichtigungen',
|
|
|
|
// Felder
|
|
'host' => 'Host',
|
|
'port' => 'Port',
|
|
'username' => 'Benutzername',
|
|
'password' => 'Passwort',
|
|
'encryption' => 'Verschlüsselung',
|
|
'from_address' => 'Absenderadresse',
|
|
'from_name' => 'Absendername',
|
|
|
|
// Verschlüsselungsoptionen
|
|
'encryption_none' => 'Keine',
|
|
'encryption_tls' => 'TLS',
|
|
'encryption_ssl' => 'SSL',
|
|
|
|
// Passwortfeld
|
|
'password_set_placeholder' => '•••• (gesetzt)',
|
|
|
|
// Aktionen
|
|
'save' => 'Speichern',
|
|
'test_send' => 'Testmail senden',
|
|
|
|
// Testmail-Inhalt
|
|
'test_subject' => 'Clusev — Testmail',
|
|
'test_body' => 'Dies ist eine Testmail von Clusev. Wenn du sie erhältst, ist der SMTP-Server korrekt konfiguriert.',
|
|
|
|
// Benachrichtigungen
|
|
'notify_saved' => 'SMTP-Einstellungen gespeichert.',
|
|
'notify_test_ok' => 'Testmail an :email gesendet.',
|
|
'notify_test_failed' => 'Testmail fehlgeschlagen: :error',
|
|
'not_configured' => 'SMTP ist nicht konfiguriert.',
|
|
];
|