Changeset 4499 for trunk/wp-admin/categories.php
- Timestamp:
- 11/20/2006 02:17:07 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/categories.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/categories.php
r4495 r4499 38 38 39 39 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)); 41 41 42 42 wp_delete_category($cat_ID); … … 100 100 <th scope="col"><?php _e('Description') ?></th> 101 101 <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> 103 103 <th colspan="2" style="text-align: center"><?php _e('Action') ?></th> 104 104 </tr> … … 115 115 <?php if ( current_user_can('manage_categories') ) : ?> 116 116 <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> 118 118 </div> 119 119
Note: See TracChangeset
for help on using the changeset viewer.