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/group-header.php

    r12082 r12791  
    7070<div id="item-header-content">
    7171    <span class="highlight"><?php bp_group_type(); ?></span>
    72     <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>
     72    <span class="activity" data-livestamp="<?php bp_core_iso8601_date( bp_get_group_last_active( 0, array( 'relative' => false ) ) ); ?>">
     73        <?php
     74        /* translators: %s: last activity timestamp (e.g. "Active 1 hour ago") */
     75        printf( __( 'Active %s', 'buddypress' ), bp_get_group_last_active() );
     76        ?>
     77    </span>
    7378
    7479    <?php
Note: See TracChangeset for help on using the changeset viewer.