From 504cf9100c4885ecd005457838d36b8a56be68c5 Mon Sep 17 00:00:00 2001 From: markjaquith Date: Sun, 31 Dec 2006 06:11:24 +0000 Subject: [PATCH] __ngettext() correction by nbachiyski. fixes #3508 git-svn-id: http://svn.automattic.com/wordpress/trunk@4669 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/formatting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 3b18d4ee8..892009efa 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -754,7 +754,7 @@ function human_time_diff( $from, $to = '' ) { if ($days <= 1) { $days = 1; } - $since = sprintf(__('%s day', '%s days', $days), $days); + $since = sprintf(__ngettext('%s day', '%s days', $days), $days); } return $since; }