What you could do is create a new plugin.
- Log into the ACP.
- On the side menu expand "Products & Plugins"
- Click on "Plugin Manager"
- At the very bottom there is a link to "Add New Plugin"
- On that page put in the following information-
Product: vBulletin (this should be default)
Title: Replace Minutes In Postbit
Hook: postbit_display_complete (from a drop-down list)
Execution Order: 5 (default value)
Code:
$vbulletin->templatecache['postbit_legacy'] = str_replace('Minutes','Mins',$vbulletin->templatecache['postbit_legacy']);
I tested this with the word Minutes directly in the postbit, and it works, I did not test it with this mod, but it should work.