Ticket #21393: 21393_1.patch
File 21393_1.patch, 1.9 KB (added by , 13 years ago) |
---|
-
wp-admin/edit-tag-form.php
62 62 <tr class="form-field"> 63 63 <th scope="row" valign="top"><label for="description"><?php _ex('Description', 'Taxonomy Description'); ?></label></th> 64 64 <td><textarea name="description" id="description" rows="5" cols="50" class="large-text"><?php echo $tag->description; // textarea_escaped ?></textarea><br /> 65 <span class="description"><?php _e('The description is not prominent by default ,however some themes may show it.'); ?></span></td>65 <span class="description"><?php _e('The description is not prominent by default; however some themes may show it.'); ?></span></td> 66 66 </tr> 67 67 <?php 68 68 // Back compat hooks -
wp-admin/edit-tags.php
220 220 if ( 'category' == $taxonomy ) 221 221 $help .= '<li>' . __( '<strong>Parent</strong> - Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.' ) . '</li>'; 222 222 223 $help .= '<li> ' . __( '<strong>Description</strong> -The description is not prominent by default; however, some themes may display it.' ) . '</li>' .223 $help .= '<li><strong>' . __( 'Description' ) . '</strong> - ' . __( 'The description is not prominent by default; however, some themes may display it.' ) . '</li>' . 224 224 '</ul>' . 225 225 '<p>' . __( 'You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.' ) . '</p>'; 226 226