Change bookmark to link. Props foolswisdom. fixes #3143
git-svn-id: https://develop.svn.wordpress.org/trunk@5124 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
98e9d2b65c
commit
58efc0e2b2
|
@ -122,7 +122,7 @@ $cat_str = sprintf(__ngettext('%1$s <a href="%2$s" title="Categories">category<
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<li><a href="profile.php"><?php _e('Update your profile or change your password'); ?></a></li>
|
<li><a href="profile.php"><?php _e('Update your profile or change your password'); ?></a></li>
|
||||||
<?php if ( current_user_can('manage_links') ) : ?>
|
<?php if ( current_user_can('manage_links') ) : ?>
|
||||||
<li><a href="link-add.php"><?php _e('Add a bookmark to your blogroll'); ?></a></li>
|
<li><a href="link-add.php"><?php _e('Add a link to your blogroll'); ?></a></li>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php if ( current_user_can('switch_themes') ) : ?>
|
<?php if ( current_user_can('switch_themes') ) : ?>
|
||||||
<li><a href="themes.php"><?php _e('Change your site’s look or theme'); ?></a></li>
|
<li><a href="themes.php"><?php _e('Change your site’s look or theme'); ?></a></li>
|
||||||
|
|
|
@ -1231,10 +1231,10 @@ function wp_explain_nonce($action) {
|
||||||
$trans['bulk']['comments'] = array(__('Are you sure you want to bulk modify comments?'), false);
|
$trans['bulk']['comments'] = array(__('Are you sure you want to bulk modify comments?'), false);
|
||||||
$trans['moderate']['comments'] = array(__('Are you sure you want to moderate comments?'), false);
|
$trans['moderate']['comments'] = array(__('Are you sure you want to moderate comments?'), false);
|
||||||
|
|
||||||
$trans['add']['bookmark'] = array(__('Are you sure you want to add this bookmark?'), false);
|
$trans['add']['bookmark'] = array(__('Are you sure you want to add this link'), false);
|
||||||
$trans['delete']['bookmark'] = array(__('Are you sure you want to delete this bookmark: "%s"?'), 'use_id');
|
$trans['delete']['bookmark'] = array(__('Are you sure you want to delete this link: "%s"?'), 'use_id');
|
||||||
$trans['update']['bookmark'] = array(__('Are you sure you want to edit this bookmark: "%s"?'), 'use_id');
|
$trans['update']['bookmark'] = array(__('Are you sure you want to edit this link: "%s"?'), 'use_id');
|
||||||
$trans['bulk']['bookmarks'] = array(__('Are you sure you want to bulk modify bookmarks?'), false);
|
$trans['bulk']['bookmarks'] = array(__('Are you sure you want to bulk modify links?'), false);
|
||||||
|
|
||||||
$trans['add']['page'] = array(__('Are you sure you want to add this page?'), false);
|
$trans['add']['page'] = array(__('Are you sure you want to add this page?'), false);
|
||||||
$trans['delete']['page'] = array(__('Are you sure you want to delete this page: "%s"?'), 'get_the_title');
|
$trans['delete']['page'] = array(__('Are you sure you want to delete this page: "%s"?'), 'get_the_title');
|
||||||
|
|
Loading…
Reference in New Issue