Lowercase includes %s string only

This commit is contained in:
Mike Jolley 2016-03-14 10:41:45 +00:00
parent 71f32383f8
commit 733b0c8c93
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class WC_Order extends WC_Abstract_Order {
$tax_string_array[] = sprintf( '%s %s', wc_price( $tax_amount, array( 'currency' => $this->get_order_currency() ) ), WC()->countries->tax_or_vat() );
}
if ( ! empty( $tax_string_array ) ) {
$tax_string = ' ' . sprintf( __( '(Includes %s)', 'woocommerce' ), implode( ', ', $tax_string_array ) );
$tax_string = ' ' . sprintf( __( '(includes %s)', 'woocommerce' ), implode( ', ', $tax_string_array ) );
}
}