diff --git a/wp-admin/includes/class-wp-list-table.php b/wp-admin/includes/class-wp-list-table.php index aae3d697b5..5ba6226ad9 100644 --- a/wp-admin/includes/class-wp-list-table.php +++ b/wp-admin/includes/class-wp-list-table.php @@ -686,7 +686,7 @@ class WP_List_Table { $infinite_scroll = $this->_pagination_args['infinite_scroll']; } - $output = '' . sprintf( _n( '1 item', '%s items', $total_items ), number_format_i18n( $total_items ) ) . ''; + $output = '' . sprintf( _n( '%s item', '%s items', $total_items ), number_format_i18n( $total_items ) ) . ''; $current = $this->get_pagenum(); @@ -1110,7 +1110,7 @@ class WP_List_Table { if ( isset( $this->_pagination_args['total_items'] ) ) { $response['total_items_i18n'] = sprintf( - _n( '1 item', '%s items', $this->_pagination_args['total_items'] ), + _n( '%s item', '%s items', $this->_pagination_args['total_items'] ), number_format_i18n( $this->_pagination_args['total_items'] ) ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index a20750ea3b..578b082e2a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32472'; +$wp_version = '4.3-alpha-32473'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.