Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
06/12/2016 09:12:49 PM (9 years ago)
Author:
mercime
Message:

Add translator comments for screen reader text in admin.

Fixes #6951.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-members/classes/class-bp-members-ms-list-table.php

    r10711 r10882  
    254254    public function column_cb( $signup_object = null ) {
    255255    ?>
    256         <label class="screen-reader-text" for="signup_<?php echo intval( $signup_object->id ); ?>"><?php printf( esc_html__( 'Select user: %s', 'buddypress' ), $signup_object->user_login ); ?></label>
     256        <label class="screen-reader-text" for="signup_<?php echo intval( $signup_object->id ); ?>"><?php printf(
     257            /* translators: accessibility text */
     258            esc_html__( 'Select user: %s', 'buddypress' ), $signup_object->user_login );
     259        ?></label>
    257260        <input type="checkbox" id="signup_<?php echo intval( $signup_object->id ) ?>" name="allsignups[]" value="<?php echo esc_attr( $signup_object->id ) ?>" />
    258261        <?php
Note: See TracChangeset for help on using the changeset viewer.