Merge pull request #5672 from SiR-DanieL/patch-2

Wrong non ASCII content
This commit is contained in:
Mike Jolley 2014-06-13 18:48:20 +01:00
commit 7a4efddad1
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ if ( ! woocommerce_products_will_display() )
} elseif ( $total <= $per_page || -1 == $per_page ) {
printf( __( 'Showing all %d results', '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( _x( 'Showing %1$d&ndash;%2$d of %3$d results', '%1$d = first, %2$d = last, %3$d = total', 'woocommerce' ), $first, $last, $total );
}
?>
</p>
</p>