diff --git a/lms/templates/login.html b/lms/templates/login.html index 3e33c84b7a..91210e7bb7 100644 --- a/lms/templates/login.html +++ b/lms/templates/login.html @@ -1,7 +1,10 @@ <%inherit file="main.html" /> <%namespace name='static' file='static_content.html'/> + <%! from django.core.urlresolvers import reverse %> +<%! from django.utils.translation import ugettext as _ %> + <%block name="title">Log into your edX Account <%block name="js_extra"> @@ -77,14 +80,14 @@
-

Log Into Your Account

+

${_("Log Into Your Account")}

-

Login Form

+

${_("Login Form")}

diff --git a/lms/templates/register.html b/lms/templates/register.html index 5c5792c8bb..61328bffa0 100644 --- a/lms/templates/register.html +++ b/lms/templates/register.html @@ -2,9 +2,11 @@ <%namespace name='static' file='static_content.html'/> <%namespace file='main.html' import="login_query"/> + <%! from django.core.urlresolvers import reverse %> <%! from django.utils import html %> <%! from django_countries.countries import COUNTRIES %> +<%! from django.utils.translation import ugettext as _ %> <%! from student.models import UserProfile %> <%! from datetime import date %> <%! import calendar %> @@ -81,14 +83,14 @@
-

Register for edX

+

${_("Register for edX")}

-

Welcome! Register below to create your edX account

+

${_("Welcome! Register below to create your edX account")}