i18n fix from nbachiyski. fixes #1874

git-svn-id: http://svn.automattic.com/wordpress/trunk@3125 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2005-11-17 03:01:55 +00:00
parent 2428727fa3
commit a370a5d002
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ function comments_popup_link($zero='No Comments', $one='1 Comment', $more='% Com
if (!empty($CSSclass)) {
echo ' class="'.$CSSclass.'"';
}
echo ' title="' . __( sprintf('Comment on %s', $post->post_title) ) .'">';
echo ' title="' . sprintf( __('Comment on %s'), $post->post_title ) .'">';
comments_number($zero, $one, $more, $number);
echo '</a>';
}