Skip to:
Content

BuddyPress.org

Ticket #4190: n_fix.patch

File n_fix.patch, 559 bytes (added by slaFFik, 12 years ago)

Fixes on more place with untranslatable _n()

  • bp-core-classes.php

     
    188188
    189189                if ( bp_is_active( 'groups' ) ) {
    190190                        $this->total_groups = BP_Groups_Member::total_group_count( $this->id );
    191                         $this->total_groups = sprintf( _n( '%d group', '%d groups', $this->total_groups ), $this->total_groups );
     191                        $this->total_groups = sprintf( _n( '%d group', '%d groups', $this->total_groups, 'buddypress' ), $this->total_groups );
    192192                }
    193193        }
    194194