Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/28/2020 01:49:36 PM (6 years ago)
Author:
imath
Message:

BP Templates: add missing /* translators */ comments

See #8260

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/single.php

    r12082 r12595  
    3333                                <?php elseif ( bp_get_max_thread_recipients_to_list() <= bp_get_thread_recipients_count() ) : ?>
    3434
    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                                        ?>
    3639
    3740                                <?php else : ?>
    3841
    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                                        ?>
    4046
    4147                                <?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.