- Timestamp:
- 02/07/2023 05:08:26 PM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r54378 r55276 507 507 508 508 if ( $comment_types && is_array( $comment_types ) ) { 509 printf( '<label class="screen-reader-text" for="filter-by-comment-type">%s</label>', __( 'Filter by comment type' ) ); 509 printf( 510 '<label class="screen-reader-text" for="filter-by-comment-type">%s</label>', 511 /* translators: Hidden accessibility text. */ 512 __( 'Filter by comment type' ) 513 ); 510 514 511 515 echo '<select id="filter-by-comment-type" name="comment_type">'; … … 863 867 $output .= '</div>'; 864 868 865 $output .= '<button type="button" class="toggle-row"><span class="screen-reader-text">' . __( 'Show more details' ) . '</span></button>'; 869 $output .= '<button type="button" class="toggle-row"><span class="screen-reader-text">' . 870 /* translators: Hidden accessibility text. */ 871 __( 'Show more details' ) . 872 '</span></button>'; 866 873 867 874 return $output; … … 879 886 if ( $this->user_can ) { 880 887 ?> 881 <label class="screen-reader-text" for="cb-select-<?php echo $comment->comment_ID; ?>"><?php _e( 'Select comment' ); ?></label> 888 <label class="screen-reader-text" for="cb-select-<?php echo $comment->comment_ID; ?>"> 889 <?php 890 /* translators: Hidden accessibility text. */ 891 _e( 'Select comment' ); 892 ?> 893 </label> 882 894 <input id="cb-select-<?php echo $comment->comment_ID; ?>" type="checkbox" name="delete_comments[]" value="<?php echo $comment->comment_ID; ?>" /> 883 895 <?php
Note: See TracChangeset
for help on using the changeset viewer.