Use %s, not %d, for comment numbers in admin bar sprintf(). fixes #19104

git-svn-id: https://develop.svn.wordpress.org/trunk@19103 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2011-11-01 20:12:42 +00:00
parent c8ae4ba953
commit 4b4c1bed52
1 changed files with 1 additions and 1 deletions

View File

@ -551,7 +551,7 @@ function wp_admin_bar_comments_menu( $wp_admin_bar ) {
$icon .= "</div>";
if ( $awaiting_mod )
$title = sprintf( _n('%d Comment', '%d Comments', $awaiting_mod ), number_format_i18n( $awaiting_mod ) );
$title = sprintf( _n('%s Comment', '%s Comments', $awaiting_mod ), number_format_i18n( $awaiting_mod ) );
else
$title = __('Comments');