Changeset 32473 for trunk/src/wp-admin/includes/class-wp-list-table.php
- Timestamp:
- 05/09/2015 07:21:38 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r31513 r32473 687 687 } 688 688 689 $output = '<span class="displaying-num">' . sprintf( _n( ' 1item', '%s items', $total_items ), number_format_i18n( $total_items ) ) . '</span>';689 $output = '<span class="displaying-num">' . sprintf( _n( '%s item', '%s items', $total_items ), number_format_i18n( $total_items ) ) . '</span>'; 690 690 691 691 $current = $this->get_pagenum(); … … 1111 1111 if ( isset( $this->_pagination_args['total_items'] ) ) { 1112 1112 $response['total_items_i18n'] = sprintf( 1113 _n( ' 1item', '%s items', $this->_pagination_args['total_items'] ),1113 _n( '%s item', '%s items', $this->_pagination_args['total_items'] ), 1114 1114 number_format_i18n( $this->_pagination_args['total_items'] ) 1115 1115 );
Note: See TracChangeset
for help on using the changeset viewer.