diff --git a/wp-admin/index.php b/wp-admin/index.php index 4d70b4fe60..887b6763cc 100644 --- a/wp-admin/index.php +++ b/wp-admin/index.php @@ -75,7 +75,7 @@ if ( $can_edit_posts && !empty($num_posts->future) ) { } if ( current_user_can('publish_posts') && !empty($num_posts->pending) ) { - $pending_text = sprintf( __ngettext( 'There is %2$s post pending your review.', 'There is %2$s posts pending your review.', $num_posts->pending ), 'edit.php?post_status=pending', number_format_i18n( $num_posts->pending ) ); + $pending_text = sprintf( __ngettext( 'There is %2$s post pending your review.', 'There are %2$s posts pending your review.', $num_posts->pending ), 'edit.php?post_status=pending', number_format_i18n( $num_posts->pending ) ); } else { $pending_text = ''; }