{% i18ncp "The total number of people displayed" "%n person" "%n 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" %} {% i18n "Friends" %}
{{ 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) }} {% for friend in contact.friends %}{{ friend.name }}({{ friend.nickname }})
{% endfor %}
{% endif %}