inkstitch/templates/global_commands.xml

23 wiersze
959 B
XML
Czysty Zwykły widok Historia

2018-08-24 20:29:13 +00:00
<?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>
2018-08-24 20:29:13 +00:00
{% 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">
2019-04-17 00:18:46 +00:00
{# L10N Inkscape submenu under Extensions -> Ink/Stitch #}
<submenu name="Commands" />
2018-08-24 20:29:13 +00:00
</submenu>
</effects-menu>
</effect>
<script>
2020-03-07 03:39:25 +00:00
{{ command_tag | safe }}
2018-08-24 20:29:13 +00:00
</script>
</inkscape-extension>