From a7008072dbff7cde0154aa335ee8d0d06894b7c7 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 23 Feb 2016 23:27:25 +0000 Subject: [PATCH] I18N: Remove `` tag from translatable string in `wp-admin/user-edit.php`. Add translator comment. Props ramiy. Fixes #35672. Built from https://develop.svn.wordpress.org/trunk@36655 git-svn-id: http://core.svn.wordpress.org/trunk@36622 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/user-edit.php | 14 ++++++++++---- wp-includes/version.php | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/wp-admin/user-edit.php b/wp-admin/user-edit.php index 88d4657bba..0a38507a6c 100644 --- a/wp-admin/user-edit.php +++ b/wp-admin/user-edit.php @@ -388,10 +388,16 @@ if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_c

Cancel' ), - '' . $new_email['newemail'] . '', - esc_url( self_admin_url( 'profile.php?dismiss=' . $current_user->ID . '_new_email' ) ) - ); ?>

+ /* translators: %s: new email */ + __( 'There is a pending change of your email to %s.' ), + '' . $new_email['newemail'] . '' + ); + printf( + ' %2$s', + esc_url( self_admin_url( 'profile.php?dismiss=' . $current_user->ID . '_new_email' ) ), + __( 'Cancel' ) + ); + ?>

diff --git a/wp-includes/version.php b/wp-includes/version.php index ce3dc30d25..80a70fcaef 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36654'; +$wp_version = '4.5-alpha-36655'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.