mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 07:40:07 +00:00
Replace echo __() with _e().
props marsjaninzmarsa. fixes #32239. git-svn-id: https://develop.svn.wordpress.org/trunk@32333 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -1116,12 +1116,12 @@ class WP_Posts_List_Table extends WP_List_Table {
|
||||
<em class="alignleft inline-edit-or">
|
||||
<?php
|
||||
/* translators: Between password field and private checkbox on post quick edit interface */
|
||||
echo __( '–OR–' );
|
||||
_e( '–OR–' );
|
||||
?>
|
||||
</em>
|
||||
<label class="alignleft inline-edit-private">
|
||||
<input type="checkbox" name="keep_private" value="private" />
|
||||
<span class="checkbox-title"><?php echo __( 'Private' ); ?></span>
|
||||
<span class="checkbox-title"><?php _e( 'Private' ); ?></span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user