--- uc_profile.module.orig	2009-11-23 15:34:05.000000000 +0300
+++ uc_profile.module	2009-11-23 23:50:15.000000000 +0300
@@ -93,6 +93,26 @@
 }
 
 /**
+  * Implementation of hook_form_alter().
+  *  Used to change the title of the ubercart profile page.
+ */
+function uc_profile_form_alter(&$form, $form_state, $form_id) {
+  if (in_array($form_id, array('user_register', 'user_profile_form')) AND isset($form['ubercart'])) {
+    $form['ubercart']['#title'] = t(variable_get('uc_profile_title', 'Cart Profile'));
+  }
+}
+
+/**
+  * Implementation of hook_menu_alter().
+  *  Used to change the title of the ubercart profile page.
+ */
+function uc_profile_menu_alter(&$items) {
+  if (isset($items['user/%user_category/edit/ubercart'])) {
+    $items['user/%user_category/edit/ubercart']['title arguments'][0] = t(variable_get('uc_profile_title', 'Cart Profile'));
+  }
+}
+
+/**
  * Implementation of hook_uc_checkout_complete().
  *  Updates the user profile
  */
