I18N: After [34424], replace the placeholder with comments count after translate_nooped_plural() runs, not before.

Props hnle.
Fixes #34680.

git-svn-id: https://develop.svn.wordpress.org/trunk@35670 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2015-11-18 18:03:47 +00:00
parent 6ad74f666e
commit 20c9a88a18

View File

@ -204,46 +204,40 @@ class WP_Comments_List_Table extends WP_List_Table {
//, number_format_i18n($num_comments->moderated) ), "<span class='comment-count'>" . number_format_i18n($num_comments->moderated) . "</span>"),
//, number_format_i18n($num_comments->spam) ), "<span class='spam-comment-count'>" . number_format_i18n($num_comments->spam) . "</span>")
$stati = array(
'all' => str_replace( '%s', '<span class="all-count">%s</span>',
/* translators: %s: all comments count */
_nx_noop(
'all' => _nx_noop(
'All <span class="count">(%s)</span>',
'All <span class="count">(%s)</span>',
'comments'
)
), // singular not used
'moderated' => str_replace( '%s', '<span class="pending-count">%s</span>',
/* translators: %s: pending comments count */
_nx_noop(
'moderated' => _nx_noop(
'Pending <span class="count">(%s)</span>',
'Pending <span class="count">(%s)</span>',
'comments'
)
),
'approved' => str_replace( '%s', '<span class="approved-count">%s</span>',
/* translators: %s: approved comments count */
_nx_noop(
'approved' => _nx_noop(
'Approved <span class="count">(%s)</span>',
'Approved <span class="count">(%s)</span>',
'comments'
)
),
'spam' => str_replace( '%s', '<span class="spam-count">%s</span>',
/* translators: %s: spam comments count */
_nx_noop(
'spam' => _nx_noop(
'Spam <span class="count">(%s)</span>',
'Spam <span class="count">(%s)</span>',
'comments'
)
),
'trash' => str_replace( '%s', '<span class="trash-count">%s</span>',
/* translators: %s: trashed comments count */
_nx_noop(
'trash' => _nx_noop(
'Trash <span class="count">(%s)</span>',
'Trash <span class="count">(%s)</span>',
'comments'
)
)
);
if ( !EMPTY_TRASH_DAYS )
@ -268,7 +262,10 @@ class WP_Comments_List_Table extends WP_List_Table {
*/
$status_links[ $status ] = "<a href='$link'$class>" . sprintf(
translate_nooped_plural( $label, $num_comments->$status ),
sprintf( '<span class="%s-count">%s</span>',
$status,
number_format_i18n( $num_comments->$status )
)
) . '</a>';
}