i18n fix from nbachiyski. fixes #1874

git-svn-id: https://develop.svn.wordpress.org/trunk@3125 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2005-11-17 03:01:55 +00:00
parent 3c5bb8ee03
commit 6fcabdfba3

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>';
}