blob: 42708b34f049bd09f741d79b85acc633aaf44907 (
plain)
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";
?>
|