Make WordPress Core


Ignore:
Timestamp:
05/03/2015 04:17:06 PM (11 years ago)
Author:
SergeyBiryukov
Message:

Replace echo __() with _e().

props marsjaninzmarsa.
fixes #32239.

File:
1 edited

Legend:

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

    r32329 r32333  
    11171117                                        <?php
    11181118                                        /* translators: Between password field and private checkbox on post quick edit interface */
    1119                                         echo __( '&ndash;OR&ndash;' );
     1119                                        _e( '&ndash;OR&ndash;' );
    11201120                                        ?>
    11211121                                </em>
    11221122                                <label class="alignleft inline-edit-private">
    11231123                                        <input type="checkbox" name="keep_private" value="private" />
    1124                                         <span class="checkbox-title"><?php echo __( 'Private' ); ?></span>
     1124                                        <span class="checkbox-title"><?php _e( 'Private' ); ?></span>
    11251125                                </label>
    11261126                        </div>
Note: See TracChangeset for help on using the changeset viewer.