{% extends "base.html" %} {% load i18n %} {% block breadcrumbs %}
  • {{ object }}
  • {% trans "data exports" %}
  • {% endblock %} {% block content %}

    {% trans "You can retrieve various data from Weblate in machine readable format." %}

    {% trans "RSS feeds" %}

    {% trans "To follow translation progress you can use RSS feeds which include all important changes in translation." %} {% blocktrans %}More information about exported RSS feeds is available in the documentation.{% endblocktrans %}

    {% for subproject in object.subproject_set.all %} {% endfor %}
    {% trans "Project" %} {% trans "URL" %} {% trans "Link" %}
    {{ object }} {{ site_url }}{% url 'rss-project' project=object.slug %} {% trans "RSS" %}
    {{ subproject }} {{ site_url }}{% url 'rss-subproject' project=object.slug subproject=subproject.slug %} {% trans "RSS" %}

    {% trans "There are also per language RSS feeds available, you can construct them by appending a language code to the above URLs." %}

    {% trans "Statistics" %}

    {% blocktrans %}Translation statistics for every subproject in JSON format allow you to use these data in other websites or tools. Format of the data is described in the documentation.{% endblocktrans %}

    {% for subproject in object.subproject_set.all %} {% endfor %}
    {% trans "Project" %} {% trans "URL" %} {% trans "Link" %}
    {{ subproject }} {{ site_url }}{% url 'export_stats' project=object.slug subproject=subproject.slug %} {% trans "Download" %}
    {% if hooks_enabled %}

    {% trans "Notification hooks" %}

    {% blocktrans %}With notification hooks, Weblate will automatically import changes done by your developers and will allow continuous translation. More information is available in the documentation.{% endblocktrans %}

    {% endif %} {% for subproject in object.subproject_set.all %} {% endfor %}
    {% trans "Project" %} {% trans "URL" %} {% trans "Link" %}
    {{ object }} {{ site_url }}{% url 'hook-project' project=object.slug %} {% trans "Hook" %}
    {{ subproject }} {{ site_url }}{% url 'hook-subproject' project=object.slug subproject=subproject.slug %} {% trans "Hook" %}

    {% blocktrans %}Weblate also supports direct notification from several code hosting sites:{% endblocktrans %}

    {% trans "Hosting site" %} {% trans "URL" %} {% trans "Note" %}
    GitHub {{ site_url }}{% url 'hook-github' %} {% trans "Enable Weblate service hook in repository settings." %}
    GitLab {{ site_url }}{% url 'hook-gitlab' %}
    Bitbucket {{ site_url }}{% url 'hook-bitbucket' %}
    {% endblock %}