{% extends "base.html" %} {% load i18n %} {% load translations %} {% load icons %} {% block breadcrumbs %}
  • {{ project.name }}
  • {% if component %} {% include "snippets/component-breadcrumb.html" with object=component %} {% if translation %} {% include "snippets/translation-breadcrumb.html" with object=translation %} {% endif %} {% elif language %}
  • {{ language }}
  • {% endif %}
  • {% trans "Search and replace" %}
  • {% endblock %} {% block content %} {% trans "Please review and confirm the search and replace results." as msg %} {% show_message "info" msg %} {% if limited %} {% trans "Showing and replacing only the first 250 matches. Perform the replacement again to replace more." as msg %} {% show_message "warning" msg %} {% endif %}
    {% csrf_token %} {{ form.q.as_hidden }} {{ form.search.as_hidden }} {{ form.replacement.as_hidden }} {{ confirm.confirm }} {% for unit in matching %} {% endfor %}
    {% icon "pencil.svg" %}
    {% format_translation unit.target unit.translation.language unit.translation.plural search_match=search_query match='replaced'%}
    {% format_translation unit.replacement unit.translation.language unit.translation.plural search_match=replacement match='replacement' %}
    {% endblock %}