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.
16 lines
636 B
PHP
16 lines
636 B
PHP
<?php
|
|
|
|
$labels = array();
|
|
$labels['changepasswd'] = 'Passwort ändern';
|
|
$labels['curpasswd'] = 'Aktuelles Passwort';
|
|
$labels['newpasswd'] = 'Neues Passwort';
|
|
$labels['confpasswd'] = 'Passwort Wiederholung';
|
|
|
|
$messages = array();
|
|
$messages['nopassword'] = "Bitte geben Sie ein neues Passwort ein";
|
|
$messages['nocurpassword'] = "Bitte geben Sie Ihr aktuelles Passwort an";
|
|
$messages['passwordincorrect'] = "Das aktuelle Passwort ist nicht korrekt";
|
|
$messages['passwordinconsistency'] = "Das neue Passwort und dessen Wiederholung stimmen nicht überein";
|
|
$messages['successfullysaved'] = "Ihr Passwort wurde erfolgreich geändert";
|
|
|
|
?>
|