From e576c9a998ffe17629f34da1e1889c4ea1a8cd8e Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Sun, 31 Dec 2006 06:11:24 +0000 Subject: [PATCH] __ngettext() correction by nbachiyski. fixes #3508 git-svn-id: https://develop.svn.wordpress.org/trunk@4669 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 3b18d4ee80..892009efa7 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; }