Missing translation string on modify_fee_html_for_taxes function
-
Hi,
There is a missing translate string on this function.
——
public function modify_fee_html_for_taxes( $cart_fee_html, $fees ) {if ( ‘incl’ === get_option( ‘woocommerce_tax_display_cart’ ) && isset( $fees->tax ) && $fees->tax > 0 && in_array( $fees->name, $this->fees_added, true ) ) {
$cart_fee_html .= ‘<small class=”includes_tax”>’ . sprintf( __( ‘(includes %s Tax)’, ‘checkout-fees-for-woocommerce’ ), wc_price( $fees->tax ) ) . ‘</small>’; // phpcs:ignore
}
return $cart_fee_html;
}
—–
Regards,
Marcio
The topic ‘Missing translation string on modify_fee_html_for_taxes function’ is closed to new replies.