diff --git a/lms/templates/shoppingcart/registration_code_receipt.html b/lms/templates/shoppingcart/registration_code_receipt.html index 7d291e2538..1dd0cb3d97 100644 --- a/lms/templates/shoppingcart/registration_code_receipt.html +++ b/lms/templates/shoppingcart/registration_code_receipt.html @@ -51,18 +51,18 @@ from courseware.courses import course_image_url, get_course_about_section % elif registered_for_course: <% dashboard_url = reverse('dashboard')%>

- ${_("You're already registered for this course." + ${_("You're already enrolled for this course." " Visit your dashboard to see the course.").format(dashboard_url=dashboard_url)}

% elif course_full: <% dashboard_url = reverse('dashboard')%>

- ${_("The course you are registering for is full.")} + ${_("The course you are enrolling for is full.")}

% elif enrollment_closed: <% dashboard_url = reverse('dashboard')%>

- ${_("The course you are registering for is closed.")} + ${_("The course you are enrolling for is closed.")}

% elif redeem_code_error: <% dashboard_url = reverse('dashboard')%> diff --git a/lms/templates/shoppingcart/registration_code_redemption.html b/lms/templates/shoppingcart/registration_code_redemption.html index e8c244a0b2..4af7ec31a3 100644 --- a/lms/templates/shoppingcart/registration_code_redemption.html +++ b/lms/templates/shoppingcart/registration_code_redemption.html @@ -66,7 +66,7 @@ from courseware.courses import course_image_url, get_course_about_section % elif registered_for_course:

${_( - "You're already registered for this course. " + "You're already enrolled for this course. " "Visit your {link_start}dashboard{link_end} to see the course." ).format( link_start=''.format(url=reverse('dashboard')),