PDA

View Full Version : Qt Linguist Question (summarized)



zgulser
23rd March 2012, 14:14
Do the widgets in a form automatically transferred to .ts files when I perform lupdate? I mean no need for a mark like tr()?

Any ideas would be greatly appreciated and useful.

Spitfire
23rd March 2012, 16:39
If you're using standard buttons like QMessageBox::Ok then you don't need to do anything but every other string in the application should be wrapped in tr() if you want it extracted.

zgulser
24th March 2012, 16:32
That's what I thought. It's also true for other widgets inside the designer menu.

Thanks for your time..