From b93e939f865339dd06016ebe1409215814ccd74f Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 13 Oct 2008 21:08:34 +0000 Subject: [PATCH] Translation fixes for the comments table from msi08. fixes #7583 git-svn-id: https://develop.svn.wordpress.org/trunk@9132 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 19deda1dd5..ef7261883b 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -2006,7 +2006,7 @@ function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true break; case 'response': if ( 'single' !== $mode ) - echo ""$post_link" " . sprintf('(%s comments)', $post->comment_count) . '
' . get_the_time(__('Y/m/d \a\t g:ia')) . ''; + echo ""$post_link" " . sprintf ( __ngettext('(%s comment)', '(%s comments)', $post->comment_count), $post->comment_count ) . '
' . get_the_time(__('Y/m/d \a\t g:ia')) . ''; } } echo "\n";