diff --git a/modules/comment/comment.module b/modules/comment/comment.module
index 3b7129dfd84ec22117a037d9c094f840fd3976de..212321afd0d16eea051491f3bad8bca4a763627e 100644
--- a/modules/comment/comment.module
+++ b/modules/comment/comment.module
@@ -190,7 +190,7 @@ function comment_menu() {
     'type' => MENU_CALLBACK,
   );
   $items['comment/reply/%node'] = array(
-    'title' => 'Reply to comment',
+    'title' => 'Add new comment',
     'page callback' => 'comment_reply',
     'page arguments' => array(2),
     'access callback' => 'node_access',
diff --git a/modules/comment/comment.pages.inc b/modules/comment/comment.pages.inc
index 08c6aec5a18071330e0d923a8c915cc89a957a50..9b4e3abccf3e772b081243c1481ef5ad699dd812 100644
--- a/modules/comment/comment.pages.inc
+++ b/modules/comment/comment.pages.inc
@@ -102,7 +102,7 @@ function comment_reply($node, $pid = NULL) {
         drupal_goto("node/$node->nid");
       }
       elseif (user_access('post comments')) {
-        $output .= theme('comment_form_box', array('pid' => $pid, 'nid' => $node->nid), t('Reply'));
+        $output .= theme('comment_form_box', array('pid' => $pid, 'nid' => $node->nid), t('Add new comment'));
       }
       else {
         drupal_set_message(t('You are not authorized to post comments.'), 'error');