--- uc_userpoints_payment.module.orig 2009-06-25 16:59:13.000000000 -0700 +++ uc_userpoints_payment.module 2009-06-25 17:00:13.000000000 -0700 @@ -224,7 +224,7 @@ function uc_userpoints_payment_payment($ $pointExch = intval(variable_get(USERPOINTS_UC_PAYMENT, 1)); $orderTotal = $order->order_total; $points = intval(((round($orderTotal) * $pointExch) * (-1))); - $description = 'User made a purchase and paid with points (Ubercart Order ' . $order->order_id . ')'; + $description = t('User made a purchase and paid with !points (Ubercart Order #!order_id)', array_merge(userpoints_translation, array('!order_id' => $order->order_id))); if ($order === FALSE || uc_order_status_data($order->order_status, 'state') != 'in_checkout') { print t('An error has occurred during payment. Please contact us to ensure your order has submitted.');