{% load i18n %} {% block content %}
{% if error == 'invalid_username' %}
{% blocktrans %}

{{ account }} is not a valid username.

Check you have the correct username before trying again.

{% endblocktrans %}
{% elif error == 'user_not_found' %}
{% blocktrans %}

{{ account }} could not be found or {{ remote_domain }} does not support identity discovery.

Check you have the correct username before trying again.

{% endblocktrans %}
{% elif error == 'not_supported' %}
{% blocktrans %}

{{ account }} was found but {{ remote_domain }} does not support 'remote follow'.

Try searching for {{ user }} on {{ remote_domain }} instead.

{% endblocktrans %}
{% elif not request.user.is_authenticated %} {% elif error == 'ostatus_subscribe' %}

{% blocktrans %}Something went wrong trying to follow {{ account }}{% endblocktrans %}

{% trans 'Check you have the correct username before trying again.' %}

{% elif error == 'is_blocked' %}

{% blocktrans %}You have blocked {{ account }}{% endblocktrans %}

{% elif error == 'has_blocked' %}

{% blocktrans %}{{ account }} has blocked you{% endblocktrans %}

{% elif error == 'already_following' %}

{% blocktrans %}You are already following {{ account }}{% endblocktrans %}

{% elif error == 'already_requested' %}

{% blocktrans %}You have already requested to follow {{ account }}{% endblocktrans %}

{% endif %}
{% endblock %}