Disable form translations
-
Hi, I need to prevent some forms of my application from being translated. Or better, I need Qt Linguist not to include some forms in the translations list. I have a lot of forms, most of this are not visible for the final localized user, so, to reduce translations cost, I need to send to the (well paid) translators a reduced ts file, with only the final user's forms.
Any idea?Thank you
-
Yes, it is there for every single property seperately. With "string properties", I meant every property that takes a string. That includes texts on labels, tab titltes, etc. Everything that is normally translatable.
Alternatively, you can create your own call to lupdate. By default, it uses all sources, but you can also tell it manually which files to parse I think.
-
It seems not to work properly.
In Designer, I select a push button, then I remove the tick "translatable" from the "text" property and the "tool tip property", then I run lrelease, I reopen the ts file with QT linguist but the text of the push button is still there... very weird