From 38aaf5f35d8bc51f6792989a1a7732be5a1e7676 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 31 May 2002 20:29:30 +0000 Subject: - Added missing translations and the like. --- modules/blog/blog.module | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/blog') diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 4c2c13f83..7d4f4a206 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -43,7 +43,7 @@ function blog_user($type, &$edit, &$user) { switch ($type) { case "view_public": case "view_private": - return form_item("Blog", lm(t("View recent entries."), array("mod" => "blog", "id" => $user->uid)) ."
". lm(t("View all entries."), array("mod" => "blog", "id" => $user->uid, "all" => 1))); + return form_item(t("Blog"), lm(t("view recent entries"), array("mod" => "blog", "id" => $user->uid), "", array("title" => t("View recent blog entries."))) ."
". lm(t("view all entries"), array("mod" => "blog", "id" => $user->uid, "all" => 1), "", array("title" => t("View all blog entries.")))); } } @@ -170,7 +170,7 @@ function blog_page_user($uid = 0, $date = 0, $all = 0) { $links = link_node($blog, 1); - $output .= "
". check_output($blog->title) ."
". $theme->links($links) ."". l('', array("id" => $node->nid), "node", "", array("title" => t("Permanent link to this blog entry"))) .""; + $output .= "
". check_output($blog->title) ."
". $theme->links($links) ."". l('', array("id" => $node->nid), "node", "", array("title" => t("Permanent link to this blog entry."))) .""; $output .= "
". check_output($blog->teaser, 1) ."

"; } @@ -178,10 +178,10 @@ function blog_page_user($uid = 0, $date = 0, $all = 0) { $output .= ""; $output .= lm("image("xml.gif") ."\" width=\"36\" height=\"14\" align=\"right\" border=\"0\" />", array("mod" => "blog", "op" => "feed", "id" => $account->uid), "", array("title" => t("Read the XML version of this page."))) ."\n"; if (!$all && $date) { - $output .= lm(t("show all blogs"), array("mod" => "blog", "op" => "view", "id" => $account->uid, "all" => 1), "", array("title" => t("Show all blogs by this user"))); + $output .= lm(t("show all blogs"), array("mod" => "blog", "op" => "view", "id" => $account->uid, "all" => 1), "", array("title" => t("Show all blogs by this user."))); } else { - $output .= lm(t("show recent blogs"), array("mod" => "blog", "op" => "view", "id" => $account->uid), "", array("title" => t("Show recent blogs by this user"))); + $output .= lm(t("show recent blogs"), array("mod" => "blog", "op" => "view", "id" => $account->uid), "", array("title" => t("Show recent blogs by this user."))); } $theme->box(t("%u's blog", array("%u" => $account->name)), $output); -- cgit v1.2.3