zulip/templates/zerver/reset_done.html
Ahmed Shibani 4f29cfee9e Mark strings for translation in templates/zerver
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.
2015-11-03 23:06:31 -08:00

8 lines
286 B
HTML

{% extends "zerver/portico_signup.html" %}
{% load i18n %}
{% block portico_content %}
<h1 style="margin-top: 20px">{% trans "We've reset your password!" %}</h1>
<p>{% trans 'Please' %} <a href="{% url 'django.contrib.auth.views.login' %}">{% trans 'log in' %}</a>.</p>
{% endblock %}