Commit 657610dd by Sarina Canelake

Merge pull request #4944 from edx/sarina/make-studio-reg-copy-match

Make Studio and LMS register pages use the same language
parents e8fd9c08 e57a1551
......@@ -24,8 +24,8 @@ from django.utils.translation import ugettext as _
<ol class="list-input">
<li class="field text required" id="field-email">
<label for="email">${_("Email Address")}</label>
<input id="email" type="email" name="email" placeholder="e.g. jane.doe@gmail.com" />
<label for="email">${_("E-mail")}</label>
<input id="email" type="email" name="email" placeholder="${_('example: username@domain.com')}"/>
</li>
<li class="field text required" id="field-password">
......
......@@ -44,7 +44,7 @@
<ol class="list-input">
<li class="field text required create-user-email">
<label for="user-email-input">${_("User's Email Address")}</label>
<input id="user-email-input" name="user-email" type="text" placeholder="${_('e.g. jane.doe@gmail.com')}" value="">
<input id="user-email-input" name="user-email" type="text" placeholder="${_('example: username@domain.com')}" value="">
<span class="tip tip-stacked">${_("Please provide the email address of the course staff member you'd like to add")}</span>
</li>
</ol>
......
......@@ -27,18 +27,18 @@
<ol class="list-input">
<li class="field text required" id="field-email">
<label for="email">${_("Email Address")}</label>
<input id="email" type="email" name="email" placeholder="e.g. jane.doe@gmail.com" />
<label for="email">${_("E-mail")}</label>
<input id="email" type="email" name="email" placeholder="example: username@domain.com" />
</li>
<li class="field text required" id="field-name">
<label for="name">${_("Full Name")}</label>
<input id="name" type="text" name="name" placeholder="e.g. Jane Doe" />
<input id="name" type="text" name="name" placeholder="example: Jane Doe" />
</li>
<li class="field text required" id="field-username">
<label for="username">${_("Public Username")}</label>
<input id="username" type="text" name="username" placeholder="e.g. janedoe" />
<input id="username" type="text" name="username" placeholder="example: JaneDoe" />
<span class="tip tip-stacked">${_("This will be used in public discussions with your courses and in our edX101 support forums")}</span>
</li>
......
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