- Timestamp:
- 03/28/2020 01:49:36 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/single.php
r12082 r12595 33 33 <?php elseif ( bp_get_max_thread_recipients_to_list() <= bp_get_thread_recipients_count() ) : ?> 34 34 35 <?php printf( __( 'Conversation between %s recipients.', 'buddypress' ), number_format_i18n( bp_get_thread_recipients_count() ) ); ?> 35 <?php 36 /* translators: %s: message recipients count */ 37 printf( __( 'Conversation between %s recipients.', 'buddypress' ), number_format_i18n( bp_get_thread_recipients_count() ) ); 38 ?> 36 39 37 40 <?php else : ?> 38 41 39 <?php printf( __( 'Conversation between %s.', 'buddypress' ), bp_get_thread_recipients_list() ); ?> 42 <?php 43 /* translators: %s: message recipients list */ 44 printf( __( 'Conversation between %s.', 'buddypress' ), bp_get_thread_recipients_list() ); 45 ?> 40 46 41 47 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.