Change Actions to Bulk Actions in edit-comments.php, props FFEMTcJ, fixes #8554
git-svn-id: http://svn.automattic.com/wordpress/trunk@10162 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4480bf0d2a
commit
3304493c7d
|
@ -234,7 +234,7 @@ $page_links = paginate_links( array(
|
||||||
|
|
||||||
<div class="alignleft actions">
|
<div class="alignleft actions">
|
||||||
<select name="action">
|
<select name="action">
|
||||||
<option value="-1" selected="selected"><?php _e('Actions') ?></option>
|
<option value="-1" selected="selected"><?php _e('Bulk Actions') ?></option>
|
||||||
<?php if ( empty($comment_status) || 'approved' == $comment_status ): ?>
|
<?php if ( empty($comment_status) || 'approved' == $comment_status ): ?>
|
||||||
<option value="unapprove"><?php _e('Unapprove'); ?></option>
|
<option value="unapprove"><?php _e('Unapprove'); ?></option>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
@ -320,7 +320,7 @@ if ( $page_links )
|
||||||
|
|
||||||
<div class="alignleft actions">
|
<div class="alignleft actions">
|
||||||
<select name="action2">
|
<select name="action2">
|
||||||
<option value="-1" selected="selected"><?php _e('Actions') ?></option>
|
<option value="-1" selected="selected"><?php _e('Bulk Actions') ?></option>
|
||||||
<?php if ( empty($comment_status) || 'approved' == $comment_status ): ?>
|
<?php if ( empty($comment_status) || 'approved' == $comment_status ): ?>
|
||||||
<option value="unapprove"><?php _e('Unapprove'); ?></option>
|
<option value="unapprove"><?php _e('Unapprove'); ?></option>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
Loading…
Reference in New Issue