diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-02-25 20:37:21 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-02-25 20:37:21 +0000 |
commit | 147cd225c9bb101bb0b7bd6f9f74d70c6a66af9f (patch) | |
tree | 11ecdfab52231b8715f46f09f6d2b83349476c84 /modules | |
parent | c5fcdd31946dcd7359a67f105a1b9e359bbaea22 (diff) | |
download | brdo-147cd225c9bb101bb0b7bd6f9f74d70c6a66af9f.tar.gz brdo-147cd225c9bb101bb0b7bd6f9f74d70c6a66af9f.tar.bz2 |
- Added missing translation, reported by Nick.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/blog.module | 2 | ||||
-rw-r--r-- | modules/blog/blog.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/blog.module b/modules/blog.module index 60b36c446..0cd85231d 100644 --- a/modules/blog.module +++ b/modules/blog.module @@ -302,7 +302,7 @@ function blog_link($type, $node = 0, $main) { $links[] = "<a href=\"module.php?mod=node&op=edit&id=$node->nid\" title=\"". t("Edit this blog entry.") ."\">". t("edit this blog") ."</a>"; } elseif ($op != "view") { - $links[] = "<a href=\"module.php?mod=blog&op=view&id=$node->uid\" title=\"". sprintf(t("Read %s's latest blog entries."), $node->name) ."\">". sprintf("%s's blog", $node->name) ."</a>"; + $links[] = "<a href=\"module.php?mod=blog&op=view&id=$node->uid\" title=\"". sprintf(t("Read %s's latest blog entries."), $node->name) ."\">". sprintf(t("%s's blog"), $node->name) ."</a>"; } } diff --git a/modules/blog/blog.module b/modules/blog/blog.module index 60b36c446..0cd85231d 100644 --- a/modules/blog/blog.module +++ b/modules/blog/blog.module @@ -302,7 +302,7 @@ function blog_link($type, $node = 0, $main) { $links[] = "<a href=\"module.php?mod=node&op=edit&id=$node->nid\" title=\"". t("Edit this blog entry.") ."\">". t("edit this blog") ."</a>"; } elseif ($op != "view") { - $links[] = "<a href=\"module.php?mod=blog&op=view&id=$node->uid\" title=\"". sprintf(t("Read %s's latest blog entries."), $node->name) ."\">". sprintf("%s's blog", $node->name) ."</a>"; + $links[] = "<a href=\"module.php?mod=blog&op=view&id=$node->uid\" title=\"". sprintf(t("Read %s's latest blog entries."), $node->name) ."\">". sprintf(t("%s's blog"), $node->name) ."</a>"; } } |