{% extends "mail/base.html" %} {% load url from future %} {% load i18n %}{% load translations %} {% block content %}

{% trans "Hi,"%}

{% blocktrans with site|site_title as site_title %}there has been a new translation on {{ translation }} at {{ site_title }}.{% endblocktrans %}

{% trans "Source string:" %} {{ unit.source|fmttranslation }}
{% trans "Translation:" %} {{ unit.target|fmttranslation:unit.translation.language }}

{% trans "You can edit this string at:" %}

http://{{ current_site }}{{ unit.get_absolute_url }}

{% include "mail/footer.html" %} {% endblock %}