Drupalのログインページにある「Request new password」テキストの名前をカスタムテキストに変更したいと考えています。
user.moduleファイルで、このテキストはハードコーディングされていることがわかります
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));
Drupalコアを変更するのではなく、このテキストの名前を変更する他の方法はありますか?