Index: includes/authorize.inc
===================================================================
RCS file: /Users/wright/drupal/local_repo/drupal/includes/authorize.inc,v
retrieving revision 1.1
diff -u -p -r1.1 authorize.inc
--- includes/authorize.inc	15 Oct 2009 21:19:30 -0000	1.1
+++ includes/authorize.inc	20 Oct 2009 18:29:21 -0000
@@ -64,10 +64,10 @@ function authorize_filetransfer_form($fo
     '#weight' => 100,
   );
 
-  $form['submit_process'] = array(
-    '#name' => 'process_updates', // This is later changed in JS.
+  $form['submit_authorize'] = array(
+    '#name' => 'authorize', // This is later changed in JS.
     '#type' => 'submit',
-    '#value' => t('Process Updates'), // As is this. @see authorize.js
+    '#value' => t('Authorize'), // As is this. @see authorize.js
     '#weight' => 100,
     '#attributes' => array('style' => 'display:none'),
   );
@@ -92,8 +92,8 @@ function authorize_filetransfer_form($fo
       setcookie('has_js', '', time() - 3600, '/');
       unset($_COOKIE['has_js']);
 
-      // Change the submit button to the submit_process one.
-      $form['submit_process']['#attributes'] = array();
+      // Change the submit button to the submit_authorize one.
+      $form['submit_authorize']['#attributes'] = array();
       unset($form['submit_connection']);
 
       // Activate the proper filetransfer settings form.
@@ -144,7 +144,7 @@ function authorize_filetransfer_form_val
 function authorize_filetransfer_form_submit($form, &$form_state) {
   global $base_url;
   switch ($form_state['clicked_button']['#name']) {
-    case 'process_updates':
+    case 'authorize':
 
       // Save the connection settings to the DB.
       $filetransfer_backend = $form_state['values']['connection_settings']['authorize_filetransfer_default'];
Index: misc/authorize.js
===================================================================
RCS file: /Users/wright/drupal/local_repo/drupal/misc/authorize.js,v
retrieving revision 1.1
diff -u -p -r1.1 authorize.js
--- misc/authorize.js	15 Oct 2009 21:19:31 -0000	1.1
+++ misc/authorize.js	20 Oct 2009 18:29:21 -0000
@@ -22,7 +22,7 @@ Drupal.behaviors.authorizeFileTransferFo
     }
     // Hides the submit button for non-js users
     $('#edit-submit-connection').hide();
-    $('#edit-submit-process').show();
+    $('#edit-submit-authorize').show();
   }
 }
 
Index: modules/update/update.manager.inc
===================================================================
RCS file: /Users/wright/drupal/local_repo/drupal/modules/update/update.manager.inc,v
retrieving revision 1.1
diff -u -p -r1.1 update.manager.inc
--- modules/update/update.manager.inc	15 Oct 2009 21:19:31 -0000	1.1
+++ modules/update/update.manager.inc	20 Oct 2009 18:29:21 -0000
@@ -134,7 +134,7 @@ function update_manager_update_form($for
     switch ($project['status']) {
       case UPDATE_NOT_SECURE:
       case UPDATE_REVOKED:
-        $entry['title'] .= ' ' . t('(Security Update)');
+        $entry['title'] .= ' ' . t('(Security update)');
         $entry['#weight'] = -2;
         $type = 'security';
         break;
