diff --git src/wp-includes/category-template.php src/wp-includes/category-template.php
index 8bba6b4..32cd3a6 100644
|
|
function wp_generate_tag_cloud( $tags, $args = '' ) { |
836 | 836 | } elseif ( ! empty( $args['topic_count_text_callback'] ) ) { |
837 | 837 | // Look for the alternative callback style. Ignore the previous default. |
838 | 838 | if ( $args['topic_count_text_callback'] === 'default_topic_count_text' ) { |
839 | | $translate_nooped_plural = _n_noop( '%s topic', '%s topics' ); |
| 839 | $translate_nooped_plural = _n_noop( '%s post', '%s posts' ); |
840 | 840 | } else { |
841 | 841 | $translate_nooped_plural = false; |
842 | 842 | } |
… |
… |
function wp_generate_tag_cloud( $tags, $args = '' ) { |
845 | 845 | $translate_nooped_plural = _n_noop( $args['single_text'], $args['multiple_text'] ); |
846 | 846 | } else { |
847 | 847 | // This is the default for when no callback, plural, or argument is passed in. |
848 | | $translate_nooped_plural = _n_noop( '%s topic', '%s topics' ); |
| 848 | $translate_nooped_plural = _n_noop( '%s post', '%s posts' ); |
849 | 849 | } |
850 | 850 | |
851 | 851 | /** |