theme_system_powered_by($variables)Format the Powered by Drupal text.
modules/system/system.module, line 3116
<?php
function theme_system_powered_by($variables) {
return '<span>' . t('Powered by <a href="@poweredby">Drupal</a>', array('@poweredby' => 'http://drupal.org')) . '</span>';
}
?>