From d017514eba70ea4041218b943f01721cfd6e9b64 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 2 Jul 2003 17:09:09 +0000 Subject: - Improvement: made it possible to translate the forum module. Patch #53 by Stefan. - Improvement: some small changes to the user module to ease translation and to make things slightly more consistent. This should be a better alternative for patch #54. - Improvement: increase the maxlength of the node title. This should fix bug #2018 and #2176. --- modules/user/user.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/user/user.module') diff --git a/modules/user/user.module b/modules/user/user.module index 4f3387e9f..8c78ee76a 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -919,7 +919,7 @@ function user_register($edit = array()) { } } $output .= form_submit(t("Create new account")); - $items[] = l(t("E-mail new password"), "user/password"); + $items[] = l(t("Request new password"), "user/password"); $items[] = l(t("Log in"), "user/login"); $output .= theme("theme_item_list", $items); @@ -1110,11 +1110,11 @@ function user_view($uid = 0) { else { $output = user_login(); theme("header"); - theme("box", t("Log in"), $output); + theme("box", t("User login"), $output); if (variable_get("user_register", 1)) { theme("box", t("Create new user account"), user_register()); } - theme("box", t("E-mail new password"), user_pass()); + theme("box", t("Request new password"), user_pass()); theme("footer"); } } -- cgit v1.2.3