diff --git a/lib/formfields/customer/domains/formfield.domain_ssleditor.php b/lib/formfields/customer/domains/formfield.domain_ssleditor.php index 7a122802..0192d509 100644 --- a/lib/formfields/customer/domains/formfield.domain_ssleditor.php +++ b/lib/formfields/customer/domains/formfield.domain_ssleditor.php @@ -29,8 +29,8 @@ return array( 'label' => $lng['admin']['ipsandports']['ssl_cert_file_content'], 'desc' => $lng['admin']['ipsandports']['ssl_paste_description'], 'type' => 'textarea', - 'cols' => 60, - 'rows' => 12, + 'cols' => 100, + 'rows' => 15, 'value' => $result['ssl_cert_file'] ), 'ssl_key_file' => array( @@ -38,26 +38,26 @@ return array( 'label' => $lng['admin']['ipsandports']['ssl_key_file_content'], 'desc' => $lng['admin']['ipsandports']['ssl_paste_description'], 'type' => 'textarea', - 'cols' => 60, - 'rows' => 12, + 'cols' => 100, + 'rows' => 15, 'value' => $result['ssl_key_file'] ), 'ssl_cert_chainfile' => array( 'style' => 'vertical-align:top;', 'label' => $lng['admin']['ipsandports']['ssl_cert_chainfile_content'], - 'desc' => $lng['admin']['ipsandports']['ssl_paste_description'], + 'desc' => $lng['admin']['ipsandports']['ssl_paste_description'].$lng['admin']['ipsandports']['ssl_cert_chainfile_content_desc'], 'type' => 'textarea', - 'cols' => 60, - 'rows' => 12, + 'cols' => 100, + 'rows' => 15, 'value' => $result['ssl_cert_chainfile'] ), 'ssl_ca_file' => array( 'style' => 'vertical-align:top;', 'label' => $lng['admin']['ipsandports']['ssl_ca_file_content'], - 'desc' => $lng['admin']['ipsandports']['ssl_paste_description'], + 'desc' => $lng['admin']['ipsandports']['ssl_paste_description'].$lng['admin']['ipsandports']['ssl_ca_file_content_desc'], 'type' => 'textarea', - 'cols' => 60, - 'rows' => 12, + 'cols' => 100, + 'rows' => 15, 'value' => $result['ssl_ca_file'] ) ) diff --git a/lng/english.lng.php b/lng/english.lng.php index 41c9fbea..a58f3cb6 100644 --- a/lng/english.lng.php +++ b/lng/english.lng.php @@ -1948,8 +1948,10 @@ $lng['panel']['ssleditor'] = 'SSL settings for this domain'; $lng['admin']['ipsandports']['ssl_paste_description'] = 'Paste your complete certificate content in the textbox'; $lng['admin']['ipsandports']['ssl_cert_file_content'] = 'Content of the ssl certificate'; $lng['admin']['ipsandports']['ssl_key_file_content'] = 'Content of the ssl (private-) key file'; -$lng['admin']['ipsandports']['ssl_ca_file_content'] = 'Content of the ssl CA file (optional, client authentification, set this only if you know what it is.)'; -$lng['admin']['ipsandports']['ssl_cert_chainfile_content'] = 'Content of the certificate chainfile (optional, mostly CA_Bundle, or similar, you probably want to set this if you bought a SSL certificate.)'; +$lng['admin']['ipsandports']['ssl_ca_file_content'] = 'Content of the ssl CA file (optional)'; +$lng['admin']['ipsandports']['ssl_ca_file_content_desc'] = '

Client authentification, set this only if you know what it is.'; +$lng['admin']['ipsandports']['ssl_cert_chainfile_content'] = 'Content of the certificate chainfile (optional)'; +$lng['admin']['ipsandports']['ssl_cert_chainfile_content_desc'] = '

Mostly CA_Bundle, or similar, you probably want to set this if you bought a SSL certificate.'; $lng['error']['sslcertificateismissingprivatekey'] = 'You need to specify a private key for your certificate'; $lng['error']['sslcertificatewrongdomain'] = 'The given certificate does not belong to this domain'; $lng['error']['sslcertificateinvalidcert'] = 'The given certificate-content does not seem to be a valid certificate'; diff --git a/lng/german.lng.php b/lng/german.lng.php index fb589966..2c0080aa 100644 --- a/lng/german.lng.php +++ b/lng/german.lng.php @@ -1669,8 +1669,10 @@ $lng['panel']['ssleditor'] = 'SSL-Einstellungen für diese Domain'; $lng['admin']['ipsandports']['ssl_paste_description'] = 'Bitte den Inhalt der Zertifikatsdatei in das Textfeld kopieren'; $lng['admin']['ipsandports']['ssl_cert_file_content'] = 'Inhalt des SSL-Zertifikats'; $lng['admin']['ipsandports']['ssl_key_file_content'] = 'Inhalt der Key-Datei (private key)'; -$lng['admin']['ipsandports']['ssl_ca_file_content'] = 'Inhalt der SSL-CA-Datei (optional, Client Authentifizierung, dieses Feld sollte nur gesetzt werden, wenn es wirklich gebraucht wird.)'; -$lng['admin']['ipsandports']['ssl_cert_chainfile_content'] = 'Inhalt des Zertifikats-Chainfile (optional, meist CA_Bundle, o.Ä., dies ist das Feld, dass gesetzt werden sollte, wenn ein gekauftes SSL-Zertifikat vorliegt.)'; +$lng['admin']['ipsandports']['ssl_ca_file_content'] = 'Inhalt der SSL-CA-Datei (optional)'; +$lng['admin']['ipsandports']['ssl_ca_file_content_desc'] = '

Client Authentifizierung, dieses Feld sollte nur gesetzt werden, wenn es wirklich gebraucht wird.'; +$lng['admin']['ipsandports']['ssl_cert_chainfile_content'] = 'Inhalt des Zertifikats-Chainfile (optional)'; +$lng['admin']['ipsandports']['ssl_cert_chainfile_content_desc'] = '

Meist CA_Bundle, o.Ä., dies ist das Feld, dass gesetzt werden sollte, wenn ein gekauftes SSL-Zertifikat vorliegt.'; $lng['error']['sslcertificateismissingprivatekey'] = 'Für das Zertifikat muss eine Key-Datei (private key) angegeben werden'; $lng['error']['sslcertificatewrongdomain'] = 'Das angegebene Zertifikat gilt nicht für die gewählte Domain'; $lng['error']['sslcertificateinvalidcert'] = 'Der angegebene Zertifikatsinhalt scheint kein gültiges Zertifikat zu sein';