mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-16 23:00:21 +00:00
change "Awaiting Moderation" to "Pending" fixes #8184
git-svn-id: https://develop.svn.wordpress.org/trunk@9656 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -251,7 +251,7 @@ function wp_dashboard_right_now() {
|
||||
if ( current_user_can( 'moderate_comments' ) )
|
||||
$num = "<a href='edit-comments.php?comment_status=moderated'>$num</a>";
|
||||
echo '<td class="b b-waiting">'.$num.'</td>';
|
||||
echo '<td class="last t waiting">' . __ngettext( 'Awaiting Moderation', 'Awaiting Moderation', $num_comm['awaiting_moderation'] ) . '</td>';
|
||||
echo '<td class="last t waiting">' . __ngettext( 'Pending', 'Pending', $num_comm['awaiting_moderation'] ) . '</td>';
|
||||
|
||||
echo "</tr>";
|
||||
do_action('right_now_table_end');
|
||||
@@ -464,7 +464,7 @@ function _wp_dashboard_recent_comments_row( &$comment, $show_date = true ) {
|
||||
<?php if ( !$comment->comment_type || 'comment' == $comment->comment_type ) : ?>
|
||||
|
||||
<?php echo get_avatar( $comment, 50 ); ?>
|
||||
<h4 class="comment-meta"><?php printf( __( 'From %1$s on %2$s%3$s' ), '<cite class="comment-author">' . get_comment_author_link() . '</cite>', $comment_post_link, ' <span class="approve">' . __( '[Awaiting Moderation]' ) . '</span>' ); ?></h4>
|
||||
<h4 class="comment-meta"><?php printf( __( 'From %1$s on %2$s%3$s' ), '<cite class="comment-author">' . get_comment_author_link() . '</cite>', $comment_post_link, ' <span class="approve">' . __( '[Pending]' ) . '</span>' ); ?></h4>
|
||||
|
||||
<?php
|
||||
else :
|
||||
|
||||
Reference in New Issue
Block a user