Make WordPress Core


Ignore:
Timestamp:
03/05/2014 07:19:52 PM (11 years ago)
Author:
helen
Message:

Indicate that the user deletion process affects all content attributed to a given user, not just posts. props seanchayes. fixes #26709.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/users.php

    r27369 r27416  
    4444
    4545if ( is_multisite() )
    46     $help .= '<li>' . __( 'Remove allows you to remove a user from your site. It does not delete their posts. You can also remove multiple users at once by using Bulk Actions.' ) . '</li>';
     46    $help .= '<li>' . __( 'Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using Bulk Actions.' ) . '</li>';
    4747else
    48     $help .= '<li>' . __( 'Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their posts. You can also delete multiple users at once by using Bulk Actions.' ) . '</li>';
     48    $help .= '<li>' . __( 'Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using Bulk Actions.' ) . '</li>';
    4949
    5050$help .= '</ul>';
     
    241241    </ul>
    242242<?php if ( $go_delete ) : ?>
    243     <fieldset><p><legend><?php echo _n( 'What should be done with posts owned by this user?', 'What should be done with posts owned by these users?', $go_delete ); ?></legend></p>
     243    <fieldset><p><legend><?php echo _n( 'What should be done with content owned by this user?', 'What should be done with content owned by these users?', $go_delete ); ?></legend></p>
    244244    <ul style="list-style:none;">
    245245        <li><label><input type="radio" id="delete_option0" name="delete_option" value="delete" />
    246         <?php _e('Delete all posts.'); ?></label></li>
     246        <?php _e('Delete all content.'); ?></label></li>
    247247        <li><input type="radio" id="delete_option1" name="delete_option" value="reassign" />
    248         <?php echo '<label for="delete_option1">' . __( 'Attribute all posts to:' ) . '</label> ';
     248        <?php echo '<label for="delete_option1">' . __( 'Attribute all content to:' ) . '</label> ';
    249249        wp_dropdown_users( array( 'name' => 'reassign_user', 'exclude' => array_diff( $userids, array($current_user->ID) ) ) ); ?></li>
    250250    </ul></fieldset>
Note: See TracChangeset for help on using the changeset viewer.