Make WordPress Core


Ignore:
Timestamp:
12/01/2011 12:52:31 AM (14 years ago)
Author:
nacin
Message:

Help text tweaks for the Settings screens. props jane. see #19020.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-media.php

    r19472 r19507  
    1717
    1818$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
     21if ( ! 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>';
    2025
    2126if ( ! is_multisite() ) {
    22     $media_options_help .= '<p>' . __('Uploading Options gives you folder and path choices for storing your files in your installation&#8217;s directory.') . '</p>';
     27    $media_options_help .= '<p>' . __('Uploading Files allows you to choose the folder and path for storing your uploaded files.') . '</p>';
    2328}
    2429
     
    2631
    2732get_current_screen()->add_help_tab( array(
    28     'id'      => 'options-media',
    29     'title'   => __('Media Options'),
     33    'id'      => 'overview',
     34    'title'   => __('Overview'),
    3035    'content' => $media_options_help,
    3136) );
Note: See TracChangeset for help on using the changeset viewer.