{% load i18n %}
{% blocktrans with range_name=range.name filename=upload.filepath %}
File {{ filename }} processed.
{% endblocktrans %}
{% if upload.num_new_skus %}
{% blocktrans with action=action count n=upload.num_new_skus %}
{{ n }} product has been {{ action }}
{% plural %}
{{ n }} products have been {{ action }}
{% endblocktrans %}
{% endif %}
{% if upload.num_duplicate_skus %}
{% blocktrans count n=upload.num_duplicate_skus %}
There was {{ n }} duplicate product in the file
{% plural %}
There were {{ n }} duplicate products in the file
{% endblocktrans %}
{% endif %}
{% if upload.num_unknown_skus %}
{% blocktrans count n=upload.num_unknown_skus %}
There was {{ n }} product in the file that couldn't be found in the catalogue
{% plural %}
There were {{ n }} products in the file that couldn't be found in the catalogue
{% endblocktrans %}