From 3f8ca96f028f2c4b0eb977dd0671f99f6fe53dda Mon Sep 17 00:00:00 2001 From: Renzo Lucioni Date: Wed, 28 Jan 2015 14:37:26 -0500 Subject: [PATCH] Change instances of 'register' to 'enroll' --- lms/templates/shoppingcart/registration_code_receipt.html | 6 +++--- .../shoppingcart/registration_code_redemption.html | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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')),