
John Bintz wrote:
Unfortunately, I'm not seeing how you would make the translated option elements show up correctly, even after getting the <_option> tags working. :/ Aaron, Ted: do you have any insights?
I've fixed this. It now works like the enumeration parameter:
<option value="Single">Single translated</option>
The value="..." is never translated. That is because you need an unstranslated string for the python script to react on. The string between <>...</> is always translated.
<_option> no longer works, as it is redundant and confusing since <option> also translates the string.
A catch: when value="..." is not present, the option is still shown! Inkscape will take the *untranslated* string between <>...</> for the value.
Let me know if there is more trouble with this, Johan