vote up 3 vote down star

I'm looking for a way to cheat and create some very rough translations of my Qt application using Qt linguist and an already-existing translation service such as google translate.

There's a public API for google translate, so I'm hoping someone has already tried this, but I can't seem to find it. Has anyone seen anything like this before?

I'm not expecting brilliant translations - at this point it's just to show as a proof of concept.

flag

1  
Hoping to make it to the front page of thedailywtf.com? :p – UncleBens Oct 8 at 14:46
Haha, not at all - all I want is some realistic-looking translations so I can advertise the Qt localisation system for our application. So the spanish translation should look spanish, etc. etc. – Thomi Oct 8 at 14:56

4 Answers

vote up 1 vote down

I haven't seen anything like this before (probably because automated translation will likely produce less than stellar results), but it shouldn't be too hard to implement.

The .ts files produced by the lupdate tool are in fact plain XML files (and even not so complicated ones - just open one in a text editor and see for your self). Therefore, you can use a variety of XML tools/libraries to edit the <translation> elements in the file. Qt even comes with one.

link|flag
yes, that's what I was planning - I will release the code once it's up and working. Again, the ides is not to produce usable translations, but rather to produce good-looking translation data, for demonstration purposes only. – Thomi Oct 9 at 7:40
vote up 0 vote down

Yes, it's possible; and actually not hard at all!

I've written a C++ api before that used the Google Translate Ajax Javascript API (this is the only existing Google Translate API) using libCURL to make rough translations for an unfinished game.

Since Qt linguist uses XML files according to the person above, it should be quite easy to translate and write them to a valid XML file!

link|flag
vote up 1 vote down

I've written an open source app to do this with gettext .po files, it wouldn't be hard to modify for Qt Linguist files. Demo and php source available at http://pepipopum.dixo.net

link|flag
vote up 0 vote down

You could use lconvert to convert the files to .po

lconvert -if ts -of po -o myFile.po myfile.ts

Then run them through Paul Dixons translator, then convert them back using lconvert again.

lconvert -if po -of ts -o myFile.ts myfile.po
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.