Make WordPress Core

Ticket #26743: 26743.2.patch

File 26743.2.patch, 1.7 KB (added by ocean90, 11 years ago)
  • src/wp-admin/includes/class-wp-comments-list-table.php

     
    233233                if ( 'top' == $which ) {
    234234?>
    235235                        <select name="comment_type">
    236                                 <option value=""><?php _e( 'Show all comment types' ); ?></option>
     236                                <option value=""><?php _e( 'All comment types' ); ?></option>
    237237<?php
    238238                                /**
    239239                                 * Filter the comment types dropdown menu.
  • src/wp-admin/includes/class-wp-list-table.php

     
    398398                $m = isset( $_GET['m'] ) ? (int) $_GET['m'] : 0;
    399399?>
    400400                <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>
    402402<?php
    403403                foreach ( $months as $arc_row ) {
    404404                        if ( 0 == $arc_row->year )
  • src/wp-admin/includes/media.php

     
    23572357
    23582358if ( $month_count && !( 1 == $month_count && 0 == $arc_result[0]->mmonth ) ) { ?>
    23592359<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>
    23612361<?php
    23622362foreach ($arc_result as $arc_row) {
    23632363        if ( $arc_row->yyear == 0 )