Some error message normalization from Viper007Bond and DD32. fixes #5139
git-svn-id: https://develop.svn.wordpress.org/trunk@6188 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
766e620f90
commit
e4a7d60051
@ -87,7 +87,7 @@ function edit_user( $user_id = 0 ) {
|
||||
$errors->add( 'pass', __( '<strong>ERROR</strong>: Please enter your password twice.' ));
|
||||
} else {
|
||||
if ((empty ( $pass1 ) && !empty ( $pass2 ) ) || (empty ( $pass2 ) && !empty ( $pass1 ) ) )
|
||||
$errors->add( 'pass', __( "<strong>ERROR</strong>: you typed your new password only once." ));
|
||||
$errors->add( 'pass', __( '<strong>ERROR</strong>: You entered your new password only once.' ));
|
||||
}
|
||||
|
||||
/* Check for "\" in password */
|
||||
@ -96,7 +96,7 @@ function edit_user( $user_id = 0 ) {
|
||||
|
||||
/* checking the password has been typed twice the same */
|
||||
if ( $pass1 != $pass2 )
|
||||
$errors->add( 'pass', __( '<strong>ERROR</strong>: Please type the same password in the two password fields.' ));
|
||||
$errors->add( 'pass', __( '<strong>ERROR</strong>: Please enter the same password in the two password fields.' ));
|
||||
|
||||
if (!empty ( $pass1 ))
|
||||
$user->user_pass = $pass1;
|
||||
@ -105,14 +105,14 @@ function edit_user( $user_id = 0 ) {
|
||||
$errors->add( 'user_login', __( '<strong>ERROR</strong>: This username is invalid. Please enter a valid username.' ));
|
||||
|
||||
if (!$update && username_exists( $user->user_login ))
|
||||
$errors->add( 'user_login', __( '<strong>ERROR</strong>: This username is already registered, please choose another one.' ));
|
||||
$errors->add( 'user_login', __( '<strong>ERROR</strong>: This username is already registered. Please choose another one.' ));
|
||||
|
||||
/* checking e-mail address */
|
||||
if ( empty ( $user->user_email ) ) {
|
||||
$errors->add( 'user_email', __( "<strong>ERROR</strong>: please type an e-mail address" ));
|
||||
$errors->add( 'user_email', __( '<strong>ERROR</strong>: Please enter an e-mail address.' ));
|
||||
} else
|
||||
if (!is_email( $user->user_email ) ) {
|
||||
$errors->add( 'user_email', __( "<strong>ERROR</strong>: the email address isn't correct" ));
|
||||
$errors->add( 'user_email', __( "<strong>ERROR</strong>: The e-mail address isn't correct." ));
|
||||
}
|
||||
|
||||
if ( $errors->get_error_codes() )
|
||||
|
Loading…
Reference in New Issue
Block a user