I18N: Remove `<a>` 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
This commit is contained in:
Sergey Biryukov 2016-02-23 23:27:25 +00:00
parent cf5df5a7ce
commit a7008072db
2 changed files with 11 additions and 5 deletions

View File

@ -388,10 +388,16 @@ if ( is_multisite() && is_network_admin() && ! IS_PROFILE_PAGE && current_user_c
<div class="updated inline">
<p><?php
printf(
__( 'There is a pending change of your email to %1$s. <a href="%2$s">Cancel</a>' ),
'<code>' . $new_email['newemail'] . '</code>',
esc_url( self_admin_url( 'profile.php?dismiss=' . $current_user->ID . '_new_email' ) )
); ?></p>
/* translators: %s: new email */
__( 'There is a pending change of your email to %s.' ),
'<code>' . $new_email['newemail'] . '</code>'
);
printf(
' <a href="%1$s">%2$s</a>',
esc_url( self_admin_url( 'profile.php?dismiss=' . $current_user->ID . '_new_email' ) ),
__( 'Cancel' )
);
?></p>
</div>
<?php endif; ?>
</td>

View File

@ -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.