In the WooCommerce Multi-lingual plugin, is there anywhere to set the size for the products there?
Try editing /woocommerce/content-product.php line 111 from:
$image_html = wp_get_attachment_image( get_post_thumbnail_id(), 'shop_catalog' );
to
$image_html = wp_get_attachment_image( get_post_thumbnail_id(), array('540', '720') );
and also line 134:
echo '<div class="product-image">'.wp_get_attachment_image( $attachment_id, array('540', '720') ).'</div>';
– Ed