Changeset 13185 for trunk/src/bp-groups/bp-groups-template.php
- Timestamp:
- 12/12/2021 03:14:40 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/bp-groups-template.php
r13184 r13185 2223 2223 $count = (int) $group->total_member_count; 2224 2224 $count_string = sprintf( 2225 / / translators: %s: total member count for the group.2225 /* translators: %s is the number of Group members */ 2226 2226 _n( '%s member', '%s members', $count, 'buddypress' ), 2227 2227 bp_core_number_format( $count ) … … 4080 4080 'type' => 'full', 4081 4081 'email' => $members_template->member->user_email, 4082 /* translators: %s: member name */ 4082 4083 'alt' => sprintf( __( 'Profile picture of %s', 'buddypress' ), $members_template->member->display_name ) 4083 4084 ) … … 4122 4123 'type' => 'thumb', 4123 4124 'email' => $members_template->member->user_email, 4125 /* translators: %s: member name */ 4124 4126 'alt' => sprintf( __( 'Profile picture of %s', 'buddypress' ), $members_template->member->display_name ) 4125 4127 ) … … 4166 4168 'type' => 'thumb', 4167 4169 'email' => $members_template->member->user_email, 4170 /* translators: %s: member name */ 4168 4171 'alt' => sprintf( __( 'Profile picture of %s', 'buddypress' ), $members_template->member->display_name ), 4169 4172 'width' => absint( $width ), … … 5777 5780 * @param string $value HTML markup for the user's avatar thumbnail. 5778 5781 */ 5779 echo apply_filters( 'bp_group_request_user_avatar_thumb', bp_core_fetch_avatar( array( 'item_id' => $requests_template->request->user_id, 'type' => 'thumb', 'alt' => sprintf( __( 'Profile picture of %s', 'buddypress' ), bp_core_get_user_displayname( $requests_template->request->user_id ) ) ) ) ); 5782 echo apply_filters( 5783 'bp_group_request_user_avatar_thumb', 5784 bp_core_fetch_avatar( 5785 array( 5786 'item_id' => $requests_template->request->user_id, 5787 'type' => 'thumb', 5788 /* translators: %s: member name */ 5789 'alt' => sprintf( __( 'Profile picture of %s', 'buddypress' ), bp_core_get_user_displayname( $requests_template->request->user_id ) ) 5790 ) 5791 ) 5792 ); 5780 5793 } 5781 5794
Note: See TracChangeset
for help on using the changeset viewer.