Flimm
Flimm

Reputation: 151221

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" %}

Upvotes: 3

Views: 1444

Answers (1)

Flimm
Flimm

Reputation: 151221

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

Upvotes: 3

Related Questions