diff --git a/src/wp-admin/includes/class-wp-comments-list-table.php b/src/wp-admin/includes/class-wp-comments-list-table.php
index 91ff88ec8d..d5ba87671b 100644
a
|
b
|
class WP_Comments_List_Table extends WP_List_Table { |
378 | 378 | <?php |
379 | 379 | if ( 'top' === $which ) { |
380 | 380 | ?> |
381 | | <label class="screen-reader-text" for="filter-by-comment-type"><?php _e( 'Filter by comment type' ); ?></label> |
| 381 | <label class="screen-reader-text" for="filter-by-comment-type"><?php _e( 'Filter by Comment Type' ); ?></label> |
382 | 382 | <select id="filter-by-comment-type" name="comment_type"> |
383 | | <option value=""><?php _e( 'All comment types' ); ?></option> |
| 383 | <option value=""><?php _e( 'All Comment Types' ); ?></option> |
384 | 384 | <?php |
385 | 385 | /** |
386 | 386 | * Filters the comment types dropdown menu. |
diff --git a/src/wp-admin/includes/class-wp-list-table.php b/src/wp-admin/includes/class-wp-list-table.php
index c423eebbca..e1ad7152fe 100644
a
|
b
|
class WP_List_Table { |
593 | 593 | |
594 | 594 | $m = isset( $_GET['m'] ) ? (int) $_GET['m'] : 0; |
595 | 595 | ?> |
596 | | <label for="filter-by-date" class="screen-reader-text"><?php _e( 'Filter by date' ); ?></label> |
| 596 | <label for="filter-by-date" class="screen-reader-text"><?php _e( 'Filter by Date' ); ?></label> |
597 | 597 | <select name="m" id="filter-by-date"> |
598 | | <option<?php selected( $m, 0 ); ?> value="0"><?php _e( 'All dates' ); ?></option> |
| 598 | <option<?php selected( $m, 0 ); ?> value="0"><?php _e( 'All Dates' ); ?></option> |
599 | 599 | <?php |
600 | 600 | foreach ( $months as $arc_row ) { |
601 | 601 | if ( 0 == $arc_row->year ) { |
diff --git a/src/wp-admin/includes/class-wp-media-list-table.php b/src/wp-admin/includes/class-wp-media-list-table.php
index cc8940a6cb..1d86c7c05a 100644
a
|
b
|
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 a/src/wp-admin/includes/class-wp-users-list-table.php b/src/wp-admin/includes/class-wp-users-list-table.php
index 505aa9a435..01a87e75e4 100644
a
|
b
|
class WP_Users_List_Table extends WP_List_Table { |
291 | 291 | ?> |
292 | 292 | <div class="alignleft actions"> |
293 | 293 | <?php if ( current_user_can( 'promote_users' ) && $this->has_items() ) : ?> |
294 | | <label class="screen-reader-text" for="<?php echo $id; ?>"><?php _e( 'Change role to…' ); ?></label> |
| 294 | <label class="screen-reader-text" for="<?php echo $id; ?>"><?php _e( 'Change Role to…' ); ?></label> |
295 | 295 | <select name="<?php echo $id; ?>" id="<?php echo $id; ?>"> |
296 | | <option value=""><?php _e( 'Change role to…' ); ?></option> |
| 296 | <option value=""><?php _e( 'Change Role to…' ); ?></option> |
297 | 297 | <?php wp_dropdown_roles(); ?> |
298 | 298 | </select> |
299 | 299 | <?php |
diff --git a/src/wp-admin/includes/media.php b/src/wp-admin/includes/media.php
index eba2c8b8db..7786516686 100644
a
|
b
|
function media_upload_library_form( $errors ) { |
2804 | 2804 | if ( $month_count && ! ( 1 == $month_count && 0 == $arc_result[0]->mmonth ) ) { |
2805 | 2805 | ?> |
2806 | 2806 | <select name='m'> |
2807 | | <option<?php selected( $selected_month, 0 ); ?> value='0'><?php _e( 'All dates' ); ?></option> |
| 2807 | <option<?php selected( $selected_month, 0 ); ?> value='0'><?php _e( 'All Dates' ); ?></option> |
2808 | 2808 | <?php |
2809 | 2809 | |
2810 | 2810 | foreach ( $arc_result as $arc_row ) { |
diff --git a/src/wp-includes/media.php b/src/wp-includes/media.php
index fb5db5bb03..7d52bc6035 100644
a
|
b
|
function wp_enqueue_media( $args = array() ) { |
3897 | 3897 | 'createNewPlaylist' => __( 'Create a new playlist' ), |
3898 | 3898 | 'createNewVideoPlaylist' => __( 'Create a new video playlist' ), |
3899 | 3899 | 'returnToLibrary' => __( '← Return to library' ), |
3900 | | 'allMediaItems' => __( 'All media items' ), |
3901 | | 'allDates' => __( 'All dates' ), |
| 3900 | 'allMediaItems' => __( 'All Media Items' ), |
| 3901 | 'allDates' => __( 'All Dates' ), |
3902 | 3902 | 'noItemsFound' => __( 'No items found.' ), |
3903 | 3903 | 'insertIntoPost' => $post_type_object->labels->insert_into_item, |
3904 | 3904 | 'unattached' => __( 'Unattached' ), |