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.
22 lines
988 B
PHP
22 lines
988 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['crypterror'] = 'Could not save new password. Encryption function missing.';
|
|
$messages['connecterror'] = 'Could not save new password. Connection error.';
|
|
$messages['internalerror'] = 'Could not save new password.';
|
|
$messages['passwordshort'] = 'Password must be at least $length characters long.';
|
|
$messages['passwordweak'] = 'Password must include at least one number and one punctuation character.';
|
|
$messages['passwordforbidden'] = 'Password contains forbidden characters.';
|
|
|
|
?>
|