Changing "music" Tile to "podcast"

Is there a way to change the upload "music" title to "podcast" for one to upload audio. Thanks

@linepitch - Try putting the following in your theme's functions.php

global $rtmedia;  
$rtmedia->allowed_types[ 'music' ][ 'label' ] = 'Podcast';  
$rtmedia->allowed_types[ 'music' ][ 'plural_label' ] = 'Podcasts';  

tried in several places on the themes functions php did not work..

@linepitch - This should work. Try putting it at the end of your functions.php

Thanks worked like a charm!