inkstitch/templates/layer_commands.xml

22 wiersze
949 B
XML
Czysty Zwykły widok Historia

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-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>
<effects-menu>
2018-08-21 00:42:02 +00:00
<submenu name="Ink/Stitch">
2019-04-17 00:18:46 +00:00
<submenu name="{% trans %}Commands{% endtrans %}" />
2018-08-21 00:42:02 +00:00
</submenu>
</effects-menu>
2018-08-17 02:50:34 +00:00
</effect>
<script>
2020-03-07 03:39:25 +00:00
{{ command_tag | safe }}
2018-08-17 02:50:34 +00:00
</script>
</inkscape-extension>