summaryrefslogtreecommitdiff
path: root/modules/tracker/tracker.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2002-05-31 20:29:30 +0000
committerDries Buytaert <dries@buytaert.net>2002-05-31 20:29:30 +0000
commit38aaf5f35d8bc51f6792989a1a7732be5a1e7676 (patch)
treec782e563cf5862f5b03c066fd34171a7d2128f71 /modules/tracker/tracker.module
parentb0ea30ed85b9e737bc6b3c7c5b7ec6ffe73c7803 (diff)
downloadbrdo-38aaf5f35d8bc51f6792989a1a7732be5a1e7676.tar.gz
brdo-38aaf5f35d8bc51f6792989a1a7732be5a1e7676.tar.bz2
- Added missing translations and the like.
Diffstat (limited to 'modules/tracker/tracker.module')
-rw-r--r--modules/tracker/tracker.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module
index a9d718d42..b88df8ed7 100644
--- a/modules/tracker/tracker.module
+++ b/modules/tracker/tracker.module
@@ -43,7 +43,7 @@ function tracker_comments($id = 0) {
$output .= "<ul>";
while ($comment = db_fetch_object($cresult)) {
- $output .= " <li>". l(check_output($comment->subject), array("id" => $node->nid, "cid" => $comment->cid, "pid" => $comment->pid), "node", $comment->cid) ." by ". format_name($comment) ." (". t("replies") .": ". comment_num_replies($comment->cid) .") ". (comment_is_new($comment) ? "<span style=\"color: red;\">*</span>" : "") ."</li>\n";
+ $output .= " <li>". l(check_output($comment->subject), array("id" => $node->nid, "cid" => $comment->cid, "pid" => $comment->pid), "node", $comment->cid) ." ". t("by") ." ". format_name($comment) ." (". t("replies") .": ". comment_num_replies($comment->cid) .") ". (comment_is_new($comment) ? "<span style=\"color: red;\">*</span>" : "") ."</li>\n";
}
$output .= " </ul>\n";
}
@@ -92,7 +92,7 @@ function tracker_user($type, &$edit, &$user) {
case "view_public":
case "view_private":
if (user_access("access comments")) {
- return form_item(t("Comments"), lm(t("View recent comments."), array("mod" => "tracker", "id" => $user->uid)));
+ return form_item(t("Comments"), lm(t("view recent comments"), array("mod" => "tracker", "id" => $user->uid), "", array("title" => t("View recent comments."))));
}
}
}