diff --git a/templates/loop/result-count.php b/templates/loop/result-count.php index fd0285b8608..204b58f5036 100644 --- a/templates/loop/result-count.php +++ b/templates/loop/result-count.php @@ -38,9 +38,9 @@ if ( ! woocommerce_products_will_display() ) if ( 1 === $total ) { _e( 'Showing the single result', 'woocommerce' ); } elseif ( $total <= $per_page || -1 === $per_page ) { - printf( __( 'Showing all %d results', 'woocommerce' ), $total ); + printf( _n( 'Showing the single result', 'Showing all %d results', $total, 'woocommerce' ), $total ); } else { - printf( _x( 'Showing %1$d–%2$d of %3$d results', '%1$d = first, %2$d = last, %3$d = total', 'woocommerce' ), $first, $last, $total ); + printf( _nx( 'Showing the single result', 'Showing %1$d–%2$d of %3$d results', $total, '%1$d = first, %2$d = last, %3$d = total', 'woocommerce' ), $first, $last, $total ); } ?>