--- uc_ticket.admin.inc?revision=1.1.2.20	2010-01-28 21:35:06.000000000 -0600
+++ uc_ticket.admin.inc	2010-01-28 21:34:49.000000000 -0600
@@ -43,8 +43,8 @@ function uc_ticket_list_tickets() {
     $row[] = array('data' => l($data->title, 'admin/store/ticket/' . $data->ticket_id), 'class' => 'title-cell');
     $row[] = array('data' => uc_ticket_get_status_name($data->status), 'class' => 'username-cell');
     $row[] = array('data' => uc_ticket_get_category_name($data->category), 'class' => 'username-cell');
-    $row[] = array('data' => date('m/d/Y h:i A', $data->created), 'class' => 'date-cell');
-    $row[] = array('data' => date('m/d/Y h:i A', $data->updated), 'class' => 'date-cell');
+    $row[] = array('data' => format_date($data->created, 'small', NULL, NULL, $GLOBALS['language']->language), 'class' => 'date-cell');
+    $row[] = array('data' => format_date($data->updated, 'small', NULL, NULL, $GLOBALS['language']->language), 'class' => 'date-cell');
     $links = l(t('VIEW'), 'admin/store/ticket/' . $data->ticket_id);
     $links .= (user_access('delete tickets')) ? ' | ' . l(t('DELETE'), 'admin/store/ticket/' . $data->ticket_id . '/delete') : '';
     $row[] = array('data' => $links, 'class' => 'username-cell');
@@ -147,8 +147,10 @@ function uc_ticket_search_form(&$form_st
     $row[] = array('data' => l($data->title, 'admin/store/ticket/' . $data->ticket_id), 'class' => 'title-cell');
     $row[] = array('data' => uc_ticket_get_status_name($data->status), 'class' => 'username-cell');
     $row[] = array('data' => uc_ticket_get_category_name($data->category), 'class' => 'username-cell');
-    $row[] = array('data' => date('m/d/Y h:i A', $data->created), 'class' => 'date-cell');
-    $row[] = array('data' => date('m/d/Y h:i A', $data->updated), 'class' => 'date-cell');
+    $row[] = array('data' => format_date($data->created, 'small', NULL, NULL, $GLOBALS['language']->language), 'class' => 'date-cell');
+    $row[] = array('data' => format_date($data->updated, 'small', NULL, NULL, $GLOBALS['language']->language), 'class' => 'date-cell');
+    // $row[] = array('data' => date('m/d/Y h:i A', $data->created), 'class' => 'date-cell');
+    // $row[] = array('data' => date('m/d/Y h:i A', $data->updated), 'class' => 'date-cell');
     $links = l(t('VIEW'), 'admin/store/ticket/' . $data->ticket_id);
     $links .= (user_access('delete tickets')) ? ' | ' . l(t('DELETE'), 'admin/store/ticket/' . $data->ticket_id . '/delete') : '';
     $row[] = array('data' => $links, 'class' => 'username-cell');
@@ -401,8 +403,8 @@ function uc_ticket_display_ticket($ticke
   //ticket info box 
   $output .= '<div id="info_box"><fieldset><legend>' . t('Ticket Information') . '</legend>';
   $output .= '<strong>' . t('Ticket ID:') . '</strong> ' . $ticket_trail->ticket_id . '<br />';
-  $output .= '<strong>' . t('Created on:') . '</strong> ' . date('m/d/Y g:i A', $ticket_trail->created) . '<br />';
-  $output .= '<strong>' . t('Last update:') . '</strong> ' . date('m/d/Y g:i A', $ticket_trail->updated) . '<br />';
+  $output .= '<strong>' . t('Created on:') . '</strong> ' . format_date($ticket_trail->created, 'small', NULL, NULL, $GLOBALS['language']->language) . '<br />';
+  $output .= '<strong>' . t('Last update:') . '</strong> ' . format_date($ticket_trail->updated, 'small', NULL, NULL, $GLOBALS['language']->language) . '<br />';
   $output .= '<strong>' . t('Category:') . '</strong> ' . uc_ticket_get_category_name($ticket_trail->category) . '<br />';
   $output .= '<strong>' . t('Status:') . '</strong> ' . uc_ticket_get_status_name($ticket_trail->status) . '<br />';
   $output .= '<strong>' . t('Order:') . '</strong> ' . $order_id = ($ticket_trail->order_id) ? l($ticket_trail->order_id, 'admin/store/orders/' . $ticket_trail->order_id) . '<br />' : t('none') . '<br />';
@@ -492,9 +494,9 @@ function uc_ticket_view_controls_form(&$
 
   $output = '<div id="form_functions">';
   if (user_access('delete tickets')) {
-    $output .= l('<img src="/' . drupal_get_path('module', 'uc_ticket') . '/images/delete.png' . '" alt="' . t('Delete Ticket') . '" />', 'admin/store/ticket/' . $ticket->ticket_id . '/delete', array('html' => TRUE));
+    $output .= l('<img src="' . $base_url . '/' . drupal_get_path('module', 'uc_ticket') . '/images/delete.png' . '" alt="' . t('Delete Ticket') . '" />', 'admin/store/ticket/' . $ticket->ticket_id . '/delete', array('html' => TRUE));
   }
-  $output .= l('<img src="/' . drupal_get_path('module', 'uc_ticket') . '/images/add.png' . '" alt="' . t('Add Followup To Ticket') . '" />', 'admin/store/ticket/followup/' . $ticket->ticket_id, array('html' => TRUE));
+  $output .= l('<img src="' . $base_url . '/' . drupal_get_path('module', 'uc_ticket') . '/images/add.png' . '" alt="' . t('Add Followup To Ticket') . '" />', 'admin/store/ticket/followup/' . $ticket->ticket_id, array('html' => TRUE));
   $output .= '</div>';
 
   $form['controls']['functions'] = array(
@@ -547,7 +549,7 @@ function uc_ticket_create_followup_form(
   $ticket = db_fetch_object(db_query($SQL, $ticket_id));
 
   $form['description'] = array(
-    '#value' => 'Use this form to create a followup to a ticket.',
+    '#value' => t('Use this form to create a followup to a ticket.'),
   );
 
   $form['return'] = array(
@@ -556,7 +558,7 @@ function uc_ticket_create_followup_form(
 
   $form['followup'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Create a followup to ticket ' . $ticket_id),
+    '#title' => t('Create a followup to ticket !ticket_id', array('!ticket_id' => $ticket_id)),
   );
 
   $form['followup']['email'] = array(
@@ -579,7 +581,7 @@ function uc_ticket_create_followup_form(
   );
 
   $templates = uc_ticket_get_templates();
-  $templates[0] = 'Please Select...';
+  $templates[0] = t('Please select...');
   ksort($templates);
 
   $form['followup']['template'] = array(
@@ -614,11 +616,13 @@ function uc_ticket_create_followup_form(
   $form['followup']['send'] = array(
     '#type' => 'checkbox',
     '#title' => t('Send email to customer?'),
+    '#value' => TRUE,
   );
 
   $form['followup']['sig'] = array(
     '#type' => 'checkbox',
     '#title' => t('Add signature to followup?'),
+    '#value' => TRUE,
   );
 
   $form['followup']['ticket_id'] = array(
@@ -661,7 +665,7 @@ function uc_ticket_create_followup_form_
   db_query($SQL, $time, $status, $ticket_id);
   if ($form_state['values']['send'] == TRUE) {
     uc_ticket_email_customer($ticket_id, $subject, $body, $email, $file);
-    drupal_set_message('Email sent to customer.');
+    drupal_set_message(t('Email sent to customer.'));
   }
   drupal_set_message(t('Followup to ticket @ticket_id added.', array('@ticket_id' => $ticket_id)));
   $form_state['redirect'] = 'admin/store/ticket/' . $ticket_id;
