From 044901e7831c01acb3d6875e811e85b9eeba3da9 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 30 Oct 2015 02:09:24 +0000 Subject: [PATCH] Don't use `` in translatable strings in `wp-signup.php`. Add translator commments. Props ramiy. Fixes #34502. Built from https://develop.svn.wordpress.org/trunk@35447 git-svn-id: http://core.svn.wordpress.org/trunk@35411 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-signup.php | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index d1b71966c4..5a8801060a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-beta2-35446'; +$wp_version = '4.4-beta2-35447'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-signup.php b/wp-signup.php index 824ba1a7f9..22c2e7c411 100644 --- a/wp-signup.php +++ b/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; }