diff --git a/wp-admin/categories.php b/wp-admin/categories.php index bd4eae729f..0bdd68f500 100644 --- a/wp-admin/categories.php +++ b/wp-admin/categories.php @@ -37,7 +37,7 @@ case 'delete': wp_die(sprintf(__("Can't delete the %s category: this is the default one"), $cat_name)); if ( $cat_ID == get_option('default_link_category') ) - wp_die(sprintf(__("Can't delete the %s category: this is the default one for bookmarks"), $cat_name)); + wp_die(sprintf(__("Can't delete the %s category: this is the default one for links"), $cat_name)); wp_delete_category($cat_ID); @@ -99,7 +99,7 @@ $messages[5] = __('Category not updated.'); - + @@ -114,7 +114,7 @@ cat_rows();
-

Note:
Deleting a category does not delete the posts and bookmarks in that category. Instead, posts in the deleted category are set to the category %s and bookmarks are set to %s.'), get_catname(get_option('default_category')), get_catname(get_option('default_link_category'))) ?>

+

Note:
Deleting a category does not delete the posts and links in that category. Instead, posts in the deleted category are set to the category %s and links are set to %s.'), get_catname(get_option('default_category')), get_catname(get_option('default_link_category'))) ?>

diff --git a/wp-admin/link-add.php b/wp-admin/link-add.php index 45c3666a6a..2f66e4403c 100644 --- a/wp-admin/link-add.php +++ b/wp-admin/link-add.php @@ -1,7 +1,7 @@

'; $deleted = (int) $_GET['deleted']; - printf(__('%s bookmarks deleted.'), $deleted); + printf(__('%s links deleted.'), $deleted); echo '

'; } ?> @@ -85,7 +84,7 @@ foreach ((array) $categories as $cat) $select_cat .= "\n"; $select_order = "\n"; @@ -162,7 +161,7 @@ if ($links) '.__('Edit').''; - echo 'link_id , '".sprintf(__("You are about to delete the "%s" bookmark to %s.\\n"Cancel" to stop, "OK" to delete."), js_escape($link->link_name), js_escape($link->link_url)).'\' );" class="delete">'.__('Delete').''; + echo 'link_id , '".sprintf(__("You are about to delete the "%s" link to %s.\\n"Cancel" to stop, "OK" to delete."), js_escape($link->link_name), js_escape($link->link_url)).'\' );" class="delete">'.__('Delete').''; echo ''; echo "\n \n"; } @@ -172,7 +171,7 @@ if ($links)
-

')" />

+

')" />

diff --git a/wp-admin/link.php b/wp-admin/link.php index 4e519d9d8a..425e912cfc 100644 --- a/wp-admin/link.php +++ b/wp-admin/link.php @@ -96,10 +96,10 @@ switch ($action) { wp_enqueue_script( 'ajaxcat' ); $parent_file = 'link-manager.php'; $submenu_file = 'link-manager.php'; - $title = __('Edit Bookmark'); + $title = __('Edit Link'); include_once ('admin-header.php'); if (!current_user_can('manage_links')) - wp_die(__('You do not have sufficient permissions to edit the bookmarks for this blog.')); + wp_die(__('You do not have sufficient permissions to edit the links for this blog.')); $link_id = (int) $_GET['link_id'];