--- modules/comment/comment.module	2010-05-30 13:02:36.000000000 +0200
+++ modules/comment/comment-new.module	2010-05-30 13:04:11.000000000 +0200
@@ -2178,6 +2178,7 @@ function template_preprocess_comment(&$v
   $uri = entity_uri('comment', $comment);
   $variables['title']     = l($comment->subject, $uri['path'], $uri['options']);
   $variables['permalink'] = l('#', $uri['path'], $uri['options']);
+  $variables['submitted'] = t('Submitted by !username on !datetime.', array('!username' => $variables['author'], '!datetime' => $variables['created']));
 
   // Preprocess fields.
   field_attach_preprocess('comment', $comment, $variables['elements'], $variables);
@@ -2274,6 +2275,8 @@ function template_preprocess_comment_wra
   $variables['node'] = $variables['content']['#node'];
   $variables['display_mode'] = variable_get('comment_default_mode_' . $variables['node']->type, COMMENT_MODE_THREADED);
   $variables['theme_hook_suggestions'][] = 'comment_wrapper__' . $variables['node']->type;
+  $variables['title'] = t('Comments'); 
+  $variables['add_new_comment'] = t('Add new comment');
 }
 
 /**
