To change the wording on the footer use the following in your themes functions.php file
if (! function_exists('dashboard_footer ') ){
function dashboard_footer () {
echo 'This is my awesome new footer text!
<a href="http://www.google.com">Google</a>';
}
}
add_filter('admin_footer_text', 'dashboard_footer ');
Hope that helps