diff --git src/wp-admin/includes/class-wp-comments-list-table.php src/wp-admin/includes/class-wp-comments-list-table.php
index fa41a72..a04fd04 100644
|
|
|
class WP_Comments_List_Table extends WP_List_Table {
|
| 324 | 324 | <?php |
| 325 | 325 | if ( 'top' === $which ) { |
| 326 | 326 | ?> |
| 327 | | <label class="screen-reader-text" for="filter-by-comment-type"><?php _e( 'Filter by comment type' ); ?></label> |
| | 327 | <label class="screen-reader-text" for="filter-by-comment-type"><?php _e( 'Filter by Comment Type' ); ?></label> |
| 328 | 328 | <select id="filter-by-comment-type" name="comment_type"> |
| 329 | | <option value=""><?php _e( 'All comment types' ); ?></option> |
| | 329 | <option value=""><?php _e( 'All Comment Types' ); ?></option> |
| 330 | 330 | <?php |
| 331 | 331 | /** |
| 332 | 332 | * Filters the comment types dropdown menu. |
diff --git src/wp-admin/includes/class-wp-list-table.php src/wp-admin/includes/class-wp-list-table.php
index dedfec9..585718f 100644
|
|
|
class WP_List_Table {
|
| 583 | 583 | |
| 584 | 584 | $m = isset( $_GET['m'] ) ? (int) $_GET['m'] : 0; |
| 585 | 585 | ?> |
| 586 | | <label for="filter-by-date" class="screen-reader-text"><?php _e( 'Filter by date' ); ?></label> |
| | 586 | <label for="filter-by-date" class="screen-reader-text"><?php _e( 'Filter by Date' ); ?></label> |
| 587 | 587 | <select name="m" id="filter-by-date"> |
| 588 | | <option<?php selected( $m, 0 ); ?> value="0"><?php _e( 'All dates' ); ?></option> |
| | 588 | <option<?php selected( $m, 0 ); ?> value="0"><?php _e( 'All Dates' ); ?></option> |
| 589 | 589 | <?php |
| 590 | 590 | foreach ( $months as $arc_row ) { |
| 591 | 591 | if ( 0 == $arc_row->year ) |
diff --git src/wp-admin/includes/class-wp-media-list-table.php src/wp-admin/includes/class-wp-media-list-table.php
index 002c79e..5b77d74 100644
|
|
|
class WP_Media_List_Table extends WP_List_Table {
|
| 99 | 99 | $type_links['all'] = sprintf( |
| 100 | 100 | '<option value=""%s>%s</option>', |
| 101 | 101 | selected( $filter, true, false ), |
| 102 | | __( 'All media items' ) |
| | 102 | __( 'All Media Items' ) |
| 103 | 103 | ); |
| 104 | 104 | |
| 105 | 105 | foreach ( $post_mime_types as $mime_type => $label ) { |
diff --git src/wp-admin/includes/class-wp-users-list-table.php src/wp-admin/includes/class-wp-users-list-table.php
index 4ba5eef..27a6123 100644
|
|
|
class WP_Users_List_Table extends WP_List_Table {
|
| 262 | 262 | ?> |
| 263 | 263 | <div class="alignleft actions"> |
| 264 | 264 | <?php if ( current_user_can( 'promote_users' ) && $this->has_items() ) : ?> |
| 265 | | <label class="screen-reader-text" for="<?php echo $id ?>"><?php _e( 'Change role to…' ) ?></label> |
| | 265 | <label class="screen-reader-text" for="<?php echo $id ?>"><?php _e( 'Change Role to…' ) ?></label> |
| 266 | 266 | <select name="<?php echo $id ?>" id="<?php echo $id ?>"> |
| 267 | | <option value=""><?php _e( 'Change role to…' ) ?></option> |
| | 267 | <option value=""><?php _e( 'Change Role to…' ) ?></option> |
| 268 | 268 | <?php wp_dropdown_roles(); ?> |
| 269 | 269 | </select> |
| 270 | 270 | <?php |
diff --git src/wp-admin/includes/media.php src/wp-admin/includes/media.php
index 4a2e7c2..18b4cde 100644
|
|
|
$selected_month = isset( $_GET['m'] ) ? $_GET['m'] : 0;
|
| 2473 | 2473 | |
| 2474 | 2474 | if ( $month_count && !( 1 == $month_count && 0 == $arc_result[0]->mmonth ) ) { ?> |
| 2475 | 2475 | <select name='m'> |
| 2476 | | <option<?php selected( $selected_month, 0 ); ?> value='0'><?php _e( 'All dates' ); ?></option> |
| | 2476 | <option<?php selected( $selected_month, 0 ); ?> value='0'><?php _e( 'All Dates' ); ?></option> |
| 2477 | 2477 | <?php |
| 2478 | 2478 | foreach ($arc_result as $arc_row) { |
| 2479 | 2479 | if ( $arc_row->yyear == 0 ) |
diff --git src/wp-includes/media.php src/wp-includes/media.php
index a723929..1654339 100644
|
|
|
function wp_enqueue_media( $args = array() ) {
|
| 3508 | 3508 | 'createNewPlaylist' => __( 'Create a new playlist' ), |
| 3509 | 3509 | 'createNewVideoPlaylist' => __( 'Create a new video playlist' ), |
| 3510 | 3510 | 'returnToLibrary' => __( '← Return to library' ), |
| 3511 | | 'allMediaItems' => __( 'All media items' ), |
| 3512 | | 'allDates' => __( 'All dates' ), |
| | 3511 | 'allMediaItems' => __( 'All Media Items' ), |
| | 3512 | 'allDates' => __( 'All Dates' ), |
| 3513 | 3513 | 'noItemsFound' => __( 'No items found.' ), |
| 3514 | 3514 | 'insertIntoPost' => $post_type_object->labels->insert_into_item, |
| 3515 | 3515 | 'unattached' => __( 'Unattached' ), |