summaryrefslogtreecommitdiff
path: root/templates/zip.xml
diff options
context:
space:
mode:
Diffstat (limited to 'templates/zip.xml')
-rw-r--r--templates/zip.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/zip.xml b/templates/zip.xml
new file mode 100644
index 00000000..4d620424
--- /dev/null
+++ b/templates/zip.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
+ <name>embroidery ZIP file output</name>
+ <id>org.inkstitch.output.zip.{{ locale }}</id>
+ <output>
+ <extension>.zip</extension>
+ <mimetype>application/zip</mimetype>
+ <_filetypename>{{ _("Ink/Stitch: ZIP export multiple formats (.zip)") }}</_filetypename>
+ <_filetypetooltip>{{ _("Create a ZIP with multiple embroidery file formats using Ink/Stitch") }}</_filetypetooltip>
+ <dataloss>true</dataloss>
+ </output>
+ {%- for format, description, mimetype, category in formats %}
+ {%- if category == "embroidery" %}
+ <param name="format-{{ format }}" type="boolean" _gui-text=".{{ format | upper }}: {{ _(description) }}">false</param>
+ {%- endif %}
+ {%- endfor %}
+ <param name="format-svg" type="boolean" _gui-text=".SVG: {{ _("Scalable Vector Graphic") }}">false</param>
+ <param name="format-threadlist" type="boolean" _gui-text=".TXT: {{ _("Threadlist") }}">false</param>
+ <param name="extension" type="string" gui-hidden="true">zip</param>
+ <script>
+ {{ command_tag | safe }}
+ </script>
+</inkscape-extension>