diff --git a/src/wp-admin/upload.php b/src/wp-admin/upload.php
index 18dba6a640..8ab9f0fa81 100644
a
|
b
|
get_current_screen()->add_help_tab( |
234 | 234 | '<p>' . __( 'You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media.' ) . '</p>', |
235 | 235 | ) |
236 | 236 | ); |
| 237 | $help = '<p>' . __( 'Hovering over a row reveals action links that allow you to manage media items. You can perform the following actions:' ) . '</p>' . |
| 238 | '<ul>' . |
| 239 | '<li>' . __( '<strong>Edit</strong> takes you to simple screen to edit that individual file’s metadata. You can also reach that screen by clicking on the media file name or thumbnail.' ) . '</li>' . |
| 240 | '<li>' . __( '<strong>Delete Permanently</strong> will delete the file from the media library (as well as from any posts to which it is currently attached).' ) . '</li>' . |
| 241 | '<li>' . __( '<strong>View</strong> will take you to a public display page for that file.' ) . '</li>' . |
| 242 | '<li>' . __( '<strong>Copy URL to clipboard</strong> copies the URL for the media file to your clipboard.' ) . '</li>' . |
| 243 | '</ul>'; |
| 244 | |
237 | 245 | get_current_screen()->add_help_tab( |
238 | 246 | array( |
239 | 247 | 'id' => 'actions-links', |
240 | 248 | 'title' => __( 'Available Actions' ), |
241 | | 'content' => |
242 | | '<p>' . __( 'Hovering over a row reveals action links: Edit, Delete Permanently, and View. Clicking Edit or on the media file’s name displays a simple screen to edit that individual file’s metadata. Clicking Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached). View will take you to the display page for that file.' ) . '</p>', |
| 249 | 'content' => $help, |
243 | 250 | ) |
244 | 251 | ); |
245 | 252 | get_current_screen()->add_help_tab( |