Make WordPress Core

Ticket #21393: 21393_1.patch

File 21393_1.patch, 1.9 KB (added by F J Kaiser, 13 years ago)
  • wp-admin/edit-tag-form.php

     
    6262                <tr class="form-field">
    6363                        <th scope="row" valign="top"><label for="description"><?php _ex('Description', 'Taxonomy Description'); ?></label></th>
    6464                        <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>
    6666                </tr>
    6767                <?php
    6868                // Back compat hooks
  • wp-admin/edit-tags.php

     
    220220                if ( 'category' == $taxonomy )
    221221                        $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>';
    222222
    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>' .
    224224                '</ul>' .
    225225                '<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>';
    226226