From af04dea7db1da7f3bafa5fbe4c2b1134b7e8b11d Mon Sep 17 00:00:00 2001 From: azaozz Date: Mon, 2 Feb 2009 00:00:11 +0000 Subject: [PATCH] Fix singular/plural translation collision, props nbachiyski and Kuba Zwolinski, fixes #8154 git-svn-id: http://svn.automattic.com/wordpress/trunk@10478 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 2869b5ca61..c8948a1ab8 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -3237,7 +3237,7 @@ function _post_states($post) { if ( 'draft' == $post->post_status && 'draft' != $post_status ) $post_states[] = __('Draft'); if ( 'pending' == $post->post_status && 'pending' != $post_status ) - $post_states[] = __('Pending'); + $post_states[] = _c('Pending|post state'); if ( ! empty($post_states) ) { $state_count = count($post_states);