? .svn
? p_238958_typos.patch
? components/.svn
? po/.svn
Index: webform.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/webform.module,v
retrieving revision 1.113.2.70.2.30
diff -u -p -r1.113.2.70.2.30 webform.module
--- webform.module	21 Mar 2008 23:46:54 -0000	1.113.2.70.2.30
+++ webform.module	28 Mar 2008 12:27:51 -0000
@@ -19,7 +19,7 @@ function webform_help($section = "admin/
   $output =  "";
   switch ($section) {
     case 'admin/settings/webform' :
-      $output = t("Webforms are forms and questionnaires. To add one select <strong>create content -&gt; webform</strong>. Below you can set different security and debug options.");
+      $output = t("Webforms are forms and questionnaires. To add one, select !create_path.", array('!create_path' => l(t('Create content > Webform'), 'node/add/webform')));
       break;
     case 'admin/help#webform' :
       $output = t("<p>This module lets you create forms or questionnaires and define their content. Submissions from these forms are stored in the database and optionally also sent by e-mail to a predefined address.</p>
@@ -858,10 +858,10 @@ function webform_view(&$node, $teaser = 
 function webform_admin_settings() {
   $form['components'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Available Components'),
+    '#title' => t('Available components'),
     '#collapsible' => TRUE,
     '#collapsed' => FALSE,
-    '#description' => t('Below is a list of supported field types available for webform. You may disable any of these components by unchecking its corresponding box. Only checked components will be available in existing or new webforms.'),
+    '#description' => t('These are the available field types for your installation of Webform. You may disable any of these components by unchecking its corresponding box. Only checked components will be available in existing or new webforms.'),
   );
 
   // Add each component to the form:
@@ -878,35 +878,35 @@ function webform_admin_settings() {
 
   $form['email'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Default E-mail Values'),
+    '#title' => t('Default e-mail values'),
     '#collapsible' => TRUE,
     '#collapsed' => FALSE,
   );
 
   $form['email']['webform_default_from_address']  = array(
     '#type' => 'textfield',
-    '#title' => t("From e-mail address"),
+    '#title' => t("From address"),
     '#default_value' => variable_get('webform_default_from_address', variable_get('site_mail', ini_get('sendmail_from'))),
-    '#description' => t('Default sender address. This may be the E-mail address of the maintainer of your forms. This is also used for Reply-To, Return-Path and Errors-To.'),
+    '#description' => t('The default sender address for emailed webform results; often the e-mail address of the maintainer of your forms.'),
   );
 
   $form['email']['webform_default_from_name']  = array(
     '#type' => 'textfield',
-    '#title' => t("From Name"),
+    '#title' => t("From name"),
     '#default_value' => variable_get('webform_default_from_name', variable_get('site_name', '')),
-    '#description' => t('Default sender name which is displayed together with the E-mail address.'),
+    '#description' => t('The default sender name which is used along with the default from address.'),
   );
 
   $form['email']['webform_default_subject']  = array(
     '#type' => 'textfield',
-    '#title' => t("Default Subject"),
+    '#title' => t("Default subject"),
     '#default_value' => variable_get('webform_default_subject', t('Form submission from: [title]')),
-    '#description' => t('Default Subject. If not other stated in the form configuration this is appended to your form title. If you have e.g. defined "Your " (note the space) as a default subject and a form titled with "Order" the e-mail subject will be "Your Order".'),
+    '#description' => t('If not otherwise stated in the form configuration, this is used as the subject line of any emailed results.'),
   );
 
   $form['advanced'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Advanced Options'),
+    '#title' => t('Advanced options'),
     '#collapsible' => TRUE,
     '#collapsed' => TRUE,
   );
@@ -914,17 +914,17 @@ function webform_admin_settings() {
   $form['advanced']['webform_use_cookies']  = array(
     '#type' => 'checkbox',
     '#checked_value' => 1,
-    '#title' => t("Allow Cookies for Tracking Submissions"),
+    '#title' => t("Allow cookies for tracking submissions"),
     '#default_value' => variable_get("webform_use_cookies", 0),
-    '#description' => t('<a href="http://www.wikipedia.org/wiki/HTTP_cookie">Cookies</a> can be used to help prevent the same user from repeatedly submitting a webform. This feature is not needed for limiting submissions per user, though it can increase accuracy in some situations. Besides cookies, webform also uses IP addresses and site usernames to prevent repeated submissions.'),
+    '#description' => t('!cookies can be used to help prevent the same user from repeatedly submitting a webform. This feature is not needed for limiting submissions per user, though it can increase accuracy in some situations. Besides cookies, Webform also uses IP addresses and site usernames to prevent repeated submissions.', array('!cookies' => l(t('Cookies'), 'http://www.wikipedia.org/wiki/HTTP_cookie'))),
   );
 
   $form['advanced']['webform_debug']  = array(
     '#type' => 'select',
-    '#title' => t("Webforms Debug"),
+    '#title' => t("Webforms debug"),
     '#default_value' => variable_get("webform_debug", 0),
-    '#options' => array(0 => t("OFF"), 1 => t("Log submissions"), 2 => t("Full debug")),
-    '#description' => t('Set this option to "Log submissions" to log all submissions in the watchdog. Set it to "Full debug" to print debug info on submission. You probably want to leave this option on "OFF".')
+    '#options' => array(0 => t("Off"), 1 => t("Log submissions"), 2 => t("Full debug")),
+    '#description' => t('Set to "Log submissions" to log all submissions in the watchdog. Set to "Full debug" to print debug info on submission.')
   );
   return system_settings_form($form);
 }
Index: components/email.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/components/email.inc,v
retrieving revision 1.16.2.7.2.4
diff -u -p -r1.16.2.7.2.4 email.inc
--- components/email.inc	24 Feb 2008 20:34:41 -0000	1.16.2.7.2.4
+++ components/email.inc	28 Mar 2008 12:27:51 -0000
@@ -139,7 +139,7 @@ function _webform_submission_display_ema
 function _webform_help_email($section) {
   switch ($section) {
     case 'admin/settings/webform#email_description':
-      $output = t("A textfield that automatically fills in logged-in users e-mail.");
+      $output = t("A textfield that automatically fills in a logged-in user's e-mail.");
       break;
   }
   return $output;
Index: components/fieldset.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/components/fieldset.inc,v
retrieving revision 1.3.4.4
diff -u -p -r1.3.4.4 fieldset.inc
--- components/fieldset.inc	18 Jan 2008 06:34:35 -0000	1.3.4.4
+++ components/fieldset.inc	28 Mar 2008 12:27:51 -0000
@@ -78,7 +78,7 @@ function _webform_submission_display_fie
 function _webform_help_fieldset($section) {
   switch ($section) {
     case 'admin/settings/webform#fieldset_description':
-      $output = t("Fieldsets allow you to organize complex webforms into groups of fields.");
+      $output = t("Fieldsets allow you to organize numerous fields into a cohesive group.");
       break;
   }
   return $output;
Index: components/hidden.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/components/hidden.inc,v
retrieving revision 1.11.2.3.2.4
diff -u -p -r1.11.2.3.2.4 hidden.inc
--- components/hidden.inc	1 Feb 2008 05:36:53 -0000	1.11.2.3.2.4
+++ components/hidden.inc	28 Mar 2008 12:27:51 -0000
@@ -84,7 +84,7 @@ function _webform_submission_display_hid
 function _webform_help_hidden($section) {
   switch ($section) {
     case 'admin/settings/webform#hidden_description':
-      $output = t("Create a field which is not visible to the user, but is recorded with the submission.");
+      $output = t("A field which is not visible to the user, but is recorded with the submission.");
       break;
   }
   return $output;
Index: components/markup.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/components/markup.inc,v
retrieving revision 1.3.2.4.2.4
diff -u -p -r1.3.2.4.2.4 markup.inc
--- components/markup.inc	28 Feb 2008 02:12:47 -0000	1.3.2.4.2.4
+++ components/markup.inc	28 Mar 2008 12:27:51 -0000
@@ -78,7 +78,7 @@ function _webform_submission_display_mar
 function _webform_help_markup($section) {
   switch ($section) {
     case 'admin/settings/webform#markup_description':
-      $output = t("Presents a markup area of text. Does not render a field.");
+      $output = t("Displays text as HTML in the form; does not render a field.");
       break;
   }
   return $output;
