Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/14/2014 01:23:47 PM (12 years ago)
Author:
boonebgorges
Message:

Add 'buddypress' textdomain to strings in bp-members

Fixes #5534

Props netweb

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-members/admin/bp-members-classes.php

    r8217 r8272  
    146146
    147147                if ( current_user_can( 'delete_users' ) ) {
    148                         $actions['delete'] = __( 'Delete' );
     148                        $actions['delete'] = __( 'Delete', 'buddypress' );
    149149                }
    150150
     
    224224        public function column_cb( $signup_object = null ) {
    225225                ?>
    226                 <label class="screen-reader-text" for="signup_<?php echo intval( $signup_object->id ); ?>"><?php echo esc_html( sprintf( __( 'Select %s' ), $signup_object->user_login ) ); ?></label>
     226                <label class="screen-reader-text" for="signup_<?php echo intval( $signup_object->id ); ?>"><?php echo esc_html( sprintf( __( 'Select %s', 'buddypress' ), $signup_object->user_login ) ); ?></label>
    227227                <input type="checkbox" id="signup_<?php echo intval( $signup_object->id ) ?>" name="allsignups[]" value="<?php echo esc_attr( $signup_object->id ) ?>" />
    228228                <?php
     
    464464
    465465                if ( current_user_can( 'delete_users' ) ) {
    466                         $actions['delete'] = __( 'Delete' );
     466                        $actions['delete'] = __( 'Delete', 'buddypress' );
    467467                }
    468468
     
    537537        public function column_cb( $signup_object = null ) {
    538538                ?>
    539                 <label class="screen-reader-text" for="signup_<?php echo intval( $signup_object->id ); ?>"><?php echo esc_html( sprintf( __( 'Select %s' ), $signup_object->user_login ) ); ?></label>
     539                <label class="screen-reader-text" for="signup_<?php echo intval( $signup_object->id ); ?>"><?php echo esc_html( sprintf( __( 'Select %s', 'buddypress' ), $signup_object->user_login ) ); ?></label>
    540540                <input type="checkbox" id="signup_<?php echo intval( $signup_object->id ) ?>" name="allsignups[]" value="<?php echo esc_attr( $signup_object->id ) ?>" />
    541541                <?php
Note: See TracChangeset for help on using the changeset viewer.