From 58efc0e2b24584eb80b59f2ef339023481e66f00 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Tue, 27 Mar 2007 23:54:48 +0000 Subject: [PATCH] Change bookmark to link. Props foolswisdom. fixes #3143 git-svn-id: https://develop.svn.wordpress.org/trunk@5124 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/index.php | 2 +- wp-includes/functions.php | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-admin/index.php b/wp-admin/index.php index 2a24a82ffd..7dc34a9a15 100644 --- a/wp-admin/index.php +++ b/wp-admin/index.php @@ -122,7 +122,7 @@ $cat_str = sprintf(__ngettext('%1$s category<
  • -
  • +
  • diff --git a/wp-includes/functions.php b/wp-includes/functions.php index b8993c4f48..2db06e1985 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1231,10 +1231,10 @@ function wp_explain_nonce($action) { $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['add']['bookmark'] = array(__('Are you sure you want to add this bookmark?'), false); - $trans['delete']['bookmark'] = array(__('Are you sure you want to delete this bookmark: "%s"?'), 'use_id'); - $trans['update']['bookmark'] = array(__('Are you sure you want to edit this bookmark: "%s"?'), 'use_id'); - $trans['bulk']['bookmarks'] = array(__('Are you sure you want to bulk modify bookmarks?'), 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 link: "%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 links?'), 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');