? quote.patch
Index: quote.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/quote/quote.module,v
retrieving revision 1.29.2.1
diff -u -p -r1.29.2.1 quote.module
--- quote.module	30 Jun 2007 13:40:49 -0000	1.29.2.1
+++ quote.module	9 Aug 2007 23:36:56 -0000
@@ -86,9 +86,9 @@ function quote_link($type, $post = 0, $m
       $node = node_load(arg(1));
       if (in_array($node->type, variable_get('quote_node_types', array('blog', 'story'))) && $node->comment == COMMENT_NODE_READ_WRITE) {
         $links['quote'] = array(
-          'title' => t('Quote'),
+          'title' => t('quote'),
           'href' => "comment/reply/$post->nid/$post->cid",
-          'attributes' => array('title' => t('Jump to the first comment of this posting.')),
+          'attributes' => array('title' => t('Quote this post in your reply.')),
           'query' => 'quote=1'
         );
       }
@@ -96,7 +96,7 @@ function quote_link($type, $post = 0, $m
     elseif ($type == 'node' && in_array($post->type, variable_get('quote_node_types', array('blog', 'story'))) && $post->comment == COMMENT_NODE_READ_WRITE && variable_get('quote_node_link_display', 1)) {
       // Display quote link for nodes only if the node is accepting comments, has the quote filter enabled and has quote_link_display set.
       $links['quote'] = array(
-        'title' => t('Quote'),
+        'title' => t('quote'),
         'href' => "comment/reply/$post->nid",
         'attributes' => array('title' => t('Quote this post in your reply.')),
         'query' => 'quote=1'
