diff --git a/wp-admin/edit-comments.php b/wp-admin/edit-comments.php index 0884094fba..83603f06ae 100644 --- a/wp-admin/edit-comments.php +++ b/wp-admin/edit-comments.php @@ -120,7 +120,7 @@ $num_comments = wp_count_comments(); //, number_format_i18n($num_comments->moderated) ), "" . number_format_i18n($num_comments->moderated) . ""), //, number_format_i18n($num_comments->spam) ), "" . number_format_i18n($num_comments->spam) . "") $stati = array( - 'moderated' => __ngettext_noop('Awaiting Moderation (%s)', 'Awaiting Moderation (%s)'), + 'moderated' => __ngettext_noop('Pending (%s)', 'Pending (%s)'), 'approved' => __ngettext_noop('Approved', 'Approved'), // singular not used 'spam' => __ngettext_noop('Spam (%s)', 'Spam (%s)') ); diff --git a/wp-admin/edit-form-comment.php b/wp-admin/edit-form-comment.php index 6832a73ae2..b588fc9893 100644 --- a/wp-admin/edit-form-comment.php +++ b/wp-admin/edit-form-comment.php @@ -48,7 +48,7 @@ $url = attribute_escape( $comment->comment_author_url );

-
+
diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index 4f119807e8..b7c22b7206 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -251,7 +251,7 @@ function wp_dashboard_right_now() { if ( current_user_can( 'moderate_comments' ) ) $num = "$num"; echo ''.$num.''; - echo '' . __ngettext( 'Awaiting Moderation', 'Awaiting Moderation', $num_comm['awaiting_moderation'] ) . ''; + echo '' . __ngettext( 'Pending', 'Pending', $num_comm['awaiting_moderation'] ) . ''; echo ""; do_action('right_now_table_end'); @@ -464,7 +464,7 @@ function _wp_dashboard_recent_comments_row( &$comment, $show_date = true ) { comment_type || 'comment' == $comment->comment_type ) : ?> -

' . get_comment_author_link() . '', $comment_post_link, ' ' . __( '[Awaiting Moderation]' ) . '' ); ?>

+

' . get_comment_author_link() . '', $comment_post_link, ' ' . __( '[Pending]' ) . '' ); ?>