{% extends "misago/emails/base.html" %}
{% load i18n misago_absoluteurl misago_capture %}
{% block content %}
{% capture trimmed as thread_link %}
{{ thread }}
{% endcapture %}
{% blocktrans trimmed with sender=sender thread=thread_link|safe %}
{{ sender }} has posted a new reply to the {{ thread }} thread that you are watching.
{% endblocktrans %}
{% trans "You can read this reply by clicking on the following link:" %}
{% trans "Go to reply" %}
{% trans "To stop receiving e-mails with new reply notifications for this thread, click here:" %}
{% trans "Disable e-mail notifications for this thread" %}
{% endblock content %}