Chúng tôi muốn đổi tên văn bản "Yêu cầu mật khẩu mới" trên trang đăng nhập của Drupal thành một số văn bản tùy chỉnh.
Trong tệp user.module, tôi thấy rằng văn bản này được mã hóa cứng
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));
Có cách nào khác để đổi tên văn bản này thay vì sửa đổi lõi Drupal không?