Remove "Show" prefix from filter dropdowns, see #26743.
git-svn-id: https://develop.svn.wordpress.org/trunk@27626 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
0b74a67262
commit
9e92a95ec5
@ -233,7 +233,7 @@ class WP_Comments_List_Table extends WP_List_Table {
|
|||||||
if ( 'top' == $which ) {
|
if ( 'top' == $which ) {
|
||||||
?>
|
?>
|
||||||
<select name="comment_type">
|
<select name="comment_type">
|
||||||
<option value=""><?php _e( 'Show all comment types' ); ?></option>
|
<option value=""><?php _e( 'All comment types' ); ?></option>
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* Filter the comment types dropdown menu.
|
* Filter the comment types dropdown menu.
|
||||||
|
@ -398,7 +398,7 @@ class WP_List_Table {
|
|||||||
$m = isset( $_GET['m'] ) ? (int) $_GET['m'] : 0;
|
$m = isset( $_GET['m'] ) ? (int) $_GET['m'] : 0;
|
||||||
?>
|
?>
|
||||||
<select name='m'>
|
<select name='m'>
|
||||||
<option<?php selected( $m, 0 ); ?> value='0'><?php _e( 'Show all dates' ); ?></option>
|
<option<?php selected( $m, 0 ); ?> value='0'><?php _e( 'All dates' ); ?></option>
|
||||||
<?php
|
<?php
|
||||||
foreach ( $months as $arc_row ) {
|
foreach ( $months as $arc_row ) {
|
||||||
if ( 0 == $arc_row->year )
|
if ( 0 == $arc_row->year )
|
||||||
|
@ -2357,7 +2357,7 @@ $selected_month = isset( $_GET['m'] ) ? $_GET['m'] : 0;
|
|||||||
|
|
||||||
if ( $month_count && !( 1 == $month_count && 0 == $arc_result[0]->mmonth ) ) { ?>
|
if ( $month_count && !( 1 == $month_count && 0 == $arc_result[0]->mmonth ) ) { ?>
|
||||||
<select name='m'>
|
<select name='m'>
|
||||||
<option<?php selected( $selected_month, 0 ); ?> value='0'><?php _e('Show all dates'); ?></option>
|
<option<?php selected( $selected_month, 0 ); ?> value='0'><?php _e( 'All dates' ); ?></option>
|
||||||
<?php
|
<?php
|
||||||
foreach ($arc_result as $arc_row) {
|
foreach ($arc_result as $arc_row) {
|
||||||
if ( $arc_row->yyear == 0 )
|
if ( $arc_row->yyear == 0 )
|
||||||
|
Loading…
Reference in New Issue
Block a user