{% load i18n %}
This txt file is used just for saving the "Translators:" tags which are common in most email templates, so that the hint tags in email templates can be removed while keeping the tags in the .po file generated. Make sure the email templates use exactly the strings in the transblocks.

{% comment %} Translators: if a user have a non-empty first_name, then use %(first_name) {% endcomment %}
{% blocktrans %}Dear {{first_name}},{% endblocktrans %}

{% comment %} Translators: if a user have an empty first_name, then use his/her email {% endcomment %}
{% blocktrans %}Dear {{email}},{% endblocktrans %}

{% comment %} Translators: if a user do not use first_name and email, then use his/her username {% endcomment %}
{% blocktrans %}Dear {{username}},{% endblocktrans %}

{% comment %} Translators: sender of the email {% endcomment %}
{% blocktrans %}- RELATE staff {% endblocktrans %}