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']  = 'Change Password';
$labels['curpasswd']  = 'Current Password:';
$labels['newpasswd']  = 'New Password:';
$labels['confpasswd']  = 'Confirm New Password:';
 
$messages = array();
$messages['nopassword'] = "Please enter the new password";
$messages['nocurpassword'] = "Please enter your current password";
$messages['passwordincorrect'] = "Current password is incorrect";
$messages['passwordinconsistency'] = "The new password and it's confirmation do not match";
$messages['successfullysaved'] = "Successfully changed password";
 
?>