translation hint for the product name

This commit is contained in:
faisal-alvi 2023-04-20 14:21:18 +05:30
parent 158748a6d4
commit bfb1f08d2a
2 changed files with 2 additions and 0 deletions

View File

@ -54,6 +54,7 @@ do_action( 'woocommerce_before_cart' ); ?>
sprintf(
'<a href="%s" class="remove" aria-label="%s" data-product_id="%s" data-product_sku="%s">&times;</a>',
esc_url( wc_get_cart_remove_url( $cart_item_key ) ),
/* translators: %s is the product name */
esc_attr( sprintf( __( 'Remove %s from cart', 'woocommerce' ), $product_name ) ),
esc_attr( $product_id ),
esc_attr( $_product->get_sku() )

View File

@ -44,6 +44,7 @@ do_action( 'woocommerce_before_mini_cart' ); ?>
sprintf(
'<a href="%s" class="remove remove_from_cart_button" aria-label="%s" data-product_id="%s" data-cart_item_key="%s" data-product_sku="%s">&times;</a>',
esc_url( wc_get_cart_remove_url( $cart_item_key ) ),
/* translators: %s is the product name */
esc_attr( sprintf( __( 'Remove %s from cart', 'woocommerce' ), $product_name ) ),
esc_attr( $product_id ),
esc_attr( $cart_item_key ),