I think so...In the next version the "breadcrumb" navbar will be more like the rest of the forum an show the user where they actually are. That is what I showed in the screenshot, I uploaded another one this time with a big fat circle around the breadcrumb in question. Below is the code that would show while viewing the users garage.
OPEN up vbgarage.php an find (line 259).
Code:
$navbits = construct_navbits(array('' => 'vBGarage'));
AND replace with.
Code:
// developing the navbar
$navbits["$vboptions[bburl]/vbgarage.php?$session[sessionurl]do=list"] = $vbphrase['vbgarage'];
$navbits[''] = "$data[username]'s $data[year] $data[make] $data[model]";
$navbits = construct_navbits($navbits);
Of course if you just wanted to change the vBGarage text to another that is just simply changing it without extra code.