Make WordPress Core

Changeset 27626


Ignore:
Timestamp:
03/19/2014 10:12:13 PM (11 years ago)
Author:
ocean90
Message:

Remove "Show" prefix from filter dropdowns, see #26743.

Location:
trunk/src/wp-admin/includes
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-comments-list-table.php

    r27036 r27626  
    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                /**
  • trunk/src/wp-admin/includes/class-wp-list-table.php

    r27502 r27626  
    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 ) {
  • trunk/src/wp-admin/includes/media.php

    r27501 r27626  
    903903        $name = esc_attr($name);
    904904        $out[] = "<input type='radio' name='attachments[{$post->ID}][align]' id='image-align-{$name}-{$post->ID}' value='$name'".
    905             ( $checked == $name ? " checked='checked'" : "" ) .
     905            ( $checked == $name ? " checked='checked'" : "" ) .
    906906            " /><label for='image-align-{$name}-{$post->ID}' class='align image-align-{$name}-label'>$label</label>";
    907907    }
     
    15711571    $defaults = array(
    15721572        'input'         => 'text',
    1573         'required'      => false,
    1574         'value'         => '',
    1575         'extra_rows'    => array(),
    1576         'show_in_edit'  => true,
    1577         'show_in_modal' => true,
     1573        'required'      => false,
     1574        'value'         => '',
     1575        'extra_rows'    => array(),
     1576        'show_in_edit'  => true,
     1577        'show_in_modal' => true,
    15781578    );
    15791579
     
    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) {
     
    25482548    ?>
    25492549    <p class="upload-html-bypass hide-if-no-js">
    2550        <?php _e('You are using the browser&#8217;s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. <a href="#">Switch to the multi-file uploader</a>.'); ?>
     2550       <?php _e('You are using the browser&#8217;s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. <a href="#">Switch to the multi-file uploader</a>.'); ?>
    25512551    </p>
    25522552    <?php
     
    26212621            $image_edit_button = "<input type='button' id='imgedit-open-btn-$post->ID' onclick='imageEdit.open( $post->ID, \"$nonce\" )' class='button' value='" . esc_attr__( 'Edit Image' ) . "' /> <span class='spinner'></span>";
    26222622        }
    2623     ?>
     2623    ?>
    26242624
    26252625        <div class="imgedit-response" id="imgedit-response-<?php echo $attachment_id; ?>"></div>
Note: See TracChangeset for help on using the changeset viewer.