{% 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 context "new thread reply email" %}
{{ 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:" context "new thread reply email" %}
{% trans "Go to reply" context "new thread reply email cta" %}
{% trans "To stop receiving e-mails with new reply notifications for this thread, click here:" context "new thread reply email" %}
{% trans "Disable e-mail notifications for this thread" context "new thread reply email" %}
{% endblock content %}