I have added some manual entries in my .ts
files that are removed every time I run the lupdate.exe
command.
lupdate.exe .. -no-obsolete -locations absolute -ts locale_en.ts locale_fr.ts
I would like lupdate.exe
to add the missing entries, to clean the obsolete ones, but preserving the manual entries (that are corresponding to strings to be translated but which translation occurs through a function and not a direct call to either qsTr
or qTranslate
).
Is this possible ?
My context:
I'm in a pure qml solution without any C backend, without any build or make mechanism. lupdate.exe
and lrelease.exe
are called manually.