Ticket #28654: 28654.2.diff
File 28654.2.diff, 10.6 KB (added by , 10 years ago) |
---|
-
src/wp-admin/edit-form-advanced.php
319 319 } 320 320 321 321 if ( 'post' == $post_type || 'page' == $post_type ) { 322 $inserting_media = '<p>' . __( 'You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button.' ) . '</p>'; 322 $inserting_media = '<p>' . __( 'You can upload and insert media (images, audio, documents, etc.) either by clicking the Add Media button, or by dragging and dropping media directly into the editor. From the Insert Media popup, you can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post.' ) . '</p>'; 323 $inserting_media .= '<p>' . __( 'To create an image gallery, select the images to add and click the “Create a new gallery” button.' ) . '</p>'; 323 324 $inserting_media .= '<p>' . __( 'You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Please refer to the Codex to <a href="http://codex.wordpress.org/Embeds">learn more about embeds</a>.' ) . '</p>'; 324 325 325 326 get_current_screen()->add_help_tab( array( -
src/wp-admin/edit.php
189 189 '<li>' . __('<strong>Edit</strong> takes you to the editing screen for that post. You can also reach that screen by clicking on the post title.') . '</li>' . 190 190 '<li>' . __('<strong>Quick Edit</strong> provides inline access to the metadata of your post, allowing you to update post details without leaving this screen.') . '</li>' . 191 191 '<li>' . __('<strong>Trash</strong> removes your post from this list and places it in the trash, from which you can permanently delete it.') . '</li>' . 192 '<li>' . __('<strong> Preview</strong> will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status.') . '</li>' .192 '<li>' . __('<strong>View/Preview</strong> will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status.' ) . '</li>' . 193 193 '</ul>' 194 194 ) ); 195 195 get_current_screen()->add_help_tab( array( -
src/wp-admin/plugin-install.php
51 51 'content' => 52 52 '<p>' . sprintf(__('Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official <a href="%s" target="_blank">WordPress.org Plugin Directory</a> are compatible with the license WordPress uses. You can find new plugins to install by searching or browsing the Directory right here in your own Plugins section.'), 'https://wordpress.org/plugins/') . '</p>' 53 53 ) ); 54 55 $adding_plugins = '<p>' . __( 'The Install Plugins screen gives you several good options for finding the plugins that fit your needs. If you know what you’re looking for, search is your best bet. If you simply want to browse plugins that are featured, popular, new, or favorited, you can use the various sorting modes available at the top left of the screen. The default sorting modes include:' ) . '</p>'; 56 $adding_plugins .= '<ul>'; 57 $adding_plugins .= '<li>' . __( '<strong>Featured</strong> Plugins listed here are featured by WordPress, and fall into three distinct groups: Performance, Social, and Tools.' ) . '</li>'; 58 $adding_plugins .= '<li>' . __( '<strong>Popular</strong> Plugins are ordered by popularity, with a bit of special sauce mixed in to give you the most relevant results.' ) . '</li>'; 59 $adding_plugins .= '<li>' . __( '<strong>Newest</strong> If you’re feeling adventurous, this view lists the newest plugins available on WordPress.org' ) . '</li>'; 60 $adding_plugins .= '<li>' . __( '<strong>Favorites</strong> Browse a user’s favorite plugins by entering a valid WordPress.org username and clicking Get Favorites.' ) . '</li>'; 61 if ( false !== strpos( $GLOBALS['wp_version'], '-' ) ) { 62 $adding_plugins .= '<li>' . __( '<strong>Beta Testing</strong> Plugins listed here are useful for beta testing WordPress. This group is only available for those running the Beta Tester plugin or a development version of WordPress.' ) . '</li>'; 63 } 64 $adding_plugins .= '</ul>'; 65 $adding_plugins .= '<p>' . __( 'If you want to install a plugin that you’ve downloaded elsewhere, click Upload Plugin in the upper left. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.' ) . '</p>'; 66 54 67 get_current_screen()->add_help_tab( array( 55 68 'id' => 'adding-plugins', 56 'title' => __('Adding Plugins'), 57 'content' => 58 '<p>' . __('If you know what you’re looking for, Search is your best bet. The Search screen has options to search the WordPress.org Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag.') . '</p>' . 59 '<p>' . __('If you just want to get an idea of what’s available, you can browse Featured, Popular, and Newest plugins by using the links in the upper left of the screen. These sections rotate regularly.') . '</p>' . 60 '<p>' . __('You can also browse a user’s favorite plugins, by using the Favorites link in the upper left of the screen and entering their WordPress.org username.') . '</p>' . 61 '<p>' . __('If you want to install a plugin that you’ve downloaded elsewhere, click the Upload link in the upper left. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin.') . '</p>' 69 'title' => __( 'Adding Plugins' ), 70 'content' => $adding_plugins 62 71 ) ); 63 72 64 73 get_current_screen()->set_help_sidebar( -
src/wp-admin/upload.php
29 29 ) ); 30 30 31 31 get_current_screen()->add_help_tab( array( 32 'id' => 'overview', 33 'title' => __( 'Overview' ), 34 'content' => 35 '<p>' . __( 'All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen.' ) . '</p>' 32 'id' => 'overview', 33 'title' => __( 'Overview' ), 34 'content' => 35 '<p>' . _x( 'All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can narrow the list by file type/status or date using the filters at the top of the screen.', 'media grid view' ) . '</p>' . 36 '<p>' . _x( 'You can view media in a list view with columns or an endless media grid by toggling the grid or list icons at the top of the screen.', 'media grid view' ) . '</p>' 36 37 ) ); 37 38 39 get_current_screen()->add_help_tab( array( 40 'id' => 'details-modal', 41 'title' => __( 'Attachment Details' ), 42 'content' => 43 '<p>' . __( 'Clicking an item in the media grid will reveal an Attachment Details popup. In this popup, you’ll see a larger preview of the media item, meta information, and fields for editing the caption, title, description, and more. Any changes you make to the attachment details will be automatically saved.' ) . '</p>' . 44 '<p>' . __( 'Use the arrow buttons at the top of the popup, or the left and right arrow keys on your keyboard to navigate between between media items from the grid view.' ) . '</p>' 45 ) ); 46 47 get_current_screen()->add_help_tab( array( 48 'id' => 'details-modal', 49 'title' => __( 'Deleting Media' ), 50 'content' => 51 '<p>' . __( 'To delete one or more media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to the media grid screen.' ) . '</p>' 52 ) ); 53 38 54 get_current_screen()->set_help_sidebar( 39 55 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 40 56 '<p>' . __( '<a href="http://codex.wordpress.org/Media_Library_Screen" target="_blank">Documentation on Media Library</a>' ) . '</p>' . … … 186 202 'id' => 'overview', 187 203 'title' => __('Overview'), 188 204 'content' => 189 '<p>' . __( 'All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen.' ) . '</p>' . 190 '<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>' 205 '<p>' . _x( 'All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can narrow the list by file type/status or date using the filters at the top of the screen.', 'media list view' ) . '</p>' . 206 '<p>' . _x( 'You can view media in a list view with columns or an endless media grid by toggling the grid or list icons at the top of the screen.', 'media list view' ) . '</p>' . 207 '<p>' . __( 'Use the Screen Options tab to customize the display of this screen, including which columns to show or hide and how many items to list per page.' ) . '</p>' 191 208 ) ); 192 209 get_current_screen()->add_help_tab( array( 193 210 'id' => 'actions-links', … … 199 216 'id' => 'attaching-files', 200 217 'title' => __('Attaching Files'), 201 218 'content' => 202 '<p>' . __( 'If a media file has not been attached to any post, you will see that in the Attached To column, and can click on Attach File to launch a small popup that will allow you to search for a postand attach the file.' ) . '</p>'219 '<p>' . __( 'If a media file has not been attached to any post, you will see that in the Uploaded To column, and can click on the Attach link to launch a small popup that will allow you to search for a post or page and attach the file.' ) . '</p>' 203 220 ) ); 204 221 205 222 get_current_screen()->set_help_sidebar(