{% if is_dir %}
{% trans "Directory removal confirmation" %}
{% else %}
{% trans "File removal confirmation" %}
{% endif %}
{% if not is_dir %}
{% trans "File directory" %}: {{ directory }}
{% trans "File name" %}: {{ name }}
{% blocktrans with path=path %}
Are you sure you want to remove the file at {{ path }}?
{% endblocktrans %}
{% else %}
{% blocktrans with directory=directory %}
Are you sure you want to remove the directory {{ directory }}?
{% endblocktrans %}
{% endif %}