41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
<?php
|
|
|
|
// SMTP/email configuration (Settings → Email). Keys identical to lang/de/mail.php (R16).
|
|
return [
|
|
// Panel
|
|
'title' => 'SMTP server',
|
|
'subtitle' => 'Outgoing mail for password resets and notifications',
|
|
|
|
// Fields
|
|
'host' => 'Host',
|
|
'port' => 'Port',
|
|
'username' => 'Username',
|
|
'password' => 'Password',
|
|
'encryption' => 'Encryption',
|
|
'from_address' => 'From address',
|
|
'from_name' => 'From name',
|
|
|
|
// Encryption options
|
|
'encryption_none' => 'None',
|
|
'encryption_tls' => 'TLS',
|
|
'encryption_ssl' => 'SSL',
|
|
|
|
// Password field
|
|
'password_set_placeholder' => '•••• (set)',
|
|
|
|
// Actions
|
|
'save' => 'Save',
|
|
'test_send' => 'Send test mail',
|
|
|
|
// Test mail content
|
|
'test_subject' => 'Clusev — test mail',
|
|
'test_body' => 'This is a test mail from Clusev. If you received it, the SMTP server is configured correctly.',
|
|
|
|
// Notifications
|
|
'notify_saved' => 'SMTP settings saved.',
|
|
'notify_test_ok' => 'Test mail sent to :email.',
|
|
'notify_test_failed' => 'Test mail failed: :error',
|
|
'notify_test_throttled' => 'Too many test e-mails — try again in :seconds seconds.',
|
|
'not_configured' => 'SMTP is not configured.',
|
|
];
|