Translate Qt App without QtLinguist
-
Hello!!
I am developing an app that I want it to be translated. I was working with QtLinguist but I have a problem with that. The problem is that I want a third person to translate it for me but I don't want that this person see my code.
Is there an option to do this keeping the code safe?
Thank you very much!
-
@ivanicy said in Translate Qt App without QtLinguist:
but I don't want that this person see my code.
Then just give him the .ts-files.
-
@ivanicy I think I know where your confusion comes from,
you load the ts files that are still in your project directory. QtLinguist is smart enough to search that directory for source code, to display that in the info window.
If you copy the ts files somewhere else, you won't have that problem.
Also shameless plug, my PhrasebookUtilityTool has in the beta version a save/read/patch with csv feature. Sadly thats still somewhat buggy, and therefore not yet in the repo :D
But coming soon™️, when I find the time the fix the bugs.
-
Just remove the translator but I would also provide a english - english translation so e.g. abbreviations used in code can be properly expanded (or e.g. utf-8 stuff which may not be properly encoded on windows etc)
-
@Christian-Ehrlicher Thank you very much!