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:
parent
cf5df5a7ce
commit
a7008072db
|
@ -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>
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue