- Timestamp:
- 02/07/2023 05:08:26 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-users-list-table.php
r54378 r55276 304 304 <div class="alignleft actions"> 305 305 <?php if ( current_user_can( 'promote_users' ) && $this->has_items() ) : ?> 306 <label class="screen-reader-text" for="<?php echo $id; ?>"><?php _e( 'Change role to…' ); ?></label> 306 <label class="screen-reader-text" for="<?php echo $id; ?>"> 307 <?php 308 /* translators: Hidden accessibility text. */ 309 _e( 'Change role to…' ); 310 ?> 311 </label> 307 312 <select name="<?php echo $id; ?>" id="<?php echo $id; ?>"> 308 313 <option value=""><?php _e( 'Change role to…' ); ?></option> … … 522 527 '<input type="checkbox" name="users[]" id="user_%1$s" class="%3$s" value="%1$s" />', 523 528 $user_object->ID, 524 /* translators: %s: User login. */529 /* translators: Hidden accessibility text. %s: User login. */ 525 530 sprintf( __( 'Select %s' ), $user_object->user_login ), 526 531 $role_classes … … 580 585 $row .= sprintf( 581 586 '<span aria-hidden="true">—</span><span class="screen-reader-text">%s</span>', 587 /* translators: Hidden accessibility text. */ 582 588 _x( 'Unknown', 'name' ) 583 589 ); … … 597 603 $numposts, 598 604 sprintf( 599 /* translators: %s: Number of posts. */605 /* translators: Hidden accessibility text. %s: Number of posts. */ 600 606 _n( '%s post by this author', '%s posts by this author', $numposts ), 601 607 number_format_i18n( $numposts )
Note: See TracChangeset
for help on using the changeset viewer.