=== modified file 'uc_attribute/uc_attribute.admin.inc'
--- uc_attribute/uc_attribute.admin.inc	2008-11-19 15:30:04 +0000
+++ uc_attribute/uc_attribute.admin.inc	2008-12-26 18:03:59 +0000
@@ -12,7 +12,7 @@
   $header = array(
     array('data' => t('Name'), 'field' => 'a.name', 'sort' => 'asc'),
     t('Required'),
-    array('data' => t('Order'), 'field' => 'a.ordering'),
+    array('data' => t('Sort by'), 'field' => 'a.ordering'),
     t('Number of options'),
     t('Display type'),
     t('Operations'),
@@ -93,7 +93,7 @@
   );
   $form['ordering'] = array(
     '#type' => 'weight',
-    '#title' => t('Order'),
+    '#title' => t('Sort by'),
     '#description' => t('Multiple attributes on an add to cart form are sorted by this value and then by their name.<br />May be overridden at the product level.'),
     '#default_value' => isset($attribute->ordering) ? $attribute->ordering : 0,
   );
@@ -243,7 +243,7 @@
  */
 function theme_uc_attribute_options_form($form) {
 
-  $header = array(t('Name'), t('Default cost'), t('Default price'), t('Default weight'), array('data' => t('Order'), 'sort' => 'asc'), t('Operations'));
+  $header = array(t('Name'), t('Default cost'), t('Default price'), t('Default weight'), array('data' => t('Sort by'), 'sort' => 'asc'), t('Operations'));
 
   if (count(element_children($form['options'])) > 0) {
     foreach (element_children($form['options']) as $oid) {
@@ -314,7 +314,7 @@
   );
   $form['ordering'] = array(
     '#type' => 'weight',
-    '#title' => t('Order'),
+    '#title' => t('Sort by'),
     '#description' => t('Options will be listed sorted by this value and then by their name.<br />May be overridden at the product level.'),
     '#default_value' => isset($option->ordering) ? $option->ordering : 0,
     '#weight' => 4,
@@ -543,7 +543,7 @@
  */
 function theme_uc_object_attributes_form($form) {
   if ($form['view']['#value'] == 'overview') {
-    $header = array(t('Remove'), t('Name'), t('Default'), t('Required'), t('Order'), t('Display'));
+    $header = array(t('Remove'), t('Name'), t('Default'), t('Required'), t('Sort by'), t('Display'));
 
     if (count(element_children($form['attributes'])) > 0) {
       foreach (element_children($form['attributes']) as $aid) {
@@ -770,7 +770,7 @@
  * @ingroup themeable
  */
 function theme_uc_object_options_form($form) {
-  $header = array(t('Options'), t('Default'), t('Cost'), t('Price'), t('Weight'), t('Order'));
+  $header = array(t('Options'), t('Default'), t('Cost'), t('Price'), t('Weight'), t('Sort by'));
   $table_id_num = $tables = 0;
 
   foreach (element_children($form['attributes']) as $key) {

=== modified file 'uc_product/views/uc_product.views.inc'
--- uc_product/views/uc_product.views.inc	2008-11-07 20:19:07 +0000
+++ uc_product/views/uc_product.views.inc	2008-12-26 18:11:12 +0000
@@ -102,7 +102,7 @@
   );
 
   $data['uc_products']['ordering'] = array(
-    'title' => t('Ordering'),
+    'title' => t('Sort by'),
     'help' => t('The default sort criteria in the catalog.'),
     'sort' => array(
       'handler' => 'views_handler_sort',

=== modified file 'uc_product_kit/uc_product_kit.module'
--- uc_product_kit/uc_product_kit.module	2008-12-19 20:38:19 +0000
+++ uc_product_kit/uc_product_kit.module	2008-12-26 18:07:08 +0000
@@ -387,7 +387,7 @@
         '#size' => 5,
       );
       $form['base']['items'][$i]['ordering'] = array('#type' => 'weight',
-        '#title' => t('Ordering'),
+        '#title' => t('Sort by'),
         '#default_value' => isset($product->ordering) ? $product->ordering : 0,
       );
       $item = node_load($i);
@@ -408,7 +408,7 @@
     '#maxlength' => 6,
   );
   $form['base']['ordering'] = array('#type' => 'weight',
-    '#title' => t('List order'),
+    '#title' => t('Sort by'),
     '#delta' => 25,
     '#default_value' => $node->ordering,
     '#weight' => 30,

