kopia lustrzana https://github.com/inkstitch/inkstitch
23 wiersze
935 B
XML
23 wiersze
935 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<inkscape-extension translationdomain="inkstitch" xmlns="http://www.inkscape.org/namespace/inkscape/extension">
|
|
<name>Add Commands</name>
|
|
<id>org.inkstitch.global_commands</id>
|
|
<label>These commands affect the entire embroidery design.</label>
|
|
{% for command, description in global_commands %}
|
|
<param name="{{ command }}" type="boolean" gui-text="{{ description }}">false</param>
|
|
{% endfor %}
|
|
<param name="extension" type="string" gui-hidden="true">global_commands</param>
|
|
<effect>
|
|
<object-type>all</object-type>
|
|
<effects-menu>
|
|
<submenu name="Ink/Stitch" translatable="no">
|
|
{# L10N Inkscape submenu under Extensions -> Ink/Stitch #}
|
|
<submenu name="Commands" />
|
|
</submenu>
|
|
</effects-menu>
|
|
</effect>
|
|
<script>
|
|
{{ command_tag | safe }}
|
|
</script>
|
|
</inkscape-extension>
|