diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-07-02 17:09:09 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-07-02 17:09:09 +0000 |
commit | d017514eba70ea4041218b943f01721cfd6e9b64 (patch) | |
tree | 089028796d6091ce0ff335a9f29b3f538e82450f /modules/user/user.module | |
parent | 7997ebb9820f0fe6cd8220aefb9365d29c6ee426 (diff) | |
download | brdo-d017514eba70ea4041218b943f01721cfd6e9b64.tar.gz brdo-d017514eba70ea4041218b943f01721cfd6e9b64.tar.bz2 |
- 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.
Diffstat (limited to 'modules/user/user.module')
-rw-r--r-- | modules/user/user.module | 6 |
1 files changed, 3 insertions, 3 deletions
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"); } } |