Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
11/19/2020 12:33:58 PM (4 years ago)
Author:
imath
Message:

i18n: improve translator comments for the "Active %s" string

Make sure the same translator comment is used for every occurrences of this string.

Fixes #8398

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/cover-image-header.php

    r12082 r12791  
    6161
    6262                <span class="highlight"><?php bp_group_type(); ?></span>
    63                 <span class="activity" data-livestamp="<?php bp_core_iso8601_date( bp_get_group_last_active( 0, array( 'relative' => false ) ) ); ?>"><?php printf( __( 'active %s', 'buddypress' ), bp_get_group_last_active() ); ?></span>
     63                <span class="activity" data-livestamp="<?php bp_core_iso8601_date( bp_get_group_last_active( 0, array( 'relative' => false ) ) ); ?>">
     64                    <?php
     65                    /* translators: %s: last activity timestamp (e.g. "Active 1 hour ago") */
     66                    printf( __( 'Active %s', 'buddypress' ), bp_get_group_last_active() );
     67                    ?>
     68                </span>
    6469
    6570                <?php bp_group_description(); ?>
Note: See TracChangeset for help on using the changeset viewer.