inkstitch/templates/global_commands.xml

23 wiersze
954 B
XML

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>
2024-02-07 20:23:05 +00:00
<id>org.{{ id_inkstitch }}.global_commands</id>
<label>These commands affect the entire embroidery design.</label>
2018-08-24 20:29:13 +00:00
{% for command, description in global_commands %}
2021-09-27 13:18:54 +00:00
<param name="{{ command }}" type="boolean" gui-text="{{ description }}">false</param>
2018-08-24 20:29:13 +00:00
{% endfor %}
<param name="extension" type="string" gui-hidden="true">global_commands</param>
<effect>
<object-type>all</object-type>
<effects-menu>
2024-02-07 20:23:05 +00:00
<submenu name="{{ menu_inkstitch }}" translatable="no">
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>