{% load i18n %} {% load translations %} {% if component.get_export_url %}

{% trans "Typical workflow for fixing merge conflicts" %}

  1. {% trans "Commit all pending changes in Weblate and lock the translation component." %}
    wlc commit; wlc lock
  2. {% trans "Add Weblate exported repository as a remote." %}
    git remote add weblate {{ component.get_export_url }} ; git remote update weblate
  3. {% trans "Merge Weblate changes and resolve any conflicts." %}
    git merge weblate/main
  4. {% trans "Push changes into upstream repository." %}
    git push origin main
  5. {% trans "Weblate should now be able to see updated repository and you can unlock it." %}
    wlc pull ; wlc unlock
{% endif %}

{% trans "Check the FAQ for info on how to resolve this." %}