mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
In order to enable internationalization support in Zulip, and to use Django internationalization tools, all strings in Zulip frontend needs to be marked for translation.
8 lines
322 B
HTML
8 lines
322 B
HTML
{% extends "zerver/portico_signup.html" %}
|
|
{% load i18n %}
|
|
{% block portico_content %}
|
|
<h1 style="margin-top: 20px">{% trans 'We just sent you a password reset!' %}</h1>
|
|
<h1>{% trans 'Check your email to finish the process' %}.</h1>
|
|
<p>({% trans "Or don't, but then why did you fill out this form?" %})</p>
|
|
{% endblock %}
|