? semantic_cck-946058.patch
Index: semantic_cck.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/semantic_cck/semantic_cck.module,v
retrieving revision 1.3.2.6
diff -u -p -r1.3.2.6 semantic_cck.module
--- semantic_cck.module	26 Sep 2010 08:51:26 -0000	1.3.2.6
+++ semantic_cck.module	19 Oct 2010 13:27:59 -0000
@@ -29,7 +29,7 @@ function semantic_cck_settings_form($fie
 
   $form['semantic_html_fieldset'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Semantic HTML Output'),
+    '#title' => t('Semantic HTML output'),
     '#collapsible' => TRUE,
     '#collapsed' => ($settings['semantic_cck_use_semantic_output']) ? FALSE : TRUE,
     '#weight' => 3,
@@ -52,7 +52,7 @@ function semantic_cck_settings_form($fie
   );
   $form['semantic_html_fieldset']['label_fieldset'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Field Label'),
+    '#title' => t('Field label'),
     '#description' => t('<strong>Please note that the placement or appearance of the label is still determined by the CCK !display_fields_settings.</strong>', array('!display_fields_settings' => l(t('Display fields settings'), 'admin/content/node-type/' . str_replace("_", "-", $type) . '/display'))),
     '#collapsible' => TRUE,
     '#collapsed' => TRUE,
@@ -60,7 +60,7 @@ function semantic_cck_settings_form($fie
   );
   $form['semantic_html_fieldset']['label_fieldset']['above'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Labels Above Field Value(s)'),
+    '#title' => t('Labels above field value(s)'),
     '#description' => t('How to render the label when located above the field value(s).'),
     '#collapsible' => FALSE,
     '#collapsed' => FALSE,
@@ -92,7 +92,7 @@ function semantic_cck_settings_form($fie
   );
   $form['semantic_html_fieldset']['label_fieldset']['inline'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Inline Labels'),
+    '#title' => t('Inline labels'),
     '#description' => t('How to render the label when located inline with the field value(s).'),
     '#collapsible' => FALSE,
     '#collapsed' => FALSE,
@@ -124,14 +124,14 @@ function semantic_cck_settings_form($fie
   );
   $form['semantic_html_fieldset']['items_fieldset'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Field Value(s)'),
+    '#title' => t('Field value(s)'),
     '#collapsible' => TRUE,
     '#collapsed' => TRUE,
     '#attributes' => array('class' => 'semantic-cck-multiple-values'),
   );
   $form['semantic_html_fieldset']['items_fieldset']['multivalue'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Multiple Value Field'),
+    '#title' => t('Multiple value field'),
     '#collapsible' => FALSE,
     '#collapsed' => FALSE,
     '#attributes' => array('class' => 'field-values'),
@@ -181,7 +181,7 @@ function semantic_cck_settings_form($fie
   );
   $form['semantic_html_fieldset']['items_fieldset']['singlevalue'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Single Value Field'),
+    '#title' => t('Single value field'),
     '#collapsible' => TRUE,
     '#collapsed' => TRUE,
     '#attributes' => array('class' => 'semantic-cck-single-values-settings'),
@@ -265,8 +265,8 @@ function semantic_cck_form_alter(&$form,
     $additions = array();
     $additions['semantic_cck_use_semantic_output'] = array(
       '#type' => 'checkbox',
-      '#title' => t('Use Semantic HTML For Field Output'),
-      '#description' => t('Check this box to output the field using the Semantic HTML settings below. Leave this box unchecked to use default CCK field output.'),
+      '#title' => t('Use semantic HTML for field output'),
+      '#description' => t('Check this box to output the field using the semantic HTML settings below. Leave this box unchecked to use default CCK field output.'),
       '#return_value' => 1,
       '#default_value' => isset($field['semantic_cck_use_semantic_output']) ? $field['semantic_cck_use_semantic_output'] : 0,
       '#required' => FALSE,
@@ -274,8 +274,8 @@ function semantic_cck_form_alter(&$form,
     );
     $additions['semantic_cck_use_semantic_instance'] = array(
       '#type' => 'checkbox',
-      '#title' => t('Use Semantic HTML Settings Below For This Instance Only'),
-      '#description' => t('Check this box to output the field using the Semantic HTML settings below <strong>only for this instance of the field</strong>.'),
+      '#title' => t('Use semantic HTML settings below for this instance only'),
+      '#description' => t('Check this box to output the field using the semantic HTML settings below <strong>only for this instance of the field</strong>.'),
       '#return_value' => 1,
       '#default_value' => isset($field['widget']['semantic_cck_use_semantic_instance']) ? $field['widget']['semantic_cck_use_semantic_instance'] : 0,
       '#required' => FALSE,
@@ -437,4 +437,4 @@ function semantic_cck_preprocess_content
 
     $variables['item_attributes'][$delta]['class'] = str_replace('#', $delta, implode(' ', $item_classes));
   }
-}
\ No newline at end of file
+}
