Translation
-
Hi. In order to have the texts to translate in my ts file I have to run lpupdate by hand, in this way:
/Dati/Qt/Qt5.4.0/5.4/gcc/bin/lupdate Qml/*.qml -ts DomusBossTouch_it.ts
I already have in my .pro file this lines of code:
@
lupdate_only {
SOURCES = Qml\main.qml
Qml\QQMain.qml
Qml\QQServer.qml
qcmainform.cpp
}
@but seems to have to effect.
Is a bug of qtcreator (3.3.0)?
[edit: added missing coding tags @ SGaist]
-
Qt Creator has nothing to do with lupdate tool, so it is definitely not a bug there. Running lupdate manually has always been a requirement, it is not part of standard qmake/ make build process.
What should work for you is to run
@
lupdate yourProFileName.pro
@ -
Hm, I do not know why it does not work, then.