Merge pull request #4438 from LeGaS/missing-textdomains
Add missing textdomains
This commit is contained in:
commit
65dc89f80f
|
@ -215,10 +215,10 @@ class WC_Admin_CPT_Shop_Order extends WC_Admin_CPT {
|
||||||
$customer_tip = '';
|
$customer_tip = '';
|
||||||
|
|
||||||
if ( $address = $the_order->get_formatted_billing_address() )
|
if ( $address = $the_order->get_formatted_billing_address() )
|
||||||
$customer_tip .= __( 'Billing:' ) . ' ' . $address . '<br/><br/>';
|
$customer_tip .= __( 'Billing:', 'woocommerce' ) . ' ' . $address . '<br/><br/>';
|
||||||
|
|
||||||
if ( $the_order->billing_phone )
|
if ( $the_order->billing_phone )
|
||||||
$customer_tip .= __( 'Tel:' ) . ' ' . $the_order->billing_phone;
|
$customer_tip .= __( 'Tel:', 'woocommerce' ) . ' ' . $the_order->billing_phone;
|
||||||
|
|
||||||
echo '<div class="tips" data-tip="' . esc_attr( $customer_tip ) . '">';
|
echo '<div class="tips" data-tip="' . esc_attr( $customer_tip ) . '">';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue