I have this source:
File stringconstant.h
File stringconstant.cppCode:
#include <QString> #include <QStringList> { Q_OBJECT public: };
Problem is: when I run lupdate, the .ts file created, but it have nothing.Code:
#include "stringconstant.h" #include <QStringList> << QT_TR_NOOP("Mother") << QT_TR_NOOP("Father");
How can I fix this ?