
Originally Posted by
wysota
So you're not using MSYS... Ok... Could you show us the contents of your .pro file?
# Use application template
TEMPLATE = app
win32 {
LIBS += -lshell32 \
-ladvapi32
}
include(project.pri)
RESOURCES = project.qrc
RC_FILE = project.rc
# The language files which translate the application
TRANSLATIONS = language/project_de.ts \ # German
language/project_en.ts \ # English
language/project_it.ts \ # Italian
language/project_fr.ts \ # French
language/project_sp.ts # Spanish
QTPLUGIN += qjpeg
# Qt libs
QT += network \ # Add networking support
xml
# Use application template
TEMPLATE = app
win32 {
LIBS += -lshell32 \
-ladvapi32
}
include(project.pri)
RESOURCES = project.qrc
RC_FILE = project.rc
# The language files which translate the application
TRANSLATIONS = language/project_de.ts \ # German
language/project_en.ts \ # English
language/project_it.ts \ # Italian
language/project_fr.ts \ # French
language/project_sp.ts # Spanish
QTPLUGIN += qjpeg
# Qt libs
QT += network \ # Add networking support
xml
To copy to clipboard, switch view to plain text mode
When I switch the order of languages in the TRANSLATIONS line everytime only the first one gets parsed and the second one fails with that stupid message above
Bookmarks