inkstitch/templates/remove_embroidery_settings.xml

37 wiersze
1.9 KiB
XML
Czysty Zwykły widok Historia

2020-02-02 19:08:00 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension translationdomain="inkstitch" xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<name>Remove embroidery settings</name>
2024-02-07 20:23:05 +00:00
<id>org.{{ id_inkstitch }}.remove_embroidery_settings</id>
<label>Use this extension to remove the information Ink/Stitch has stored in your document. This can be especially useful if you copy and paste objects from an embroidery design into another document.</label>
<param name="del_params" type="boolean" gui-text="Remove Params"
gui-description="Removes params from selected objects or all objects if nothing is selected.">true</param>
2023-09-03 11:00:23 +00:00
<param name="del_commands" type="optiongroup" gui-text="Remove Commands"
gui-description="Removes visual commands from selected objects or all objects if nothing is selected."
appearance="combo">
<option value="none">None</option>
<option value="all">All</option>
{%- for command, description in object_commands -%}
<option value="{{ command }}">{{ description }}</option>
{% endfor %}
{% for command, description in layer_commands %}
<option value="{{ command }}">{{ description }}</option>
{% endfor %}
{% for command, description in global_commands %}
<option value="{{ command }}">{{ description }}</option>
{% endfor %}
</param>
<param name="del_print" type="boolean" gui-text="Remove Print Settings from SVG metadata">false</param>
2020-02-02 19:08:00 +00:00
<param name="extension" type="string" gui-hidden="true">remove_embroidery_settings</param>
<effect>
<object-type>all</object-type>
<effects-menu>
2024-02-07 20:23:05 +00:00
<submenu name="{{ menu_inkstitch }}" translatable="no">
<submenu name="Troubleshoot" />
2020-02-02 19:08:00 +00:00
</submenu>
</effects-menu>
</effect>
<script>
2020-03-07 03:39:25 +00:00
{{ command_tag | safe }}
2020-02-02 19:08:00 +00:00
</script>
</inkscape-extension>