mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-11 02:49:04 +01:00
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">
|
<div class="updated inline">
|
||||||
<p><?php
|
<p><?php
|
||||||
printf(
|
printf(
|
||||||
__( 'There is a pending change of your email to %1$s. <a href="%2$s">Cancel</a>' ),
|
/* translators: %s: new email */
|
||||||
'<code>' . $new_email['newemail'] . '</code>',
|
__( 'There is a pending change of your email to %s.' ),
|
||||||
esc_url( self_admin_url( 'profile.php?dismiss=' . $current_user->ID . '_new_email' ) )
|
'<code>' . $new_email['newemail'] . '</code>'
|
||||||
); ?></p>
|
);
|
||||||
|
printf(
|
||||||
|
' <a href="%1$s">%2$s</a>',
|
||||||
|
esc_url( self_admin_url( 'profile.php?dismiss=' . $current_user->ID . '_new_email' ) ),
|
||||||
|
__( 'Cancel' )
|
||||||
|
);
|
||||||
|
?></p>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</td>
|
</td>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user