Yes, of course. Go to the child theme, to this directory:
/wp-content/themes/yootheme-child/woocommerce/cart and open cart.php file
The code in the lines 88-97 was added to display the delivery times in days in the cart
When it comes to the name of the country, we didn't change anything as I remember (I'm not sure), but that code is in the same file on the lines 77-82.
I hope that I managed to help you with this information.
Yes, the code for the delivery in days is custom, but I think that the code for the country name isn't.
I altered the custom code based on the instructions from the WPML support in order to make it translatable.
The used code only echoes the existing text, It is not written directly in the code in that php file.
This text is a variation description and I translated it in the Woocommerce multilingual in the backend.
Just go to Woocommerce > Woocommerce multilingual > Attributes tab > then select attribute: Target company country and region
So I dumped out the array .
<Code>
$product_item = $cart_item['data'];
var_dump($product_item);
[/php]
Turns out I do get the chinese texts sometimes. Well I noticed that after I refresh the page then I get the translated text. I'm investigating this further to see if WPML has a way to get the exact text because it should display correctly. All I see that you are doing is to just display the variation text in the cart.
I'm still able to debug this but my experience on WPML is really limited when it comes to debug WPML tasks.