<%! from django.utils.translation import ugettext as _ %> <div class="wrapper-msg urgency-high"> <div class="msg"> <div class="msg-content"> <h2 class="sr">${_("Could Not Link Accounts")}</h2> <div class="copy"> ## Translators: this message is displayed when a user tries to link their account with a third-party authentication provider (for example, Google or LinkedIn) with a given edX account, but their third-party account is already associated with another edX account. provider_name is the name of the third-party authentication provider, and platform_name is the name of the edX deployment. <p>${_("The {provider_name} account you selected is already linked to another {platform_name} account.").format(provider_name='<strong>{duplicate_provider}</strong>'.format(duplicate_provider=duplicate_provider.NAME), platform_name=platform_name)}</p> </div> </div> </div> </div>