Index: talk.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/talk/talk.module,v
retrieving revision 1.6.2.15
diff -u -p -r1.6.2.15 talk.module
--- talk.module	1 Sep 2009 14:44:49 -0000	1.6.2.15
+++ talk.module	26 Oct 2009 14:17:45 -0000
@@ -12,7 +12,7 @@
 function talk_help($path, $arg) {
   switch ($path) {
     case 'admin/help#talk':
-      $output = '<p>'. t('The talk module gives you the option to display comments on a seperate tab. The option is per content type and can be set in the workflow options of a content type.') .'</p>';
+      $output = '<p>'. t('The talk module gives you the option to display comments on a seperate tab. The option is per content type and can be set in the workflow options of a content type. You can control the text that shows in the tab, title, and link to the "talk" page.  You may use tokens in the patterns you set such as [title-raw], [node_comment_count], or [unread_comment_count].') .'</p>';
       return $output;
   }
 }
@@ -58,19 +58,19 @@ function talk_admin_form() {
     '#type' => 'textfield',
     '#title' => t('Title of the "talk" page'),
     '#default_value' => talk_title(NULL, 'page'),
-    '#description' => t('If token is enabled you can use tokens like [title] or [nid]'),
+    '#description' => t('If token is enabled you can use tokens like [title-raw] or [nid]'),
   );
   $form['talk_link'] = array(
     '#type' => 'textfield',
     '#title' => t('Link from the node "links" to the "talk" page'),
     '#default_value' => talk_title(NULL, 'link'),
-    '#description' => t('If token is enabled you can use tokens like [title] or [nid]. Leave blank to disable.'),
+    '#description' => t('If token is enabled you can use tokens like [title-raw] or [nid]. Leave blank to disable.'),
   );
   $form['talk_tab'] = array(
     '#type' => 'textfield',
     '#title' => t('Link from the node "tab" to the "talk" page'),
     '#default_value' => talk_title(NULL, 'tab'),
-    '#description' => t('If token is enabled you can use tokens like [title] or [nid].'),
+    '#description' => t('If token is enabled you can use tokens like [title-raw] or [nid].'),
   );
   $form['talk_page_no_comments'] = array(
     '#type' => 'checkbox',
