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.
19 lines
897 B
PHP
19 lines
897 B
PHP
<?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['passwordincorrect'] = 'Current password incorrect.';
|
|
$messages['passwordinconsistency'] = 'Passwords do not match, please try again.';
|
|
$messages['nocryptfunction'] = 'The server is missing a function to encrypt your password - contact your system adminstrator.';
|
|
$messages['internalerror'] = 'The server is updated more than one row in the database. This could be bad for all users. Contact your system adminstrator.';
|
|
$messages['errorsaving'] = 'Could not save your new password to the database. Contact your system adminstrator.';
|
|
|
|
?>
|