Changeset 27626
- Timestamp:
- 03/19/2014 10:12:13 PM (11 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r27036 r27626 234 234 ?> 235 235 <select name="comment_type"> 236 <option value=""><?php _e( ' Show all comment types' ); ?></option>236 <option value=""><?php _e( 'All comment types' ); ?></option> 237 237 <?php 238 238 /** -
trunk/src/wp-admin/includes/class-wp-list-table.php
r27502 r27626 399 399 ?> 400 400 <select name='m'> 401 <option<?php selected( $m, 0 ); ?> value='0'><?php _e( ' Show all dates' ); ?></option>401 <option<?php selected( $m, 0 ); ?> value='0'><?php _e( 'All dates' ); ?></option> 402 402 <?php 403 403 foreach ( $months as $arc_row ) { -
trunk/src/wp-admin/includes/media.php
r27501 r27626 903 903 $name = esc_attr($name); 904 904 $out[] = "<input type='radio' name='attachments[{$post->ID}][align]' id='image-align-{$name}-{$post->ID}' value='$name'". 905 905 ( $checked == $name ? " checked='checked'" : "" ) . 906 906 " /><label for='image-align-{$name}-{$post->ID}' class='align image-align-{$name}-label'>$label</label>"; 907 907 } … … 1571 1571 $defaults = array( 1572 1572 'input' => 'text', 1573 1574 1575 1576 1577 1573 'required' => false, 1574 'value' => '', 1575 'extra_rows' => array(), 1576 'show_in_edit' => true, 1577 'show_in_modal' => true, 1578 1578 ); 1579 1579 … … 2358 2358 if ( $month_count && !( 1 == $month_count && 0 == $arc_result[0]->mmonth ) ) { ?> 2359 2359 <select name='m'> 2360 <option<?php selected( $selected_month, 0 ); ?> value='0'><?php _e( 'Show all dates'); ?></option>2360 <option<?php selected( $selected_month, 0 ); ?> value='0'><?php _e( 'All dates' ); ?></option> 2361 2361 <?php 2362 2362 foreach ($arc_result as $arc_row) { … … 2548 2548 ?> 2549 2549 <p class="upload-html-bypass hide-if-no-js"> 2550 2550 <?php _e('You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. <a href="#">Switch to the multi-file uploader</a>.'); ?> 2551 2551 </p> 2552 2552 <?php … … 2621 2621 $image_edit_button = "<input type='button' id='imgedit-open-btn-$post->ID' onclick='imageEdit.open( $post->ID, \"$nonce\" )' class='button' value='" . esc_attr__( 'Edit Image' ) . "' /> <span class='spinner'></span>"; 2622 2622 } 2623 2623 ?> 2624 2624 2625 2625 <div class="imgedit-response" id="imgedit-response-<?php echo $attachment_id; ?>"></div>
Note: See TracChangeset
for help on using the changeset viewer.