diff --git a/includes/admin/class-wc-admin-post-types.php b/includes/admin/class-wc-admin-post-types.php index f8206ebb791..ecb95c74604 100644 --- a/includes/admin/class-wc-admin-post-types.php +++ b/includes/admin/class-wc-admin-post-types.php @@ -1653,7 +1653,7 @@ class WC_Admin_Post_Types { $output .= selected( 'downloadable', $wp_query->query['product_type'], false ); } - $output .= '> → ' . __( 'Downloadable', 'woocommerce' ) . ''; + $output .= '> ' . ( is_rtl() ? '←' : '→' ) . ' ' . __( 'Downloadable', 'woocommerce' ) . ''; $output .= ''; + $output .= '> ' . ( is_rtl() ? '←' : '→' ) . ' ' . __( 'Virtual', 'woocommerce' ) . ''; } } diff --git a/includes/admin/meta-boxes/class-wc-meta-box-order-data.php b/includes/admin/meta-boxes/class-wc-meta-box-order-data.php index c738d197d76..7848bcfb1bf 100644 --- a/includes/admin/meta-boxes/class-wc-meta-box-order-data.php +++ b/includes/admin/meta-boxes/class-wc-meta-box-order-data.php @@ -210,9 +210,9 @@ class WC_Meta_Box_Order_Data {

@@ -233,9 +233,9 @@ class WC_Meta_Box_Order_Data { 'post_type' => 'shop_order', '_customer_user' => absint( $order->get_user_id() ), ); - printf( '%s →', + printf( '%s', esc_url( add_query_arg( $args, admin_url( 'edit.php' ) ) ), - __( 'View other orders', 'woocommerce' ) + __( 'View other orders →', 'woocommerce' ) ); } ?> diff --git a/includes/admin/reports/class-wc-report-sales-by-category.php b/includes/admin/reports/class-wc-report-sales-by-category.php index 2dcc9fb8355..f7b293e083e 100644 --- a/includes/admin/reports/class-wc-report-sales-by-category.php +++ b/includes/admin/reports/class-wc-report-sales-by-category.php @@ -279,7 +279,7 @@ class WC_Report_Sales_By_Category extends WC_Admin_Report { if ( empty( $this->show_categories ) ) { ?>

-

+

product_ids ) ) { ?>
-

+

post->post_title; if ( $this->get_parent() > 0 ) { - $title = get_the_title( $this->get_parent() ) . ' → ' . $title; + /* translators: 1: parent product title 2: product title */ + $title = sprintf( __( '%1$s → %2$s' , 'woocommerce' ), get_the_title( $this->get_parent() ), $title ); } return apply_filters( 'woocommerce_product_title', $title, $this );