Changeset 45926 for trunk/src/wp-admin/includes/deprecated.php
- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/deprecated.php
r45448 r45926 600 600 ) ); 601 601 if ( $this->paging_text ) { 602 $this->paging_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s–%s of %s' ) . '</span>%s', 602 $this->paging_text = sprintf( 603 /* translators: 1: starting number of users on the current page, 2: ending number of users, 3: total number of users */ 604 '<span class="displaying-num">' . __( 'Displaying %1$s–%2$s of %3$s' ) . '</span>%s', 603 605 number_format_i18n( ( $this->page - 1 ) * $this->users_per_page + 1 ), 604 606 number_format_i18n( min( $this->page * $this->users_per_page, $this->total_users_for_query ) ),
Note: See TracChangeset
for help on using the changeset viewer.