diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/tracker.module | 8 | ||||
-rw-r--r-- | modules/tracker/tracker.module | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/modules/tracker.module b/modules/tracker.module index 5b5a6a59c..cb75d04e2 100644 --- a/modules/tracker.module +++ b/modules/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"); } } 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"); } } |