{% extends "base.html" %} {% load i18n %} {% load translations %} {% block breadcrumbs %}
{% trans "You can retrieve various data from Weblate in machine readable format." %}
{% 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 %}
{% 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." %}
{% blocktrans %}Translation statistics for every component in the JSON format allow you to use these data in other websites or tools. Format of the data is described in the documentation.{% endblocktrans %}
{% trans "Project" %} | {% trans "URL" %} | {% trans "Link" %} |
---|---|---|
{{ subproject }} | {{ site_url }}{% url 'api:component-statistics' project__slug=object.slug slug=subproject.slug %} | {% trans "View" %} |
{% trans "For example getting stats for all translations in one component can be done by:" %}
curl \ -H "Authorization: Token {{ request.user.auth_token.key|default:"TOKEN" }}" \ {{ site_url }}{% url 'api:component-translations' project__slug=object.slug slug=subproject.slug %}{% endif %} {% endwith %} {% if hooks_enabled and project.enable_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 %}{% trans "Project" %} | {% trans "URL" %} | {% trans "Link" %} |
---|---|---|
{{ object }} | {{ site_url }}{% url 'api:project-repository' slug=object.slug %} | {% trans "Hook" %} |
{{ subproject }} | {{ site_url }}{% url 'api:component-repository' project__slug=object.slug slug=subproject.slug %} | {% trans "Hook" %} |
{% trans "For example telling Weblate to pull remote repository can be done by:" %}
curl \ -d operation=pull \ -H "Authorization: Token {{ request.user.auth_token.key|default:"TOKEN" }}" \ {{ site_url }}{% url 'api:project-repository' slug=object.slug %}
{% 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 "See documentation for detailed instructions" %} |
GitLab | {{ site_url }}{% url 'hook-gitlab' %} | {% trans "See documentation for detailed instructions" %} |
Bitbucket | {{ site_url }}{% url 'hook-bitbucket' %} | {% trans "See documentation for detailed instructions" %} |