diff --git a/src/wp-signup.php b/src/wp-signup.php index 824ba1a7f9..22c2e7c411 100644 --- a/src/wp-signup.php +++ b/src/wp-signup.php @@ -845,9 +845,15 @@ if ( $active_signup == 'none' ) { $newblog = get_blogaddress_by_name( $newblogname ); if ( $active_signup == 'blog' || $active_signup == 'all' ) - printf( '

' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '

', $newblog ); + /* translators: %s: site address */ + printf( '

' . __( 'The site you were looking for, %s, does not exist, but you can create it now!' ) . '

', + '' . $newblog . '' + ); else - printf( '

' . __( 'The site you were looking for, %s, does not exist.' ) . '

', $newblog ); + /* translators: %s: site address */ + printf( '

' . __( 'The site you were looking for, %s, does not exist.' ) . '

', + '' . $newblog . '' + ); } break; }