inkstitch/templates/global_commands.xml

23 wiersze
954 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.{{ id_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="{{ menu_inkstitch }}" translatable="no">
{# L10N Inkscape submenu under Extensions -> Ink/Stitch #}
<submenu name="Commands" />
</submenu>
</effects-menu>
</effect>
<script>
{{ command_tag | safe }}
</script>
</inkscape-extension>