How can I change the following text in checkout pane>?
"Enter a valid email address for this order or click here to login with an existing account and return to checkout."
I tried something like this (and other variation of ) --but didn't work..
function my_module_form_alter($form_id, &$form){
if ($form_id == 'uc-cart-checkout-form'){
$form['customer-pane']['description'] =
t('Additional Information');
}
}




