Make WordPress Core


Ignore:
Timestamp:
11/20/2006 02:17:07 AM (19 years ago)
Author:
ryan
Message:

Standardize on Links instead of Bookmarks until we change our minds again.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/categories.php

    r4495 r4499  
    3838
    3939    if ( $cat_ID == get_option('default_link_category') )
    40         wp_die(sprintf(__("Can't delete the <strong>%s</strong> category: this is the default one for bookmarks"), $cat_name));
     40        wp_die(sprintf(__("Can't delete the <strong>%s</strong> category: this is the default one for links"), $cat_name));
    4141
    4242    wp_delete_category($cat_ID);
     
    100100        <th scope="col"><?php _e('Description') ?></th>
    101101        <th scope="col" width="90" style="text-align: center"><?php _e('Posts') ?></th>
    102         <th scope="col" width="90" style="text-align: center"><?php _e('Bookmarks') ?></th>
     102        <th scope="col" width="90" style="text-align: center"><?php _e('Links') ?></th>
    103103        <th colspan="2" style="text-align: center"><?php _e('Action') ?></th>
    104104    </tr>
     
    115115<?php if ( current_user_can('manage_categories') ) : ?>
    116116<div class="wrap">
    117 <p><?php printf(__('<strong>Note:</strong><br />Deleting a category does not delete the posts and bookmarks in that category.  Instead, posts in the deleted category are set to the category <strong>%s</strong> and bookmarks are set to <strong>%s</strong>.'), get_catname(get_option('default_category')), get_catname(get_option('default_link_category'))) ?></p>
     117<p><?php printf(__('<strong>Note:</strong><br />Deleting a category does not delete the posts and links in that category.  Instead, posts in the deleted category are set to the category <strong>%s</strong> and links are set to <strong>%s</strong>.'), get_catname(get_option('default_category')), get_catname(get_option('default_link_category'))) ?></p>
    118118</div>
    119119
Note: See TracChangeset for help on using the changeset viewer.