You would need to edit the shipping module:
/includes/modules/shipping/usps.php
and locate the lines around 191 to 192 that read:
PHP Code:
// BOF: UPS USPS
$title = ((isset($this->types[$type])) ? $this->types[$type] : $type);
if(in_array('Display transit time', explode(', ', MODULE_SHIPPING_USPS_OPTIONS))) $title .= $transittime[$type];
and change to read:
PHP Code:
// BOF: UPS USPS
$title = ((isset($this->types[$type])) ? $this->types[$type] : $type);
if(in_array('Display transit time', explode(', ', MODULE_SHIPPING_USPS_OPTIONS))) $title .= $transittime[$type];
echo $title . '<br>';
if ($title == 'Media Mail') {
$title .= ' (7-10 days)';
}