{% i18ncp "The total number of people displayed" "%1 person" "%1 people" contacts|length %}

{% if contacts %} {% for contact in contacts %} {% endfor %}
{% i18nc "The name of a person" "Name" %} {% i18n "Email" %} {% i18n "Phone" %} {{ _("Nickname") }} {% i18n "Address" %} {% i18n "Birthday" %} {% i18n "Salary" %} {% i18n "Rating" %}
{{ contact.name }} {{ contact.email }} {{ contact.phone }} {{ contact.nickname }} {{ contact.address.houseNumber }} {{ contact.address.streetName }}
{{ contact.address.city }}
{{ _(contact.birthday) }} {% l10n_money contact.salary contact.salaryCurrency %} {{ _(contact.rating) }}
{% endif %}