I have a weird problem translating my qt application (qt 4.7.4 on Windows). What happens is the following:
1.- I execute lupdate and generate a .ts file.
2.- I edit the generated .ts file with qt linguist.
3.- I execute lrelease with the previous .ts file.
4.- From Netbeans, I clean and build the project and then run it.
When my application runs, most widgets (labels, pushbuttons, titles, menu actions, menus) are translated according to the translation file that i generated before. The problem is that some elements are not being translated although i provided a translation for them in the translation file (Qt Linguist recognized them).
My question is: is there a reason why some texts are being translated while others are being ignored?
I have made sure that every text is inside a tr(). (As I said before, they all appear in Qt Linguist).
Thanks for all the help.