Ticket #6362: 6362.4-category.diff
File 6362.4-category.diff, 1.3 KB (added by , 14 years ago) |
---|
-
(a) edit-category-form.php vs. (b) (clipboard)
a b 57 57 <tr class="form-field form-required"> 58 58 <th scope="row" valign="top"><label for="cat_name"><?php _e('Category Name') ?></label></th> 59 59 <td><input name="cat_name" id="cat_name" type="text" value="<?php echo esc_attr($category->name); ?>" size="40" aria-required="true" /><br /> 60 <span class="description"><?php _e('The name is used to identify the category almost everywhere, for example under the post or in the category widget.'); ?></span></td>61 60 </tr> 62 61 <tr class="form-field"> 63 62 <th scope="row" valign="top"><label for="category_nicename"><?php _e('Category Slug') ?></label></th> … … 74 73 <tr class="form-field"> 75 74 <th scope="row" valign="top"><label for="category_description"><?php _e('Description') ?></label></th> 76 75 <td><textarea name="category_description" id="category_description" rows="5" cols="50" style="width: 97%;"><?php echo esc_html($category->description); ?></textarea><br /> 77 <span class="description"><?php _e('The description is not prominent by default , howeversome themes may show it.'); ?></span></td>76 <span class="description"><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></span></td> 78 77 </tr> 79 78 <?php do_action('edit_category_form_fields', $category); ?> 80 79 </table>