{% load i18n catalogue_tags %}
{% 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 %}
{% comment %}
Running the facebookpixel code over here.
{% endcomment %}