Changeset 52978 for trunk/src/wp-admin/edit-tags.php
- Timestamp:
- 03/22/2022 04:23:32 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tags.php
r52163 r52978 158 158 159 159 if ( ! $term instanceof WP_Term ) { 160 wp_die( __( 'You attempted to edit an item that does n’t exist. Perhaps it was deleted?' ) );160 wp_die( __( 'You attempted to edit an item that does not exist. Perhaps it was deleted?' ) ); 161 161 } 162 162 … … 178 178 $tag = get_term( $tag_ID, $taxonomy ); 179 179 if ( ! $tag ) { 180 wp_die( __( 'You attempted to edit an item that does n’t exist. Perhaps it was deleted?' ) );180 wp_die( __( 'You attempted to edit an item that does not exist. Perhaps it was deleted?' ) ); 181 181 } 182 182 … … 254 254 $help = '<p>' . __( 'You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts.' ) . '</p>'; 255 255 } else { 256 $help = '<p>' . __( 'You can assign keywords to your posts using <strong>tags</strong>. Unlike categories, tags have no hierarchy, meaning there ’s no relationship from one tag to another.' ) . '</p>';256 $help = '<p>' . __( 'You can assign keywords to your posts using <strong>tags</strong>. Unlike categories, tags have no hierarchy, meaning there is no relationship from one tag to another.' ) . '</p>'; 257 257 } 258 258
Note: See TracChangeset
for help on using the changeset viewer.