kopia lustrzana https://github.com/inkstitch/inkstitch
22 wiersze
1.1 KiB
XML
22 wiersze
1.1 KiB
XML
<?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 in formats %}
|
|
<param name="format-{{ format }}" type="boolean" _gui-text=".{{ format | upper }}: {{ _(description) }}">false</param>
|
|
{%- 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>
|