diff --git a/lms/templates/register.html b/lms/templates/register.html index fb3ec56a22..a5a04648fa 100644 --- a/lms/templates/register.html +++ b/lms/templates/register.html @@ -148,7 +148,7 @@

## Translators: selected_provider is the name of an external, third-party user authentication service (like Google or LinkedIn). ${_("You've successfully signed in with {selected_provider}.").format(selected_provider='%s' % selected_provider)}
- ${_("We just need a little more information before you start learning with edX.")} + ${_("We just need a little more information before you start learning with {platform_name}.").format(platform_name=settings.PLATFORM_NAME)}

% endif diff --git a/lms/templates/static_templates/embargo.html b/lms/templates/static_templates/embargo.html index 34153ab3ed..016864b7cf 100644 --- a/lms/templates/static_templates/embargo.html +++ b/lms/templates/static_templates/embargo.html @@ -4,5 +4,15 @@ <%block name="pagetitle">${_("This Course Unavailable In Your Country")}
-

${_("Our system indicates that you are trying to access an edX course from a country currently subject to U.S. economic and trade sanctions. Unfortunately, at this time edX must comply with export controls, and we cannot allow you to access this particular course. Feel free to browse our catalogue to find other courses you may be interested in taking.")}

+

+${_("Our system indicates that you are trying to access this {platform_name} " + "course from a country currently subject to U.S. economic and trade " + "sanctions. Unfortunately, at this time {platform_name} must comply with " + "export controls, and we cannot allow you to access this particular course. " + "Feel free to browse our catalogue to find other courses you may be " + "interested in taking." + ).format( + platform_name=settings.PLATFORM_NAME, + )} +

diff --git a/lms/templates/student_account/emails/email_change_confirmation/message_body.txt b/lms/templates/student_account/emails/email_change_confirmation/message_body.txt index 9ae44be4ca..8608aa6d8d 100644 --- a/lms/templates/student_account/emails/email_change_confirmation/message_body.txt +++ b/lms/templates/student_account/emails/email_change_confirmation/message_body.txt @@ -14,6 +14,8 @@ ${_("You successfully changed the email address associated with your " ) } -## Farewell -${_("Thanks,")} -${_("- The edX Team")} +## Translators: This is the signature of an email. "\n" is a newline character, +## and should be placed between the closing word and the signing team's name. +${_("Thanks,\n - The {platform_name} Team").format( + platform_name=settings.PLATFORM_NAME, +)} diff --git a/lms/templates/student_account/emails/email_change_request/message_body.txt b/lms/templates/student_account/emails/email_change_request/message_body.txt index cc58ae814f..ab7a6999ef 100644 --- a/lms/templates/student_account/emails/email_change_request/message_body.txt +++ b/lms/templates/student_account/emails/email_change_request/message_body.txt @@ -27,6 +27,8 @@ http://${site}/account/email/confirmation/${key} ${_("If you don't want to change the email address associated with your " "account, ignore this message.")} -## Farewell -${_("Thanks,")} -${_("- The edX Team")} +## Translators: This is the signature of an email. "\n" is a newline character, +## and should be placed between the closing word and the signing team's name. +${_("Thanks,\n - The {platform_name} Team").format( + platform_name=settings.PLATFORM_NAME, +)} diff --git a/lms/templates/verify_student/midcourse_photo_reverification.html b/lms/templates/verify_student/midcourse_photo_reverification.html index b0a5879b45..6515cc09cb 100644 --- a/lms/templates/verify_student/midcourse_photo_reverification.html +++ b/lms/templates/verify_student/midcourse_photo_reverification.html @@ -143,7 +143,10 @@

${_("Check Your Name")}

-

${_("Make sure your full name on your edX account ({full_name}) matches the ID you originally submitted. We will also use this as the name on your certificate.").format(full_name="" + user_full_name + "")}

+

${_("Make sure your full name on your {platform_name} account ({full_name}) matches the ID you originally submitted. We will also use this as the name on your certificate.").format( + full_name="{name}".format(name=user_full_name), + platform_name=settings.PLATFORM_NAME, + )}