'What is the difference between `blocktrans` and `blocktranslate`? Between `trans` and `translate`?

What is the difference between these two lines of code in a Django template?

{% blocktrans %}Example{% endblocktrans %}
{% blocktranslate %}Example{% endblocktranslate %}

Likewise, what is the difference between these two lines of code in a Django template?

{% trans "Example" %}
{% translate "Example" %}


Solution 1:[1]

There is no difference. {% blocktrans %} is equivalent to {% blocktranslate %}, it's just an alias. Likewise, {% trans %} is equivalent to {% translate %}.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Flimm