diff --git a/bookwyrm/templates/ostatus/error.html b/bookwyrm/templates/ostatus/error.html index a603529f..fc1dd18d 100644 --- a/bookwyrm/templates/ostatus/error.html +++ b/bookwyrm/templates/ostatus/error.html @@ -4,24 +4,18 @@
{% if error == 'invalid_username' %}
- {% blocktrans %} -

{{ account }} is not a valid username.

-

Check you have the correct username before trying again.

- {% endblocktrans %} +

{% blocktrans %}{{ account }} is not a valid username{% endblocktrans %}.

+

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

{% 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 %} +

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

+

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

{% 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 %} +

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

+

{% blocktrans %}Try searching for {{ user }} on {{ remote_domain }} instead{% endblocktrans %}.

{% elif not request.user.is_authenticated %}