LMS i18n from Tsinghua
This commit is contained in:
committed by
Adam Palay
parent
8573ac3909
commit
0d3c44996a
@@ -1,17 +1,19 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
|
||||
<section class="outside-app">
|
||||
<h1>There has been an error on the <em>edX</em> servers</h1>
|
||||
<p>We're sorry, this module is temporarily unavailable. Our staff is working to fix it as soon as possible. Please email us at <a href="mailto:technical@edx.org">technical@edx.org</a> to report any problems or downtime.</p>
|
||||
<h1>${_("There has been an error on the <em>edX</em> servers")}</h1>
|
||||
<p>${_("We're sorry, this module is temporarily unavailable. Our staff is working to fix it as soon as possible. Please email us at {email} to report any problems or downtime.").format(email='<a href="mailto:technical@edx.org">technical@edx.org</a>')}</p>
|
||||
|
||||
% if staff_access:
|
||||
<h1>Details</h1>
|
||||
<h1>${_("Details")}</h1>
|
||||
|
||||
<p>Error:
|
||||
<p>${_("Error:")}
|
||||
<pre>
|
||||
${error | h}
|
||||
</pre>
|
||||
</p>
|
||||
|
||||
<p>Raw data:
|
||||
<p>${_("Raw data:")}
|
||||
|
||||
<pre>${data | h}</pre>
|
||||
</p>
|
||||
|
||||
Reference in New Issue
Block a user