Changeset 24184
- Timestamp:
- 05/07/2013 01:56:07 PM (12 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-advanced.php
r24149 r24184 167 167 ), 168 168 'link' => array ( 169 'description' => __( 'Add a link URL below.' )169 'description' => __( 'Add a link title and destination URL. Use the editor to compose optional text to accompany the link.' ) 170 170 ), 171 171 'video' => array ( … … 182 182 ), 183 183 'quote' => array ( 184 'description' => __( 'Add a source and URLif you have them. Use the editor to compose the quote.' )184 'description' => __( 'Add a source name and link if you have them. Use the editor to compose the quote.' ) 185 185 ), 186 186 'aside' => array ( -
trunk/wp-admin/includes/post-formats.php
r24098 r24184 61 61 62 62 <div class="field wp-format-quote"> 63 <label for="wp_format_quote_source_url"><?php _e( ' Link URL' ); ?></label>63 <label for="wp_format_quote_source_url"><?php _e( 'Quote source link' ); ?></label> 64 64 <input type="text" id="wp_format_quote_source_url" name="_format_quote_source_url" value="<?php echo esc_url( $format_meta['quote_source_url'] ); ?>" class="widefat" /> 65 65 </div> 66 66 67 67 <div class="field wp-format-image"> 68 <label for="wp_format_image_url"><?php _e( ' Link URL' ); ?></label>68 <label for="wp_format_image_url"><?php _e( 'Image click-through link' ); ?></label> 69 69 <input type="text" id="wp_format_image_url" name="_format_url" value="<?php echo esc_url( $format_meta['url'] ); ?>" class="widefat" /> 70 70 </div>
Note: See TracChangeset
for help on using the changeset viewer.