diff options
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 2bf932dfe..a80d9db3b 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -414,12 +414,12 @@ function user_search($keys) { function user_link($type) { if ($type == "page") { - $links[] = "<a href=\"module.php?mod=user\">". t("user account") ."</a>"; + $links[] = "<a href=\"module.php?mod=user\" title=\"". t("Create a user account, e-mail a new password or edit your account settings.") ."\">". t("user account") ."</a>"; } if ($type == "menu") { - $links[] = "<a href=\"module.php?mod=user&op=edit\">". t("account settings") ."</a>"; - $links[] = "<br /><a href=\"module.php?mod=user&op=logout\">". t("logout") ."</a>"; + $links[] = "<a href=\"module.php?mod=user&op=edit\" title=\"". t("View and edit your account information.") ."\">". t("account settings") ."</a>"; + $links[] = "<br /><a href=\"module.php?mod=user&op=logout\" title=\"". t("Logout.") ."\">". t("logout") ."</a>"; } if ($type == "admin" && user_access("administer users")) { |