2018-06-13 01:48:38 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
|
2018-08-21 20:37:47 +00:00
|
|
|
<name>embroidery ZIP file output</name>
|
2018-08-21 00:42:02 +00:00
|
|
|
<id>org.inkstitch.output.zip.{{ locale }}</id>
|
2018-06-13 01:48:38 +00:00
|
|
|
<dependency type="executable" location="extensions">inkstitch.py</dependency>
|
|
|
|
<dependency type="executable" location="extensions">inkex.py</dependency>
|
|
|
|
<output>
|
|
|
|
<extension>.zip</extension>
|
|
|
|
<mimetype>application/zip</mimetype>
|
2018-08-26 18:06:24 +00:00
|
|
|
<_filetypename>{{ _("Ink/Stitch: ZIP export multiple formats (.zip)") }}</_filetypename>
|
2018-08-20 19:49:19 +00:00
|
|
|
<_filetypetooltip>{{ _("Create a ZIP with multiple embroidery file formats using Ink/Stitch") }}</_filetypetooltip>
|
2018-06-13 01:48:38 +00:00
|
|
|
<dataloss>true</dataloss>
|
|
|
|
</output>
|
2018-08-20 02:14:10 +00:00
|
|
|
{% for format, description in formats %}
|
2018-08-21 00:42:02 +00:00
|
|
|
<param name="format-{{ format }}" type="boolean" _gui-text=".{{ format | upper }}: {{ _(description) }}">false</param>
|
2018-08-20 02:14:10 +00:00
|
|
|
{% endfor %}
|
2018-06-13 01:48:38 +00:00
|
|
|
<param name="extension" type="string" gui-hidden="true">zip</param>
|
|
|
|
<script>
|
|
|
|
<command reldir="extensions" interpreter="python">inkstitch.py</command>
|
|
|
|
</script>
|
|
|
|
</inkscape-extension>
|