diff --git a/sites/all/modules/commerce_discount/commerce_discount.inline_conditions.inc b/sites/all/modules/commerce_discount/commerce_discount.inline_conditions.inc
index f45ff05..1369838 100644
--- a/sites/all/modules/commerce_discount/commerce_discount.inline_conditions.inc
+++ b/sites/all/modules/commerce_discount/commerce_discount.inline_conditions.inc
@@ -410,11 +410,7 @@ function commerce_order_has_specific_quantity_products_configure($settings) {
     '#type' => 'select',
     '#title' => t('Operator'),
     '#title_display' => 'invisible',
-    '#options' => array(
-      '<' => t('quantity lower than'),
-      '==' => t('quantity equals'),
-      '>' => t('quantity greater than'),
-    ),
+    '#options' => _inline_conditions_order_operator_options(),
     '#default_value' => !empty($settings['operator']) ? $settings['operator'] : '==',
   );
 
@@ -650,4 +646,4 @@ function commerce_product_has_specified_terms_configure($settings) {
   );
 
   return $form;
-}
+} 
diff --git a/sites/all/modules/commerce_discount/commerce_discount.rules.inc b/sites/all/modules/commerce_discount/commerce_discount.rules.inc
index 2ce09c2..c45cc14 100644
--- a/sites/all/modules/commerce_discount/commerce_discount.rules.inc
+++ b/sites/all/modules/commerce_discount/commerce_discount.rules.inc
@@ -1420,6 +1420,17 @@ function _commerce_discount_operator_options() {
     '<=' => t('less than or equal to'),
     '==' => t('equals'),
     '>' => t('greater than'),
-    '>=' => t('greater than or equal to'),
+    '>=' => t('greater than or eq ual to'),
+  );
+}
+
+/**
+ * Options list callback for condition
+ */
+function _inline_conditions_order_operator_options() {
+  return array(
+    '<' => t('quantity lower than'),
+    '==' => t('quantity equals'),
+    '>' => t('quantity greater than'),
   );
 }
