@@ -75,6 +75,7 @@ from django.utils.http import urlquote_plus
</div>
%elif is_generating:
<divclass="msg-content">
# Translators: This message appears to users when the system is processessing course certificates, which can take a few hours.
<h2class="title">${_("We're working on it...")}</h2>
<pclass="copy">${_("We're creating your certificate. You can keep working in your courses and a link to it will appear here and on your Dashboard when it is ready.")}</p>
</div>
...
...
@@ -108,7 +109,10 @@ from django.utils.http import urlquote_plus
<spanclass="eligibility_msg">${_("{student_name}, you are no longer eligible for credit in this course.").format(student_name=student.profile.name)}</span>
<spanclass="eligibility_msg">${_("{student_name}, you have met the requirements for credit in this course.").format(student_name=student.profile.name)}
${_("{link} to purchase course credit.").format(link="<ahref={url}>{url_name}</a>".format(url = reverse('dashboard'), url_name = _('Go to your dashboard')))}
${_("{a_start}Go to your dashboard{a_end} to purchase course credit.").format(
${_(u"Congratulations! You are eligible to receive course credit for successfully completing your edX course! Click {link} to get your credit now.").format(
link=u'<ahref="{dashboard_url}">here</a>'.format(
${_(u"Congratulations! You are eligible to receive course credit for successfully completing your {platform_name} course! {link_start}Get your credit now.{link_end}").format(
link_start=u'<ahref="{dashboard_url}">'.format(
dashboard_url=dashboard_link
)
),
link_end=u'</a>',
platform_name=settings.PLATFORM_NAME
)}
</p>
...
...
@@ -42,16 +44,18 @@
</p>
<p>
${_(u'To get course credit, simply go to your {link} and click the <b>Get Credit</b> button. No application, transcript, or grade report is required.').format(
${_(u'To get course credit, simply go to your {link_start}{platform_name} dashboard{link_end} and click the <b>Get Credit</b> button. No application, transcript, or grade report is required.').format(
link_start=u'<ahref="{dashboard_url}">'.format(
dashboard_url=dashboard_link
)
),
link_end=u'</a>',
platform_name=settings.PLATFORM_NAME
)}
</p>
<p>
${_(u"We hope you enjoyed the course, and we hope to see you in future edX courses!")}<br/>
${_(u"The edX team")}
${_(u"We hope you enjoyed the course, and we hope to see you in future {platform_name} courses!").format(platform_name=settings.PLATFORM_NAME)}<br/>