summaryrefslogtreecommitdiff
path: root/talerbank/app/templates/withdraw_show.html
diff options
context:
space:
mode:
Diffstat (limited to 'talerbank/app/templates/withdraw_show.html')
-rw-r--r--talerbank/app/templates/withdraw_show.html12
1 files changed, 7 insertions, 5 deletions
diff --git a/talerbank/app/templates/withdraw_show.html b/talerbank/app/templates/withdraw_show.html
index b7d7683..05fea9b 100644
--- a/talerbank/app/templates/withdraw_show.html
+++ b/talerbank/app/templates/withdraw_show.html
@@ -62,18 +62,20 @@
{% block content %}
<div class="taler-installed-hide">
<p>
- Looks like your browser doesn't support GNU Taler payments. You can try
- installing a <a href="https://taler.net/en/wallet.html">wallet browser extension</a>.
+ {% autoescape off %}
+ {{ _("Looks like your browser doesn't support GNU Taler payments. You can try installing a <a href=\"{wallet_link}\">wallet browser extension</a>.").format(wallet_link="https://taler.net/en/wallet.html")
+ {% endautoescape %}
</p>
</div>
<p>
- You can use this QR code to withdraw to your mobile wallet:
+ {{ _("You can use this QR code to withdraw to your mobile wallet:") }}
</p>
{{ qrcode_svg | safe }}
<p>
- Click <a href="{{ taler_withdraw_uri }}">this link</a> to open your system's Taler wallet if it exists.
+ {% autoescape off %}
+ {{ _("Click <a href="{taler_withdraw_uri}">this link</a> to open your system's Taler wallet if it exists.").format(taler_withdraw_uri=taler_withdraw_uri) }}
+ {% endautoescape %}
</p>
-
{% endblock content %}