2018-08-17 02:50:34 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
|
2018-08-21 20:37:47 +00:00
|
|
|
<name>{% trans %}Add Layer Commands{% endtrans %}</name>
|
2018-08-21 00:42:02 +00:00
|
|
|
<id>org.inkstitch.layer_commands.{{ locale }}</id>
|
2018-08-17 02:50:34 +00:00
|
|
|
<dependency type="executable" location="extensions">inkstitch.py</dependency>
|
|
|
|
<dependency type="executable" location="extensions">inkex.py</dependency>
|
2018-08-20 19:49:19 +00:00
|
|
|
<param name="description" type="description">{% trans %}Commands will be added to the currently-selected layer.{% endtrans %}</param>
|
|
|
|
{% for command, description in layer_commands %}
|
2018-08-21 00:42:02 +00:00
|
|
|
<param name="{{ command }}" type="boolean" _gui-text="{{ _(description) }}">false</param>
|
2018-08-20 19:49:19 +00:00
|
|
|
{% endfor %}
|
2018-08-17 02:50:34 +00:00
|
|
|
<param name="extension" type="string" gui-hidden="true">layer_commands</param>
|
|
|
|
<effect>
|
|
|
|
<object-type>all</object-type>
|
2018-08-24 00:53:30 +00:00
|
|
|
<effects-menu>
|
2018-08-21 00:42:02 +00:00
|
|
|
<submenu name="Ink/Stitch">
|
2018-08-24 20:29:13 +00:00
|
|
|
<submenu name="{% trans %}English{% endtrans %}">
|
|
|
|
<submenu name="{% trans %}Commands{% endtrans %}" />
|
|
|
|
</submenu>
|
2018-08-21 00:42:02 +00:00
|
|
|
</submenu>
|
2018-08-24 00:53:30 +00:00
|
|
|
</effects-menu>
|
2018-08-17 02:50:34 +00:00
|
|
|
</effect>
|
|
|
|
<script>
|
|
|
|
<command reldir="extensions" interpreter="python">inkstitch.py</command>
|
|
|
|
</script>
|
|
|
|
</inkscape-extension>
|