--- uc_payment_pack.module
+++ (clipboard)
@@ -69,8 +69,8 @@
   );
   $methods[] = array(
     'id' => 'other',
-    'name' => t('Other'),
-    'title' => t('Other'),
+    'name' => variable_get('uc_payment_method_other_label', t('Other')),
+    'title' => variable_get('uc_payment_method_other_label', t('Other')),
     'desc' => t('A generic payment method type.'),
     'callback' => 'uc_payment_method_other',
     'weight' => 10,
@@ -114,6 +114,15 @@
         db_query("INSERT INTO {uc_payment_other} (order_id, description) VALUES (%d, '%s')", $arg1->order_id, $arg1->payment_details['pm_other_description']);
       }
       break;
+
+    case 'settings':
+      $form['uc_payment_method_other_label'] = array(
+        '#type' => 'textfield',
+        '#title' => t('Label'),
+        '#default_value' => variable_get('uc_payment_method_other_label', t('Other')),
+        '#description' => t('Enter the label of this payment method as it should appear on the checkout form.'),
+      );
+      return $form;
   }
 }
 
