diff --git a/wp-admin/options-general.php b/wp-admin/options-general.php index 89830222f5..9091d5e3eb 100644 --- a/wp-admin/options-general.php +++ b/wp-admin/options-general.php @@ -105,10 +105,15 @@ $new_admin_email = get_option( 'new_admin_email' ); if ( $new_admin_email && $new_admin_email != get_option('admin_email') ) : ?>

Cancel' ), - '' . esc_html( $new_admin_email ) . '', - esc_url( admin_url( 'options.php?dismiss=new_admin_email' ) ) + printf( + /* translators: %s: new admin email */ + __( 'There is a pending change of the admin email to %s.' ), + '' . esc_html( $new_admin_email ) . '' + ); + printf( + ' %2$s', + esc_url( admin_url( 'options.php?dismiss=new_admin_email' ) ), + __( 'Cancel' ) ); ?>

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