--- old/nodequeue.workflow_ng.inc	2008-05-22 11:44:29.000000000 +1000
+++ new/nodequeue.workflow_ng.inc	2008-05-22 12:07:45.000000000 +1000
@@ -4,7 +4,7 @@
  * @file nodequeue_workflow_ng.inc
  * 
  * This include file is enabled when Workflow-ng module is enabled. 
- * It adds some actions that allow nodequeue manipualtion and interaction. 
+ * It adds some actions that allow nodequeue manipulation and interaction. 
  */
 
 
@@ -18,8 +18,7 @@ function nodequeue_action_info() {
       '#new arguments' => array(
         'nodequeue' => array('#entity' => 'nodequeue', '#label' => t('Nodequeue')),
       ),
-      '#description' => t('Load a nodequeue as a new argument. This action must be used before any other action on
-        a nodequeue can be preformed.'),
+      '#description' => t('Load a nodequeue as a new argument. This action must be used before any other action on a nodequeue can be preformed.'),
       '#module' => 'Nodequeue',
    );
    $info['nodequeue_workflow_ng_action_add_node_to_nodequeue'] = array(
@@ -37,8 +36,7 @@ function nodequeue_action_info() {
         'node' => array('#entity' => 'node', '#label' => t('Content which will be removed from the nodequeue')),
         'nodequeue' => array('#entity' => 'nodequeue', '#label' => t('Nodequeue that content will be removed from')),
       ),
-      '#description' => t('Remove content from a loaded nodequeue. If a content is in the queue more than once, 
-        only the first (closest to 0 position, or the front of the queue) will be removed.'),      
+      '#description' => t('Remove content from a loaded nodequeue. If a content is in the queue more than once, only the first (closest to 0 position, or the front of the queue) will be removed.'),      
       '#module' => 'Nodequeue',    
   );
   $info['nodequeue_workflow_ng_action_delete_nodequeue'] = array(
@@ -101,13 +99,18 @@ function _nodequeue_workflow_ng_action_g
 function nodequeue_workflow_ng_action_load_nodequeue_form($settings = array(), $argument_info) {
   //Get existing nodequeues.
   $options = _nodequeue_workflow_ng_action_get_nodequeue();
-  $options ? $description = t('Specify the queue id (qid) into which the node should be submitted. 
-    If the queue is a smartqueue, the node shall be placed into every subqueue for which it is eligible.') : $description = t('There are no exisiting queues. Create a nodequeue manually through the !url or using a workflow_ng action.', 
-    array('!url' => l('settings', 'admin/content/nodequeue')));
+  if ($options) {
+    $description = t('Specify the queue into which the node should be submitted. If the queue is a smartqueue, the node shall be placed into every subqueue for which it is eligible.') ;
+  } else {
+    $description = t(
+      'There are no existing queues. Create a nodequeue manually through the !url or using a workflow_ng action.', 
+      array('!url' => l('settings', 'admin/content/nodequeue'))
+    );
+  }
   $form = array();
   $form['nodequeue_list'] = array(
     '#type' => 'select',
-    '#title' => t('Nodequeue by list'),
+    '#title' => t('Select nodequeue'),
     '#description' => $description,
     '#options' => $options,  
     '#default_value' => $settings['nodequeue_list'],
@@ -115,8 +118,8 @@ function nodequeue_workflow_ng_action_lo
   );
   $form['nodequeue_token'] = array(
     '#type' => 'textfield',
-    '#title' => t('Nodequeue by text'),
-    '#description' => t('Enter the queue id (qid) of the exisiting nodequeue.'),
+    '#title' => t('Nodequeue id'),
+    '#description' => t('Enter the queue id (qid) of the nodequeue into which the node should be submitted, or leave blank if you have selected one from the list above.'),
     '#default_value' => $settings['nodequeue_token'],
   ); 
   workflow_ng_token_replacement_help($form, $argument_info);   
@@ -183,7 +186,7 @@ function nodequeue_workflow_ng_action_ad
   $queue->title = $title;
   $queue->subqueue_title = $title;
   $queue->size = $settings['size'];
-  $queue->reverese = $settings['reverese'];
+  $queue->reverse = $settings['reverse'];
   $queue->add_subqueue = array(TRUE);
   //For consistency with workflow_ng becoming rules module in D6, 
   //set the nodequeue owner accordingly.
@@ -202,11 +205,11 @@ function nodequeue_workflow_ng_action_ad
 function nodequeue_workflow_ng_action_add_nodequeue_form($settings = array(), $argument_info) {
   $queue = (object)$settings;
   $form = nodequeue_edit_queue_form($queue);
-  //Remove redundent fields.
+  //Remove redundant fields.
   unset($form['description']);
   unset($form['submit']);
   
-  //Add 'show in tab' option, taken from nodequeu admin settings.
+  //Add 'show in tab' option, taken from nodequeue admin settings.
   $nodequeue_tab = nodequeue_admin_settings();
   $form['tab_settings'] = array(
     '#type' => 'fieldset',
@@ -216,7 +219,7 @@ function nodequeue_workflow_ng_action_ad
   $form['tab_settings']['show_in_ui'] = array(
     '#type' => 'checkbox',
     '#title' => t('Show in UI'),
-    '#description' => t('Determine if the nodequeue should be visible via the nodequeu !url page.', array('!url' => l('settings', 'admin/content/nodequeue'))),
+    '#description' => t('Determine if the nodequeue should be visible via the nodequeue !url page.', array('!url' => l('settings', 'admin/content/nodequeue'))),
     '#default_value' => $settings['show_in_ui'],
   );  
   workflow_ng_token_replacement_help($form, $argument_info);
