From 668c7fdca3a98a9111b8cafb8a05da460b9ebc73 Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Wed, 5 Aug 2015 15:53:51 -0400 Subject: [PATCH] Should never just link the word 'here' --- lms/templates/courseware/info.html | 8 ++++++-- lms/templates/resubscribe.html | 4 ++-- lms/templates/unsubscribe.html | 6 +++--- 3 files changed, 11 insertions(+), 7 deletions(-) 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

${_("You are not enrolled yet")}

- ${_(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(){

% if studio_url is not None and masquerade and masquerade.role == 'staff': % endif diff --git a/lms/templates/resubscribe.html b/lms/templates/resubscribe.html index e0bcfffe96..e20d4ca5ca 100644 --- a/lms/templates/resubscribe.html +++ b/lms/templates/resubscribe.html @@ -12,10 +12,10 @@ from django.conf import settings

${_("Re-subscribe Successful!")}


- +

${_("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

${_("Unsubscribe Successful!")}


- +

${_("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])),