? 307422-make-comment-text-consistent.patch
? 405180-set-menu-url-maxlength-255.patch
? 405180-set-textfield-maxlength-128.patch
Index: modules/comment/comment.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment/comment.module,v
retrieving revision 1.719
diff -u -p -r1.719 comment.module
--- modules/comment/comment.module	3 Jun 2009 06:52:29 -0000	1.719
+++ modules/comment/comment.module	7 Jun 2009 04:48:28 -0000
@@ -190,7 +190,7 @@ function comment_menu() {
     'type' => MENU_CALLBACK,
   );
   $items['comment/reply/%node'] = array(
-    'title' => 'Reply to comment',
+    'title' => 'Add a new comment',
     'page callback' => 'comment_reply',
     'page arguments' => array(2),
     'access callback' => 'node_access',
@@ -456,7 +456,7 @@ function comment_node_view($node, $tease
           if ($node->comment == COMMENT_NODE_OPEN) {
             if (user_access('post comments')) {
               $links['comment_add'] = array(
-                'title' => t('Add new comment'),
+                'title' => t('Add a new comment'),
                 'href' => "comment/reply/$node->nid",
                 'attributes' => array('title' => t('Add a new comment to this page.')),
                 'fragment' => 'comment-form',
@@ -477,7 +477,7 @@ function comment_node_view($node, $tease
         if (user_access('post comments')) {
           if (variable_get('comment_form_location_' . $node->type, COMMENT_FORM_SEPARATE_PAGE) == COMMENT_FORM_SEPARATE_PAGE) {
             $links['comment_add'] = array(
-              'title' => t('Add new comment'),
+              'title' => t('Add a new comment'),
               'href' => "comment/reply/$node->nid",
               'attributes' => array('title' => t('Share your thoughts and opinions related to this posting.')),
               'fragment' => 'comment-form',
Index: modules/comment/comment.pages.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment/comment.pages.inc,v
retrieving revision 1.19
diff -u -p -r1.19 comment.pages.inc
--- modules/comment/comment.pages.inc	24 May 2009 17:39:31 -0000	1.19
+++ modules/comment/comment.pages.inc	7 Jun 2009 04:48:29 -0000
@@ -102,7 +102,7 @@ function comment_reply($node, $pid = NUL
         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 a new comment'));
       }
       else {
         drupal_set_message(t('You are not authorized to post comments.'), 'error');
