diff --git a/lms/templates/courseware/info.html b/lms/templates/courseware/info.html index 76c9cd3bfe..541a0b129c 100644 --- a/lms/templates/courseware/info.html +++ b/lms/templates/courseware/info.html @@ -20,7 +20,7 @@ from courseware.courses import get_course_info_section
- ${_(u"You are not currently enrolled in this course. Sign up for it {link_start}here{link_end}!").format(
+ ${_(u"You are not currently enrolled in this course. {link_start}Sign up now!{link_end}").format(
link_start=u"".format(url_to_enroll),
link_end=u""
)}
@@ -49,7 +49,11 @@ $(document).ready(function(){
${_("You have re-enabled forum notification emails from {platform_name}. "
- "Click {dashboard_link_start}here{link_end} to return to your dashboard. ").format(
+ "You may {dashboard_link_start}return to your dashboard{link_end}.").format(
platform_name=settings.PLATFORM_NAME,
dashboard_link_start="".format(reverse('dashboard')),
link_end="",)}
diff --git a/lms/templates/unsubscribe.html b/lms/templates/unsubscribe.html
index af0043426f..4e47c1b643 100644
--- a/lms/templates/unsubscribe.html
+++ b/lms/templates/unsubscribe.html
@@ -12,11 +12,11 @@ from django.conf import settings
${_("You will no longer receive forum notification emails from {platform_name}. "
- "Click {dashboard_link_start}here{link_end} to return to your dashboard. "
- "If you did not mean to do this, click {undo_link_start}here{link_end} to re-subscribe.").format(
+ "You may {dashboard_link_start}return to your dashboard{link_end}. "
+ "If you did not mean to do this, {undo_link_start}you can re-subscribe{link_end}.").format(
platform_name=settings.PLATFORM_NAME,
dashboard_link_start="".format(reverse('dashboard')),
undo_link_start="".format(reverse('resubscribe_forum_update', args=[token])),
${_("Re-subscribe Successful!")}
-
+
${_("Unsubscribe Successful!")}
-
+