Vogliamo rinominare il testo "Richiedi nuova password" nella pagina di accesso di un Drupal in un testo personalizzato.
Nel file user.module, vedo che questo testo è hard coded
if (variable_get('user_register', 1)) {
$items[] = l(t('Create new account'), 'user/register', array('attributes' => array('title' => t('Create a new user account.'))));
}
$items[] = l(t('Request new password'), 'user/password', array('attributes' => array('title' => t('Request new password via e-mail.'))));
$form['links'] = array('#value' => theme('item_list', $items));
Esiste un altro modo per rinominare questo testo piuttosto che modificare il core di Drupal?