diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-01-12 12:51:21 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-01-12 12:51:21 +0000 |
commit | 47daf7f00649956aed14dc4e6aa2145bb4c87b2a (patch) | |
tree | e2311452b95267f5eb9243702a897f3866d664c5 /modules/tracker.module | |
parent | ca95b491ffc8d8325408be0161094371376c1b84 (diff) | |
download | brdo-47daf7f00649956aed14dc4e6aa2145bb4c87b2a.tar.gz brdo-47daf7f00649956aed14dc4e6aa2145bb4c87b2a.tar.bz2 |
- Added some more explanations.
Diffstat (limited to 'modules/tracker.module')
-rw-r--r-- | modules/tracker.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/tracker.module b/modules/tracker.module index 4234f4786..0735f107a 100644 --- a/modules/tracker.module +++ b/modules/tracker.module @@ -4,7 +4,7 @@ function tracker_link($type) { if ($type == "menu") { - $links[] = "<a href=\"module.php?mod=tracker\">". t("recent comments") ."</a>"; + $links[] = "<a href=\"module.php?mod=tracker\" title=\"". t("Display an overview of the recent comments.") ."\">". t("recent comments") ."</a>"; } return $links ? $links : array(); @@ -45,8 +45,8 @@ function tracker_comments($id = 0) { function tracker_menu() { global $user; - $links[] = "<a href=\"module.php?mod=tracker&id=$user->uid\">your recent comments</a>"; - $links[] = "<a href=\"module.php?mod=tracker\">all recent comments</a>"; + $links[] = "<a href=\"module.php?mod=tracker&id=$user->uid\" title=\"". t("Display an overview of your recent comments.") ."\">your recent comments</a>"; + $links[] = "<a href=\"module.php?mod=tracker\" title=\"". t("Display an overview of all the recent comments.") ."\">all recent comments</a>"; return "<div align=\"center\">". implode(" · ", $links) ."</div>"; } |