From dbdeed203843adfafef91c9cff299e91939f4278 Mon Sep 17 00:00:00 2001 From: Andrew Ozz 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: https://develop.svn.wordpress.org/trunk@10478 602fd350-edb4-49c9-b593-d223f7449a82 --- 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);