Commit 3f8ca96f by Renzo Lucioni

Change instances of 'register' to 'enroll'

parent dce62ed6
...@@ -51,18 +51,18 @@ from courseware.courses import course_image_url, get_course_about_section ...@@ -51,18 +51,18 @@ from courseware.courses import course_image_url, get_course_about_section
% elif registered_for_course: % elif registered_for_course:
<% dashboard_url = reverse('dashboard')%> <% dashboard_url = reverse('dashboard')%>
<p class="enrollment-text"> <p class="enrollment-text">
${_("You're already registered for this course." ${_("You're already enrolled for this course."
" Visit your <a href={dashboard_url}>dashboard</a> to see the course.").format(dashboard_url=dashboard_url)} " Visit your <a href={dashboard_url}>dashboard</a> to see the course.").format(dashboard_url=dashboard_url)}
</p> </p>
% elif course_full: % elif course_full:
<% dashboard_url = reverse('dashboard')%> <% dashboard_url = reverse('dashboard')%>
<p class="enrollment-text"> <p class="enrollment-text">
${_("The course you are registering for is full.")} ${_("The course you are enrolling for is full.")}
</p> </p>
% elif enrollment_closed: % elif enrollment_closed:
<% dashboard_url = reverse('dashboard')%> <% dashboard_url = reverse('dashboard')%>
<p class="enrollment-text"> <p class="enrollment-text">
${_("The course you are registering for is closed.")} ${_("The course you are enrolling for is closed.")}
</p> </p>
% elif redeem_code_error: % elif redeem_code_error:
<% dashboard_url = reverse('dashboard')%> <% dashboard_url = reverse('dashboard')%>
......
...@@ -66,7 +66,7 @@ from courseware.courses import course_image_url, get_course_about_section ...@@ -66,7 +66,7 @@ from courseware.courses import course_image_url, get_course_about_section
% elif registered_for_course: % elif registered_for_course:
<p class="enrollment-text"> <p class="enrollment-text">
${_( ${_(
"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." "Visit your {link_start}dashboard{link_end} to see the course."
).format( ).format(
link_start='<a href="{url}">'.format(url=reverse('dashboard')), link_start='<a href="{url}">'.format(url=reverse('dashboard')),
......
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