{% extends "base.html" %} {% load i18n %} {% load txcommontags %} {% load permissions %} {% load txpermissions %} {% block breadcrumb %} {{block.super}} » {% trans "Projects" %} » {{resource.project}} » Edit {{resource}} {% endblock %} {% block title %} {{ block.super }} | Edit {{ resource}} {% endblock %} {% block content_title %}

{% if resource %} {% blocktrans with resource.name as resource_name %}Edit {{ resource_name }}{% endblocktrans %} {% endif %}

{% endblock %} {% block content_main %}

{% trans "Edit the details of the translation resource" %}

{% csrf_token %} {% form_as_table_rows resource_form %} {% form_as_table_rows url_form %}

{% blocktrans %}

To enable automatic "fetching" of your source language strings by Transifex, enter a URL to your source file (e.g. POT file). Refer to the documentation for more information.

Warning: Transifex will overwrite the existing source strings and translations with the ones found in the linked file. This may lead to loss of translations, so make sure the URL links to the correct file before submitting the form.

{% endblocktrans %}
{% get_permission "project_perm.maintain" for request.user and resource.project as "is_maintainer" %} {% if perms.projects.delete_resource or is_maintainer or request.user.is_superuser %}

{% trans "Delete resource from Transifex" %}

{% trans "Delete resource" %}
{% endif %} {% endblock %}