Changes in trunk/wp-admin/options-media.php [15132:16980]
- File:
-
- 1 edited
-
trunk/wp-admin/options-media.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-media.php
r15132 r16980 19 19 '<p>' . __('You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.') . '</p>' . 20 20 '<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>' . 21 '<p>' . __('Uploading Options gives you folder and path choices for storing your files in your installation’s directory.') . '</p>'.21 ( is_multisite() ? '' : '<p>' . __('Uploading Options gives you folder and path choices for storing your files in your installation’s directory.') . '</p>' ) . 22 22 '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>' . 23 23 '<p><strong>' . __('For more information:') . '</strong></p>' . … … 82 82 <tr valign="top"> 83 83 <th scope="row"><?php _e('Auto-embeds'); ?></th> 84 <td><fieldset><legend class="screen-reader-text"><span><?php _e(' Attempt to automatically embed all plain text URLs'); ?></span></legend>85 <label for="embed_autourls"><input name="embed_autourls" type="checkbox" id="embed_autourls" value="1" <?php checked( '1', get_option('embed_autourls') ); ?>/> <?php _e(' Attempt to automatically embed all plain text URLs'); ?></label>84 <td><fieldset><legend class="screen-reader-text"><span><?php _e('When possible, embed the media content from a URL directly onto the page. For example: links to Flickr and YouTube.'); ?></span></legend> 85 <label for="embed_autourls"><input name="embed_autourls" type="checkbox" id="embed_autourls" value="1" <?php checked( '1', get_option('embed_autourls') ); ?>/> <?php _e('When possible, embed the media content from a URL directly onto the page. For example: links to Flickr and YouTube.'); ?></label> 86 86 </fieldset></td> 87 87 </tr> … … 133 133 <?php do_settings_sections('media'); ?> 134 134 135 <p class="submit"> 136 <input type="submit" name="Submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" /> 137 </p> 135 <?php submit_button(); ?> 138 136 139 137 </form>
Note: See TracChangeset
for help on using the changeset viewer.