{% load i18n %}
{% blocktrans trimmed %}
The credit card transaction could not be completed for the following reason:
{% endblocktrans %}
{% if payment_info and payment_info.error %}
{{ payment_info.message }}
{% else %}
{% trans "Unknown reason" %}
{% endif %}