{% extends "base.html" %} {% load i18n %} {% load translations %} {% load permissions %} {% load crispy_forms_tags %} {% block breadcrumbs %} {% if project %}
  • {{ project }}
  • {% trans "Translation memory" %}
  • {% else %}
  • {% trans "Translation memory" %}
  • {% endif %} {% endblock %} {% block content %}

    {% documentation_icon 'admin/memory' 'memory-user' right=True %} {% trans "Translation memory status" %}

    {% if project %} {% endif %}
    {% trans "Shared translation memory" %} {% if project.use_shared_tm %}{% trans "enabled" %}{% else %}{% trans "disabled" %}{% endif %} {% perm 'project.edit' project as user_can_edit_project %} {% if user_can_edit_project %} {% trans "Configure" %}{% endif %}
    {% if project %}{% blocktrans %}Number of entries for {{ project }}{% endblocktrans %}{% else %}{% trans "Number of your entries" %}{% endif %} {{ num_entries }}
    {% trans "Total number of entries" %} {{ total_entries }}
    {% if upload_form %}
    {% csrf_token %}

    {% trans "Import translation memory" %}

    {{ upload_form|crispy }}
    {% endif %} {% if import_form %}
    {% csrf_token %}

    {% trans "Import existing translations" %}

    {% trans "Schedules import of all existing translations within this project into translation memory. This can be useful after wiping memory or after initial setup." %}

    {{ import_form|crispy }}
    {% endif %} {% if delete_form %}
    {% csrf_token %}

    {% trans "Wipe translation memory" %}

    {{ delete_form|crispy }}
    {% endif %} {% endblock %}