<%! from django.utils.translation import ugettext as _ %>
${_("Thank you for creating an account with {platform_name}!").format(platform_name=settings.PLATFORM_NAME)}
${_("There's just one more step before you can enroll in a course: "
    "You need to activate your {platform_name} account. To activate "
    "your account, click the following link. If that doesn't work, "
    "copy and paste the link into your browser's address bar.").format(
      platform_name=settings.PLATFORM_NAME
    )}

% if is_secure:
  https://${ site }/activate/${ key }
% else:
  http://${ site }/activate/${ key }
% endif

${_("After you activate your account, you can take "
    "any of the hundreds of courses {platform_name} "
    "offers. You will receive occasional email "
    "messages from {platform_name} about new courses "
    "or other information."
  ).format(platform_name=settings.PLATFORM_NAME)}

${_("If you need help, please use our web form at "
    "{contact_us_url}, email {info_email_address}, "
    "or write to {info_postal_address}."
  ).format(
    contact_us_url="https://www.edx.org/contact-us",
    info_email_address=settings.CONTACT_EMAIL,
    info_postal_address=settings.CONTACT_MAILING_ADDRESS
  )}

${_("We hope you enjoy learning with {platform_name}!").format(
    platform_name=settings.PLATFORM_NAME
)}

${_("The {platform_name} Team").format(platform_name=settings.PLATFORM_NAME)}

${_("This email message was automatically sent by {site_name} because "
     "someone attempted to create an account on {platform_name} using "
     "this email address."
    ).format(
      site_name=settings.SITE_NAME,
      platform_name=settings.PLATFORM_NAME
    )}
