Example of marking text as translatable using TX Native

How is this translated to native syntax?

{% with site_domain=site.domain %}
<p style="margin: 0.7em 0;">{% blocktrans %}To download, please click <a href="https://{{ site_domain }}{{ url }}">here</a>.{% endblocktrans %}</p>
{% endwith %}

Transifex Native Syntax:

{% with site_domain=site.domain %}
<p style="margin: 0.7em 0;">{% ut 'To download, please click <a href="https://{site_domain}{url}">here</a>.' %}</p>
{% endwith %}