Translate system.vision.showConfirm buttons Yes/No
M
Martijn Goedhart
We have requirements to use only Dutch language, so it's a nuissance that the confirm-window Yes and No buttons don't translate.
I would like to feature to have those term translated as well.
Log In
P
Paul Griffith
Instead of waiting for us to implement this (it's going to take a while, even if we decide to implement it) you can script your own workaround:
```python
from com.inductiveautomation.ignition.client.util.gui import ErrorUtil
resp = ErrorUtil.showConfirm("Are you sure?", "Title", ["Yea", "Nay"])
```