{% 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 is a new suggestion to evaluate on {{ translation }} at {{ site_title }}.{% endblocktrans %}

{% if unit.translated %} {% endif %}
{% trans "Source string:" %} {{ unit.source|fmttranslation }}
{% trans "Suggestion:" %} {{ suggestion.target|fmttranslation:unit.translation.language }}
{% trans "Translation change:" %} {{ suggestion.target|fmttranslationdiff:unit }}

{% trans "You can review it at:" %}

http://{{ current_site }}{{ suggestion.get_review_url }}

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