summaryrefslogtreecommitdiff
path: root/themes/chameleon
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 /themes/chameleon
parent163f1accd9e80664f8f62c7d86487417df39caf4 (diff)
downloadbrdo-f2f3416549391ce0102c193abcea3fdd5d1d98ef.tar.gz
brdo-f2f3416549391ce0102c193abcea3fdd5d1d98ef.tar.bz2
- Patch #80934 by timnc: more t() fixes.
Diffstat (limited to 'themes/chameleon')
-rw-r--r--themes/chameleon/chameleon.theme4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme
index 272f8169f..ca67eaa4b 100644
--- a/themes/chameleon/chameleon.theme
+++ b/themes/chameleon/chameleon.theme
@@ -138,7 +138,7 @@ function chameleon_node($node, $teaser = 0, $page = 0) {
$output .= " </div>\n";
- $submitted['node_submitted'] = theme_get_setting("toggle_node_info_$node->type") ? array('#title' => t("By %author at %date", array('%author' => theme('username', $node), '%date' => format_date($node->created, 'small')))) : array();
+ $submitted['node_submitted'] = theme_get_setting("toggle_node_info_$node->type") ? array('#title' => t("By !author at @date", array('!author' => theme('username', $node), '@date' => format_date($node->created, 'small')))) : array();
$terms = array();
if (module_exists('taxonomy')) {
@@ -159,7 +159,7 @@ function chameleon_node($node, $teaser = 0, $page = 0) {
}
function chameleon_comment($comment, $links = "") {
- $submitted['comment_submitted'] = array('#title' => t('By %author at %date', array('%author' => theme('username', $comment), '%date' => format_date($comment->timestamp. 'small'))));
+ $submitted['comment_submitted'] = array('#title' => t('By !author at @date', array('!author' => theme('username', $comment), '@date' => format_date($comment->timestamp. 'small'))));
$output = "<div class=\"comment". ($comment->status == COMMENT_NOT_PUBLISHED ? ' comment-unpublished' : '') ."\">\n";
$output .= " <h3 class=\"title\">". l($comment->subject, $_GET['q'], NULL, NULL, "comment-$comment->cid") ."</h3>\n";