inkstitch/templates/global_commands.xml

23 wiersze
973 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>
<param name="description" type="description">These commands affect the entire embroidery design.</param>
{% 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>