Merge pull request #3366 from IONISx/missing-translations
Missing translations
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -81,7 +81,7 @@ site_status_msg = get_site_status_msg(course_id)
|
||||
<ol class="user">
|
||||
<li class="primary">
|
||||
<a class="shopping-cart" href="${reverse('shoppingcart.views.show_cart')}">
|
||||
<i class="icon-shopping-cart"></i> Shopping Cart
|
||||
<i class="icon-shopping-cart"></i> ${_("Shopping Cart")}
|
||||
</a>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
|
||||
<div class="container">
|
||||
<section class="notification">
|
||||
<h2>Thank you for your Purchase!</h2>
|
||||
<p>Please print this receipt page for your records. You should also have received a receipt in your email.</p>
|
||||
<h2>${_("Thank you for your Purchase!")}</h2>
|
||||
<p>${_("Please print this receipt page for your records. You should also have received a receipt in your email.")}</p>
|
||||
% for inst in instructions:
|
||||
<p>${inst}</p>
|
||||
% endfor
|
||||
|
||||
Reference in New Issue
Block a user