summaryrefslogtreecommitdiff
path: root/modules/tracker/tracker.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tracker/tracker.module')
-rw-r--r--modules/tracker/tracker.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module
index 5b5a6a59c..cb75d04e2 100644
--- a/modules/tracker/tracker.module
+++ b/modules/tracker/tracker.module
@@ -6,7 +6,7 @@ function tracker_help($section = "admin/help#tracker") {
switch ($section) {
case 'admin/help#tracer':
- $output = t("<p>The tracker module is a handy module for displaying the most recent posts. By following the <i>view recent posts</i> link in the user block, a user may quickly review all recent postings.</p>");
+ $output = t("<p>The tracker module is a handy module for displaying the most recent posts. By following the <i>recent posts</i> link in the user block, a user may quickly review all recent postings.</p>");
break;
case 'admin/system/modules#description':
$output = t("Enables tracking of recent posts for users.");
@@ -95,7 +95,7 @@ function tracker_user($type, &$edit, &$user) {
case "view_private":
case "view_public":
if (user_access("access content")) {
- return form_item(t("Recent posts"), l(t("view recent posts"), "tracker/$user->uid"));
+ return form_item(t("Recent posts"), l(t("recent posts"), "tracker/$user->uid"));
}
}
}
@@ -104,8 +104,8 @@ function tracker_page() {
global $user;
if (user_access("access content")) {
- theme("header", t("Recent activity"));
- theme("box", t("Recent activity"), tracker_posts(arg(1)));
+ theme("header", t("Recent posts"));
+ theme("box", t("Recent posts"), tracker_posts(arg(1)));
theme("footer");
}
}