{% load i18n %} {# Context: bird_count (int) #} {% translate "example page" as str_title %} {{ str_title|title }}

{% translate "The crazy dog" %}

Task status: {% translate "done" context "task completion" %}

{% blocktranslate %}The page title is {{ str_title }}.{% endblocktranslate %}

{% blocktranslate count counter=bird_count %} There is {{ counter }} bird on the roof. {% plural %} There are {{ counter }} birds on the roof. {% endblocktranslate %}