summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-12-12 21:32:18 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-12-12 21:32:18 +0000
commit3f829e1ff5e7a578c3c1492151c873d014195f32 (patch)
tree705f126b3225cb8d89bebd06dffb6e77b0720177 /themes
parentf016b1647bb73df9b1ad9d76cb5357427660ac17 (diff)
downloadbrdo-3f829e1ff5e7a578c3c1492151c873d014195f32.tar.gz
brdo-3f829e1ff5e7a578c3c1492151c873d014195f32.tar.bz2
Make 'comments' title in Garland translatable
Diffstat (limited to 'themes')
-rw-r--r--themes/garland/template.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/garland/template.php b/themes/garland/template.php
index 51483e5ed..84f136d7c 100644
--- a/themes/garland/template.php
+++ b/themes/garland/template.php
@@ -46,7 +46,7 @@ function phptemplate_comment_wrapper($content, $type = null) {
return '<div id="comments">'. $content . '</div>';
}
else {
- return '<div id="comments"><h2 class="comments">Comments</h2>'. $content .'</div>';
+ return '<div id="comments"><h2 class="comments">'. t('Comments') .'</h2>'. $content .'</div>';
}
}