Paste this in themefunctions.php:
add_filter('tc_credits_display', 'my_custom_credits', 20);
function my_custom_credits(){
$credits = '';
$newline_credits = '';
return '
<div class="span6 credits">
<p style="pointer-events:none"><font color="663399"> · ? '.esc_attr( date( 'Y' ) ).' ENTER COMPANY NAME HERE · All Rights Reserved ·</font></p></div>';
}