Ticket #13467: media-contextual-help.13467.diff
File media-contextual-help.13467.diff, 3.3 KB (added by , 14 years ago) |
---|
-
wp-admin/media-upload.php
56 56 57 57 $title = __('Upload New Media'); 58 58 $parent_file = 'upload.php'; 59 60 add_contextual_help( $current_screen, 61 62 '<p>' . __('You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share.') . '</p>' . 63 '<p>' . __('The first screen for <em>Upload New</em> provides two options: to <em>Select Files</em> (multiple file upload allowed) or to switch to a <em>Browser Uploader</em> (which has two similar options). Clicking <em>Select Files</em> opens a navigation window showing you files in your operating system. Selecting <em>Open</em> after clicking on the file you want activates a progress bar on the uploader screen, which gives percentages, says “crunching,” and upon completion adds a thumbnail and five metadata boxes on this screen. Basic image editing is available after upload is complete. Make sure you click <em>Save</em> before leaving this screen.') . '</p>' . 64 '<p>' . __('<a href="http://codex.wordpress.org/Media_Add_New_SubPanel">Add New Media in Codex</a>') . '</p>' . 65 '<p>' . __('<a href="http://codex.wordpress.org/">General Codex Documentation</a>') . '</p>' . 66 '<p>' . __('<a href="http://wordpress.org/support/">Support Forums</a>') . '</p>' 67 ); 68 59 69 require_once('./admin-header.php'); ?> 60 70 <div class="wrap"> 61 71 <?php screen_icon(); ?> -
wp-admin/upload.php
162 162 $is_trash = ( isset($_GET['status']) && $_GET['status'] == 'trash' ); 163 163 164 164 wp_enqueue_script('media'); 165 166 add_contextual_help( $current_screen, 167 '<p>' . __('All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the <em>Screen Options</em> tab to customize the display of this screen.') . '</p>' . 168 '<p>' . __('You can narrow the list by file type/status using the text link filters at the top of the screen. You also can refine the list by date using the dropdown menu above the media table.') . '</p>' . 169 '<p>' . __('Hovering over a row reveals action links: <em>Edit</em>, <em>Delete Permanently</em>, and <em>View</em>. Clicking <em>Edit</em> or on the media file’s name displays a simple screen to edit that individual file’s metadata. Clicking <em>Delete Permanently</em> will delete the file from the media library (as well as from any posts to which it is currently attached). <em>View</em> will take you to the display page for that file. ') . '</p>' . 170 '<p>' . __('If a media file has not been attached to any post, you will see that in the <em>Attached To</em> column, and can click on <em>Attach File</em> to launch a small popup that will allow you to search for a post and attach the file.') . '</p>' . 171 '<p>' . __('For more information:<br /> 172 <a href="http://codex.wordpress.org/Media_Library_SubPanel">Media Library Documentation</a> <br /> 173 <a href="http://wordpress.org/support/">Support Forums</a>') . '</p>' 174 ); 175 165 176 require_once('./admin-header.php'); 166 177 ?> 167 178