Changeset 41566 for trunk/src/wp-admin/users.php
- Timestamp:
- 09/22/2017 06:30:10 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/users.php
r40940 r41566 35 35 36 36 get_current_screen()->add_help_tab( array( 37 'id' => 'screen- display',38 'title' => __('Screen Display'),37 'id' => 'screen-content', 38 'title' => __('Screen Content'), 39 39 'content' => '<p>' . __('You can customize the display of this screen in a number of ways:') . '</p>' . 40 40 '<ul>' . … … 47 47 $help = '<p>' . __('Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:') . '</p>' . 48 48 '<ul>' . 49 '<li>' . __(' Edittakes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.') . '</li>';49 '<li>' . __('<strong>Edit</strong> takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.') . '</li>'; 50 50 51 51 if ( is_multisite() ) 52 $help .= '<li>' . __( ' Removeallows 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>';52 $help .= '<li>' . __( '<strong>Remove</strong> 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>'; 53 53 else 54 $help .= '<li>' . __( ' Deletebrings 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>';54 $help .= '<li>' . __( '<strong>Delete</strong> 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>'; 55 55 56 56 $help .= '</ul>'; 57 57 58 58 get_current_screen()->add_help_tab( array( 59 'id' => 'action s',60 'title' => __('A ctions'),59 'id' => 'action-links', 60 'title' => __('Available Actions'), 61 61 'content' => $help, 62 62 ) );
Note: See TracChangeset
for help on using the changeset viewer.