diff --git a/commerce_discount.rules.inc b/commerce_discount.rules.inc
index b0fa2a0..447be80 100644
--- a/commerce_discount.rules.inc
+++ b/commerce_discount.rules.inc
@@ -1294,7 +1294,7 @@ function commerce_discount_add_price_component(EntityDrupalWrapper $line_item_wr
     'currency_code' => $discount_amount['currency_code'],
     'data' => array(
       'discount_name' => $discount_name,
-      'discount_component_title' => empty($component_title) ? 'discount' : $component_title,
+      'discount_component_title' => empty($component_title) ? t('Discount') : $component_title,
     ),
   );
 
diff --git a/includes/commerce_discount.admin.inc b/includes/commerce_discount.admin.inc
index 8ccf43e..da52495 100644
--- a/includes/commerce_discount.admin.inc
+++ b/includes/commerce_discount.admin.inc
@@ -156,8 +156,8 @@ function commerce_discount_form($form, &$form_state, CommerceDiscount $commerce_
   $form['component_title'] = array(
     '#title' => t('Name'),
     '#type' => 'textfield',
-    '#default_value' => $commerce_discount->component_title,
-    '#description' => t('Shown to customers.'),
+    '#default_value' => empty($commerce_discount->component_title) ? t('Discount') : $commerce_discount->component_title,
+    '#description' => t('Shown to customers. Defaults to "Discount".'),
   );
 
   // Machine-readable type name.
