{% extends "base.html" %} {% load i18n %} {% load translations %} {% load crispy_forms_tags %} {% block content %} {% if not user.is_authenticated %}

{% if demo_server %} {% blocktrans %}This site runs Weblate demo server.{% endblocktrans %} {% else %} {% blocktrans %}This site runs Weblate for translating the software projects listed below.{% endblocktrans %} {% endif %} {% trans "You need to be logged in for translating, otherwise you can only make suggestions." %}

{% endif %} {% whiteboard_messages %}
{% if user.is_authenticated %}
{% if subscribed_projects %} {% if usersubscriptions %} {% with usersubscriptions as translations and 2 as show_language and user.profile.hide_completed as hide_completed %} {% include "list-translations.html" %} {% endwith %} {% else %} {% with subscribed_projects as projects %} {% include "list-projects.html" %} {% endwith %} {% endif %} {% else %}

{% trans "Choose your languages in preferences and you will get an overview here of available translations for those languages in your watched projects." %}

{% endif %}

{% trans "Manage your languages" %} {% trans "Manage your subscriptions" %}

{% if userlanguages %} {% with userlanguages as translations and 2 as show_language and user.profile.hide_completed as hide_completed %} {% include "list-translations.html" %} {% endwith %} {% else %}

{% trans "Choose your languages in preferences and you will get an overview here of available translations for those languages in all projects." %}

{% endif %} {# userlanguages #}

{% trans "Manage your languages" %}

{% endif %} {# user.is_authenticated #} {# Suggested translations #}
{% if suggestions %} {% with suggestions as translations and 2 as show_language and user.profile.hide_completed as hide_completed %} {% include "list-translations.html" %} {% endwith %} {% else %}

{% trans "Could not find any suggestions for you, please choose your languages in preferences to get more suggestions." %}

{% endif %} {% if user.is_authenticated %}

{% trans "Manage your languages" %}

{% else %}

{% trans "Register to manage your languages" %}

{% endif %}
{% for componentlist in componentlists %}
{% if userlanguages %} {% with componentlist.translations as translations and 2 as show_language and user.profile.hide_completed as hide_completed %} {% include "list-translations.html" %} {% endwith %} {% else %} {% with componentlist.components.all as projects %} {% include "list-projects.html" %} {% endwith %}

{% trans "Choose your languages in preferences and you will get an overview here of available translations for those languages." %}

{% endif %} {# userlanguages #}

{% trans "Manage your languages" %}

{% endfor %} {% include "activity-tab.html" %}
{% include "last-changes-content.html" %} {% trans "Browse all changes" %}
{% endblock %}