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

    {% trans "Data export" %}

    {% 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 }} http://{{ site_domain }}{% url 'rss-project' project=object.slug %} {% trans "RSS" %}
    {{ subproject }} http://{{ site_domain }}{% 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 }} http://{{ site_domain }}{% url 'weblate.trans.api.export_stats' project=object.slug subproject=subproject.slug %} {% trans "Download" %}
    {% endblock %}