I'd like to write a QtQuick app based on Python (PySide) and QML.
I know Qt apps have got their own translation technology, but I would like to stick to gettext for this one. I'd like to know if it's possible to:
- Mark strings for translation in QML files in a way gettext tools can extract them into a
.potfile - Have gettext translate QML files at runtime.
I know this is done in the Unity 2D code, in C++, so I'm wondering how it can be done with Python.
Note: I'm talking about using exclusively gettext at runtime, not about converting between gettext and Qt Linguist formats.