You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.7 KiB
PHP
32 lines
1.7 KiB
PHP
<?php
|
|
|
|
/*
|
|
+-----------------------------------------------------------------------+
|
|
| localization/de_DE/labels.inc |
|
|
| |
|
|
| Language file of the Roundcube Webmail client |
|
|
| Copyright (C) 2012, The Roundcube Dev Team |
|
|
| Licensed under the GNU General Public License |
|
|
| |
|
|
+-----------------------------------------------------------------------+
|
|
| Author: Moritz Höwer <moritzhoewermail@gmx.de> |
|
|
+-----------------------------------------------------------------------+
|
|
*/
|
|
|
|
$labels = array();
|
|
$labels['changepasswd'] = 'Kennwort ändern';
|
|
$labels['curpasswd'] = 'Aktuelles Kennwort:';
|
|
$labels['newpasswd'] = 'Neues Kennwort:';
|
|
$labels['confpasswd'] = 'Neues Kennwort bestätigen:';
|
|
$labels['nopassword'] = 'Bitte geben Sie ein neues Kennwort ein.';
|
|
$labels['nocurpassword'] = 'Bitte geben Sie ihr aktuelles Kennwort ein.';
|
|
$labels['passwordincorrect'] = 'Das aktuelle Kennwort ist falsch.';
|
|
$labels['passwordinconsistency'] = 'Das neue Passwort und dessen Wiederholung stimmen nicht überein';
|
|
$labels['crypterror'] = 'Neues Passwort nicht gespeichert: Verschlüsselungsfunktion fehlt';
|
|
$labels['connecterror'] = 'Neues Passwort nicht gespeichert: Verbindungsfehler';
|
|
$labels['internalerror'] = 'Neues Passwort nicht gespeichert';
|
|
$labels['passwordshort'] = 'Passwort muss mindestens $length Zeichen lang sein.';
|
|
$labels['passwordweak'] = 'Passwort muss mindestens eine Zahl und ein Sonderzeichen enthalten.';
|
|
$labels['passwordforbidden'] = 'Passwort enthält unzulässige Zeichen.';
|
|
|