Skip to:
Content

bbPress.org


Ignore:
Timestamp:
05/31/2011 12:13:42 AM (14 years ago)
Author:
johnjamesjacoby
Message:

Remove duplicate "replies" in forum description. Props Fartlek.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-includes/bbp-forum-template.php

    r3262 r3277  
    16841684            // Category
    16851685            if ( bbp_is_forum_category( $forum_id ) )
    1686                 $retstr = sprintf( __( 'This category contains %1$s and %2$s replies.', 'bbpress' ), $topic_count, $reply_count );
     1686                $retstr = sprintf( __( 'This category contains %1$s and %2$s.', 'bbpress' ), $topic_count, $reply_count );
    16871687
    16881688            // Forum
    16891689            else
    1690                 $retstr = sprintf( __( 'This forum contains %1$s and %2$s replies.',    'bbpress' ), $topic_count, $reply_count );
     1690                $retstr = sprintf( __( 'This forum contains %1$s and %2$s.',    'bbpress' ), $topic_count, $reply_count );
    16911691        }
    16921692
Note: See TracChangeset for help on using the changeset viewer.