thomascube
2009-04-20 652a7f0ed2e6d1749fd56cd951e5daea2a4b171a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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";
 
?>