Skip to:
Content

BuddyPress.org

Changeset 13486


Ignore:
Timestamp:
05/25/2023 05:43:04 PM (3 years ago)
Author:
imath
Message:

Add i18n context to BP Dynamic Members block filter strings

This context should help polyglots contributors to improve these filter
options translation.

Props lenasterg

See #8905
Closes https://github.com/buddypress/buddypress/pull/106

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-members/bp-members-blocks.php

    r13433 r13486  
    421421                'newest' => array(
    422422                        'class' => '',
    423                         'label' => __( 'Newest', 'buddypress' ),
     423                        'label' => _x( 'Newest', 'Members', 'buddypress' ),
    424424                ),
    425425                'active' => array(
    426426                        'class' => '',
    427                         'label' => __( 'Active', 'buddypress' ),
     427                        'label' => _x( 'Active', 'Members', 'buddypress' ),
    428428                ),
    429429        );
     
    432432                $item_options['popular'] = array(
    433433                        'class' => '',
    434                         'label' => __( 'Popular', 'buddypress' ),
     434                        'label' => _x( 'Popular', 'Members', 'buddypress' ),
    435435                );
    436436        }
Note: See TracChangeset for help on using the changeset viewer.