Fixed gettext text domain issue in admin-post-types

This commit is contained in:
Matty 2011-09-29 14:44:36 +02:00
parent 3d23bb44af
commit 2adb5a7aeb
1 changed files with 1 additions and 1 deletions

View File

@ -410,7 +410,7 @@ function woocommerce_custom_order_columns($column) {
echo '<a target="_blank" href="' . esc_url( 'http://maps.google.co.uk/maps?&q='.urlencode($order->formatted_billing_address).'&z=16' ) . '">'.esc_html( $order->formatted_billing_address ).'</a>';
if ($order->payment_method) :
echo '<small class="meta">' . __('Paid via ', 'woo themes') . esc_html( $order->payment_method ) . '</small>';
echo '<small class="meta">' . __('Paid via ', 'woothemes') . esc_html( $order->payment_method ) . '</small>';
endif;
break;