{% if nbReceivedDocuments == 1 %}
{% trans %}You have selected one record.{% endtrans %}
{% else %}
{% trans with {'%nbReceivedDocuments%' : nbReceivedDocuments} %}You have selected %nbReceivedDocuments% records.{% endtrans %}
{% endif %}
{% if nbEditableDocuments == 0 %}
{% trans %}None of the records can be modified.{% endtrans %}
{% else %}
{% if nbEditableDocuments < nbReceivedDocuments %}
{% if nbEditableDocuments == 1 %}
{% trans %}Only one record can be modified.{% endtrans %}
{% else %}
{% trans with {'%nbEditableDocuments%' : nbEditableDocuments} %}Only %nbEditableDocuments% records can be modified.{% endtrans %}
{% endif %}
{% endif %}
{% endif %}