Changeset 4676 for trunk/bp-friends/bp-friends-loader.php
- Timestamp:
- 07/17/2011 11:57:04 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-friends/bp-friends-loader.php
r4647 r4676 95 95 // Add 'Friends' to the main navigation 96 96 $main_nav = array( 97 'name' => sprintf( __( 'Friends <span> (%d)</span>', 'buddypress' ), friends_get_total_friend_count() ),97 'name' => sprintf( __( 'Friends <span>%d</span>', 'buddypress' ), friends_get_total_friend_count() ), 98 98 'slug' => $this->slug, 99 99 'position' => 60, … … 149 149 // Pending friend requests 150 150 if ( $count = count( friends_get_friendship_request_user_ids( $bp->loggedin_user->id ) ) ) { 151 $title = sprintf( __( 'Friends <s trong>(%s)</strong>', 'buddypress' ), $count );152 $pending = sprintf( __( 'Pending Requests <s trong>(%s)</strong>', 'buddypress' ), $count );151 $title = sprintf( __( 'Friends <span>%s</span>', 'buddypress' ), $count ); 152 $pending = sprintf( __( 'Pending Requests <span>%s</span>', 'buddypress' ), $count ); 153 153 } else { 154 154 $title = __( 'Friends', 'buddypress' );
Note: See TracChangeset
for help on using the changeset viewer.