Changeset 8272 for trunk/bp-members/admin/bp-members-classes.php
- Timestamp:
- 04/14/2014 01:23:47 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-members/admin/bp-members-classes.php
r8217 r8272 146 146 147 147 if ( current_user_can( 'delete_users' ) ) { 148 $actions['delete'] = __( 'Delete' );148 $actions['delete'] = __( 'Delete', 'buddypress' ); 149 149 } 150 150 … … 224 224 public function column_cb( $signup_object = null ) { 225 225 ?> 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> 227 227 <input type="checkbox" id="signup_<?php echo intval( $signup_object->id ) ?>" name="allsignups[]" value="<?php echo esc_attr( $signup_object->id ) ?>" /> 228 228 <?php … … 464 464 465 465 if ( current_user_can( 'delete_users' ) ) { 466 $actions['delete'] = __( 'Delete' );466 $actions['delete'] = __( 'Delete', 'buddypress' ); 467 467 } 468 468 … … 537 537 public function column_cb( $signup_object = null ) { 538 538 ?> 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> 540 540 <input type="checkbox" id="signup_<?php echo intval( $signup_object->id ) ?>" name="allsignups[]" value="<?php echo esc_attr( $signup_object->id ) ?>" /> 541 541 <?php
Note: See TracChangeset
for help on using the changeset viewer.