From 47daf7f00649956aed14dc4e6aa2145bb4c87b2a Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 12 Jan 2002 12:51:21 +0000 Subject: - Added some more explanations. --- modules/blog/blog.module | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'modules/blog/blog.module') diff --git a/modules/blog/blog.module b/modules/blog/blog.module index b3c1081e0..04dcea472 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -179,7 +179,7 @@ function blog_page_user($uid = 0, $date = 0) { } if ($blog->comment) { - $links[] = "nid\" title=\"". t("View this posting and all of its comments.") ."\">". format_plural(comment_num_all($blog->nid), t("comment"), t("comments")) .""; + $links[] = "nid\" title=\"". t("Read this posting and all of its comments.") ."\">". format_plural(comment_num_all($blog->nid), t("comment"), t("comments")) .""; } $output .= "
". check_output($blog->title) ."
". $theme->links($links) .""; @@ -188,7 +188,7 @@ function blog_page_user($uid = 0, $date = 0) { } $output .= ""; - $output .= "uid\" title=\"". t("View the XML version of this page.") ."\">image("xml.gif") ."\" width=\"36\" height=\"14\" align=\"right\" border=\"0\" />\n"; + $output .= "uid\" title=\"". t("Read the XML version of this page.") ."\">image("xml.gif") ."\" width=\"36\" height=\"14\" align=\"right\" border=\"0\" />\n"; $theme->box(sprintf(t("%s's blog"), $account->name), $output, "main"); } @@ -225,7 +225,7 @@ function blog_page_last() { } $output .= ""; - $output .= "image("xml.gif") ."\" width=\"36\" height=\"14\" align=\"right\" border=\"0\" />\n"; + $output .= "image("xml.gif") ."\" width=\"36\" height=\"14\" align=\"right\" border=\"0\" />\n"; $theme->box(t("User blogs"), $output, "main"); } @@ -311,17 +311,17 @@ function blog_link($type, $node = 0) { global $user; if ($type == "page" && user_access("access content")) { - $links[] = "". t("user blogs") .""; + $links[] = "". t("user blogs") .""; } if ($type == "menu") { $links[] = "". t("add blog entry") .""; - $links[] = "uid\" title=\"". t("View your latest blog entries in chronological order.") ."\">". t("view your blog") .""; + $links[] = "uid\" title=\"". t("Read your latest blog entries.") ."\">". t("view your blog") .""; } if ($type == "node" && $node->type == "blog") { if (blog_access("update", $node)) { - $links[] = "nid\" title=\"". t("Update this blog entry.") ."\">". t("update this blog") .""; + $links[] = "nid\" title=\"". t("Edit this blog entry.") ."\">". t("edit this blog") .""; } else { $links[] = "uid\" title=\"". sprintf(t("Read %s's latest blog entries."), $node->name) ."\">". strtr(t("%a's blog"), array("%a" => $node->name)) .""; @@ -340,7 +340,7 @@ function blog_block() { $output .= "nid\">". check_output($node->title) ."
\n"; } - $output .= "
". t("more") ."
"; + $output .= "
". t("more") ."
"; $block[0]["subject"] = t("User blogs"); $block[0]["content"] = $output; -- cgit v1.2.3