Make WordPress Core

Ticket #6362: 6362.4-category.diff

File 6362.4-category.diff, 1.3 KB (added by xenlab, 14 years ago)

Refreshing changes made in 6362.diff for trunk --> Doing one file at a time, but all will start with 6362.4* so that we know they are related.

  • (a) edit-category-form.php vs. (b) (clipboard)

    a b  
    5757                <tr class="form-field form-required">
    5858                        <th scope="row" valign="top"><label for="cat_name"><?php _e('Category Name') ?></label></th>
    5959                        <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>
    6160                </tr>
    6261                <tr class="form-field">
    6362                        <th scope="row" valign="top"><label for="category_nicename"><?php _e('Category Slug') ?></label></th>
     
    7473                <tr class="form-field">
    7574                        <th scope="row" valign="top"><label for="category_description"><?php _e('Description') ?></label></th>
    7675                        <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, however some 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>
    7877                </tr>
    7978                <?php do_action('edit_category_form_fields', $category); ?>
    8079        </table>