When connecting a menu to the "My Vehicles"-page, there are a few buttons named "show my cars" and "edit my cars".
I can't seem to find the translation of these buttons anywhere, while the code shows:
components/com_vehiclemanager/vehiclemanager.html.php
Line 6639:
Code: |
<a href="<?php echo JRoute::_('index.php?option=' . $option . '&task=my_vehicles&tab=getmyvehiclesTab&name=' . $username . '&Itemid=' . $Itemid . '&is_show_data=1'); ?>"><?php echo JText::_('show my cars'); ?></a>
|
Line 6665:
Code: |
<a href="<?php echo JRoute::_('index.php?option=' . $option . '&task=edit_my_cars&Itemid=' . $Itemid . $comprofiler); ?>"><?php echo JText::_('edit my cars'); ?></a>
|
It seems to me that for these buttons the text is hardcoded in this file.