{% load i18n %}
{% block message_content %}
{% if quantity == 1 %}
{% blocktrans with title=product.get_title %}
{{ title }} has been added to your basket.
{% endblocktrans %}
{% else %}
{% blocktrans with title=product.get_title quantity=quantity %}
{{ quantity }} copies of {{ title }}
have been added to your basket.
{% endblocktrans %}
{% endif %}
{% endblock message_content %}
{% block analytics_scripts %}{% endblock analytics_scripts %}