Translate the text "Product Variations" in the Products menu
Hey,
I’m using the WooCommerce add-on v3.3.6 and found that the text “Product Variations” and some other texts are not getting translated in the Products menu.
I believe that some minor changes in the file ac-addon-woocommerce/classes/PostType/ProductVariation.php would be sufficient, even though I haven’t attempted to translate all texts yet.
For example, if line 47 is changed from:
'all_items' => __( 'Product Variations', 'woocommerce' ),
to:
'all_items' => __( 'Product variations', 'woocommerce' ),
the text in the Products menu will be translated because “Product variations” is already included in woocommerce.pot while “Product Variations” is not.
Other labels such as the one on line 45 could be changed in the same fashion.
Also, on line 56 “Search products” would be better since it’s already included in the woocommerce.pot file.
And so on… :)
Thanks!
You must be logged in to reply to this topic.