{% extends "base.html" %} {% load i18n %} {% load translations %} {% block breadcrumbs %}
  • {% trans "About Weblate" %}
  • {% trans "Weblate keys" %}
  • {% endblock %} {% block content %} {% include 'about/menu.html' %}

    {% documentation_icon 'vcs' right=True %} {% trans "SSH key" %}

    {% if ssh_key %}

    {% blocktrans %}Weblate uses following SSH key to access remote repositories.{% endblocktrans %}

    {{ ssh_key.key|linebreaks }}
    {% else %}

    {% trans "SSH key not available." %}

    {% endif %}

    {% documentation_icon 'admin/optionals' 'gpg-sign' right=True %} {% trans "Commit signing" %}

    {% if gpg_key %}

    {% blocktrans %}All commits made with Weblate are signed with the GPG key {{ gpg_key_id }}, for which the corresponding public key is found below.{% endblocktrans %}

    {{ gpg_key|linebreaks }}
    {% else %}

    {% trans "Commit signing is not configured." %}

    {% endif %}
    {% endblock %}