Skip to content

Commit b98c14c

Browse files
committed
Improved translation of the comment count in theme-compat. Props zeo.
git-svn-id: https://develop.svn.wordpress.org/trunk@14983 602fd350-edb4-49c9-b593-d223f7449a82
1 parent f32d985 commit b98c14c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

wp-includes/theme-compat/comments.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
<!-- You can start editing here. -->
2424

2525
<?php if ( have_comments() ) : ?>
26-
<h3 id="comments"><?php comments_number(__('No Responses'), __('One Response'), __('% Responses'));?> <?php printf(__('to &#8220;%s&#8221;'), the_title('', '', false)); ?></h3>
26+
<h3 id="comments"><?php printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number() ),
27+
number_format_i18n( get_comments_number() ), '&#8220;' . get_the_title() . '&#8221;' ); ?></h3>
2728

2829
<div class="navigation">
2930
<div class="alignleft"><?php previous_comments_link() ?></div>

0 commit comments

Comments
 (0)