Commit e53263d9 by David Baumgold

Merge pull request #6225 from edx/studio-i18n-improvements

Don't break up i18n string
parents b999714e e8d62ff6
...@@ -15,10 +15,12 @@ ...@@ -15,10 +15,12 @@
<div class="notice notice-incontext notice-instruction has-actions"> <div class="notice notice-incontext notice-instruction has-actions">
<div class="msg"> <div class="msg">
<h1 class="title">${_('Your account activation is invalid')}</h1> <h1 class="title">${_("Your account activation is invalid")}</h1>
<div class="copy"> <div class="copy">
<p>${_("We're sorry. Something went wrong with your activation. Check to make sure the URL you went to was correct &mdash; e-mail programs will sometimes split it into two lines.")}</p> <p>${_("We're sorry. Something went wrong with your activation. Check to make sure the URL you went to was correct — e-mail programs will sometimes split it into two lines.")}</p>
<p>${_("If you still have issues, contact edX Support. In the meatime, you can also return to")} <a href="/">{_('the Studio homepage.')}</a></p> <p>${_("If you still have issues, contact edX Support. In the meantime, you can also return to {link_start}the Studio homepage.{link_end}").format(
link_start='<a href="/">', link_end="</a>"
)}</p>
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment