{# Result of LDAP user sync. Expects: imported_count (int), skipped_count (int), errors (list of str). #}
{% if imported_count > 0 %}

✓ {{ _("Imported %(count)s new user%(s)s from LDAP", count=imported_count, s="s" if imported_count != 1 else "") }}

{% endif %} {% if skipped_count > 0 %}

ℹ {{ _("Skipped %(count)s user%(s)s (already in Wizarr)", count=skipped_count, s="s" if skipped_count != 1 else "") }}

{% endif %} {% if errors %}

✗ {{ _("Errors during import:") }}

{% endif %} {% if imported_count == 0 and skipped_count == 0 and not errors %}

{{ _("No users to import") }}

{% endif %}