From eb0a1074d7b45307b18a75a879e6500360d1f31f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 30 Oct 2015 02:08:03 +0000 Subject: [PATCH] Don't use `` in translatable strings in `wp-signup.php`. Add translator commments. Props ramiy. Fixes #34502. git-svn-id: https://develop.svn.wordpress.org/trunk@35447 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-signup.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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; }