From 3f81338a73bc4c8af7ab558ba2cb73a0c2ae3f59 Mon Sep 17 00:00:00 2001 From: markjaquith Date: Tue, 18 Mar 2008 23:00:45 +0000 Subject: [PATCH] There ARE 2 posts pending your review. props mdawaffe. see #6290 git-svn-id: http://svn.automattic.com/wordpress/trunk@7390 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = ''; }