我们想将Drupal登录页面上的“请求新密码”文本重命名为一些自定义文本。
在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核心的方法吗?