Changeset 19507 for trunk/wp-admin/options-media.php
- Timestamp:
- 12/01/2011 12:52:31 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-media.php
r19472 r19507 17 17 18 18 $media_options_help = '<p>' . __('You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.') . '</p>' . 19 '<p>' . __('The Embed option allows you embed a video, image, or other media content into your content automatically by typing the URL (of the web page where the file lives) on its own line when you create your content.') . '</p>'; 19 '<p>' . __('The Embed option allows you embed a video, image, or other media content into your content automatically by typing the URL (of the web page where the file lives) on its own line when you create your content.'); 20 21 if ( ! empty( $content_width ) ) 22 $media_options_help .= ' ' . __( 'If you do not set the maximum embed size, it will be automatically sized to fit into your content area.' ); 23 24 $media_options_help .= '</p>'; 20 25 21 26 if ( ! is_multisite() ) { 22 $media_options_help .= '<p>' . __('Uploading Options gives you folder and path choices for storing your files in your installation’s directory.') . '</p>';27 $media_options_help .= '<p>' . __('Uploading Files allows you to choose the folder and path for storing your uploaded files.') . '</p>'; 23 28 } 24 29 … … 26 31 27 32 get_current_screen()->add_help_tab( array( 28 'id' => 'o ptions-media',29 'title' => __(' Media Options'),33 'id' => 'overview', 34 'title' => __('Overview'), 30 35 'content' => $media_options_help, 31 36 ) );
Note: See TracChangeset
for help on using the changeset viewer.