thomascube
2009-04-19 cc97ea0559af1a92a54dbcdf738ee4d95e67d3ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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 input new password.";
$messages['nocurpassword'] = "Please input current password.";
$messages['passwordincorrectly'] = "Current password incorrectly.";
$messages['passwordinconsistency'] = "Inconsistency of password, please try again.";
 
?>