I18N: Remove <a> tag from translatable string in wp-admin/user-edit.php.

Add translator comment.

Props ramiy.
Fixes #35672.

git-svn-id: https://develop.svn.wordpress.org/trunk@36655 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2016-02-23 23:26:44 +00:00
parent 960863e74c
commit e34ce471af

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>