summaryrefslogtreecommitdiff
path: root/modules/blog
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-08-27 12:43:18 +0000
committerDries Buytaert <dries@buytaert.net>2006-08-27 12:43:18 +0000
commitf2f3416549391ce0102c193abcea3fdd5d1d98ef (patch)
treed4c7f57e9fa22877d73b642ecfba9ed08aa06d66 /modules/blog
parent163f1accd9e80664f8f62c7d86487417df39caf4 (diff)
downloadbrdo-f2f3416549391ce0102c193abcea3fdd5d1d98ef.tar.gz
brdo-f2f3416549391ce0102c193abcea3fdd5d1d98ef.tar.bz2
- Patch #80934 by timnc: more t() fixes.
Diffstat (limited to 'modules/blog')
-rw-r--r--modules/blog/blog.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/blog/blog.module b/modules/blog/blog.module
index 5ade1fcc6..6b0a60026 100644
--- a/modules/blog/blog.module
+++ b/modules/blog/blog.module
@@ -49,7 +49,7 @@ function blog_access($op, $node) {
function blog_user($type, &$edit, &$user) {
if ($type == 'view' && user_access('edit own blog', $user)) {
$items[] = array('title' => t('Blog'),
- 'value' => l(t('view recent blog entries'), "blog/$user->uid", array('title' => t("Read %username's latest blog entries.", array('%username' => $user->name)))),
+ 'value' => l(t('view recent blog entries'), "blog/$user->uid", array('title' => t("Read @username's latest blog entries.", array('@username' => $user->name)))),
'class' => 'blog',
);
return array(t('History') => $items);
@@ -249,7 +249,7 @@ function blog_link($type, $node = NULL, $teaser = FALSE) {
$links['blog_usernames_blog'] = array(
'title' => t("@username's blog", array('@username' => $node->name)),
'href' => "blog/$node->uid",
- 'attributes' => array('title' => t("Read %username's latest blog entries.", array('%username' => $node->name)))
+ 'attributes' => array('title' => t("Read @username's latest blog entries.", array('@username' => $node->name)))
);
}
}