It is probably a cache issue. Try this.
Open - modules/mod_virtuemart_category/mod_virtuemart_category.php
Find the following codes in line 73:
echo $cache->get( array( 'mod_virtuemart_category', 'displayCatsMod' ), array($module, $params, $active_category_id, $category_id, $layout));
Replace the above by:
echo $cache->get( array( 'mod_virtuemart_category', 'displayCatsMod' ), array($module, $params, $active_category_id, $category_id, $layout, JFactory::getLanguage()->getTag()));
Now check if it helps.