Commit 01e01555 by William Desloge

Fix missing call to translate in shoppingcart model

parent cf759414
......@@ -367,7 +367,8 @@ class PaidCourseRegistration(OrderItem):
item.mode = course_mode.slug
item.qty = 1
item.unit_cost = cost
item.line_desc = u'Registration for Course: {0}'.format(course.display_name_with_default)
item.line_desc = _(u'Registration for Course: {course_name}').format(
course_name=course.display_name_with_default)
item.currency = currency
order.currency = currency
item.report_comments = item.csv_report_comments
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment