Make hash before order number translatable. Closes #1161
This commit is contained in:
parent
cb1f1f9a28
commit
dd7fde369d
|
@ -154,7 +154,7 @@ class WC_Order {
|
|||
* @return string
|
||||
*/
|
||||
function get_order_number() {
|
||||
return apply_filters( 'woocommerce_order_number', '#' . $this->id, $this );
|
||||
return apply_filters( 'woocommerce_order_number', _x( '#', 'hash before order number', 'woocommerce' ) . $this->id, $this );
|
||||
}
|
||||
|
||||
function get_formatted_billing_address() {
|
||||
|
|
Loading…
Reference in New Issue