Hello,
I would like to know why you override the default woocommerce text strings with your own ones, p.e. in cart.php, there is by default:
<?php esc_html_e( 'Product', 'woocommerce' ); ?>
and you transform it to:
<?php esc_html_e( 'Product', 'royal' ); ?>
Replacing the ‘woocommerce’ textdomain with ‘royal’ means that I have to translate all strings again because Royal theme is not translated in my language (German). Leaving them just with the default ‘woocommerce’ text domain would be perfect because all the strings are already translated by woocommerce.
So this makes no sense to me at all, maybe you can explain why you do this.
Many thanks in advance.