Adjust some strings in wp-signup.php.
* Remove double space. * Remove outer HTML. props pavelevap, SergeyBiryukov. fixes #22306. git-svn-id: https://develop.svn.wordpress.org/trunk@24058 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
a67bb694c5
commit
de6fba2b41
|
@ -569,9 +569,9 @@ if ( $active_signup == 'none' ) {
|
||||||
$newblog = get_blogaddress_by_name( $newblogname );
|
$newblog = get_blogaddress_by_name( $newblogname );
|
||||||
|
|
||||||
if ( $active_signup == 'blog' || $active_signup == 'all' )
|
if ( $active_signup == 'blog' || $active_signup == 'all' )
|
||||||
printf( __( '<p><em>The site you were looking for, <strong>%s</strong> does not exist, but you can create it now!</em></p>' ), $newblog );
|
printf( '<p><em>' . __( 'The site you were looking for, <strong>%s</strong>, does not exist, but you can create it now!' ) . '</em></p>', $newblog );
|
||||||
else
|
else
|
||||||
printf( __( '<p><em>The site you were looking for, <strong>%s</strong>, does not exist.</em></p>' ), $newblog );
|
printf( '<p><em>' . __( 'The site you were looking for, <strong>%s</strong>, does not exist.' ) . '</em></p>', $newblog );
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue