Skip to:
Content

BuddyPress.org


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

BP xProfile: add missing /* translators */ comments

Fixes #8260

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-xprofile/bp-xprofile-template.php

    r12555 r12596  
    11651165                         * @param string $value Formatted last updated indicator string.
    11661166                         */
    1167                         return apply_filters( 'bp_get_profile_last_updated', sprintf( __( 'Profile updated %s', 'buddypress' ), bp_core_time_since( strtotime( $last_updated ) ) ) );
     1167                        return apply_filters(
     1168                                'bp_get_profile_last_updated',
     1169                                /* translators: %s: last activity timestamp (e.g. "active 1 hour ago") */
     1170                                sprintf( __( 'Profile updated %s', 'buddypress' ), bp_core_time_since( strtotime( $last_updated ) ) )
     1171                        );
    11681172                }
    11691173
Note: See TracChangeset for help on using the changeset viewer.