68 lines
1.7 KiB
PHP
68 lines
1.7 KiB
PHP
<?php
|
|
/*
|
|
* Localization file for ident_switch plugin
|
|
*/
|
|
$labels = array();
|
|
|
|
// Plugin ident_switch
|
|
$labels['form.common.caption'] = 'Plugin ident_switch';
|
|
|
|
// Enabled
|
|
$labels['form.common.enabled'] = 'Aktiviert';
|
|
|
|
// Label
|
|
$labels['form.common.label'] = 'Bezeichnung';
|
|
|
|
// Value in \'Label\' field is too long (32 chars max).
|
|
$labels['err.label.long'] = 'Der Wert in Feld \'Bezeichnung\' ist zu lang (max. 32 Zeichen).';
|
|
|
|
|
|
// IMAP
|
|
$labels['form.imap.caption'] = 'IMAP';
|
|
|
|
// Server host name
|
|
$labels['form.imap.host'] = 'Servername';
|
|
|
|
// Secure connection (TLS)
|
|
$labels['form.imap.tls'] = 'Sichere Verbindung (TLS)';
|
|
|
|
// Port
|
|
$labels['form.imap.port'] = 'Port';
|
|
|
|
// Username
|
|
$labels['form.imap.username'] = 'Benutzername';
|
|
|
|
// Password
|
|
$labels['form.imap.password'] = 'Passwort';
|
|
|
|
// Value in \'Username\' field is too long (64 chars max).
|
|
$labels['err.user.long'] = 'Der Wert in Feld \'Benutzername\' ist zu lang (max. 64 Zeichen).';
|
|
|
|
|
|
// SMTP
|
|
$labels['form.smtp.caption'] = 'SMTP';
|
|
|
|
// Server host name
|
|
$labels['form.smtp.host'] = 'Servername';
|
|
|
|
// Secure connection (TLS)
|
|
$labels['form.smtp.tls'] = 'Sichere Verbindung (TLS)';
|
|
|
|
// Port
|
|
$labels['form.smtp.port'] = 'Port';
|
|
|
|
// Authorization required
|
|
$labels['form.smtp.auth'] = 'Genehmigung benötigt';
|
|
|
|
|
|
// Errors
|
|
|
|
// Value in \'Server host name\' field is too long (64 chars max).
|
|
$labels['err.host.long'] = 'Der Wert in Feld \'Servername\' ist zu lang (max. 64 Zeichen).';
|
|
|
|
// Value in \'Port\' field must be a number.
|
|
$labels['err.port.num'] = 'Der Wert in Feld \'Port\' muss eine Zahl sein.';
|
|
|
|
// Value in \'Port\' field must be between 1 and 65535.
|
|
$labels['err.port.range'] = 'Der Wert in Feld \'Port\' muss 1 und 65535 liegen.';
|