Merge pull request #4438 from LeGaS/missing-textdomains

Add missing textdomains
This commit is contained in:
Mike Jolley 2013-12-31 04:13:42 -08:00
commit 65dc89f80f
1 changed files with 4 additions and 4 deletions

View File

@ -215,10 +215,10 @@ class WC_Admin_CPT_Shop_Order extends WC_Admin_CPT {
$customer_tip = '';
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 )
$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 ) . '">';