Quote Originally Posted by wysota View Post
So you're not using MSYS... Ok... Could you show us the contents of your .pro file?
Qt Code:
  1. # Use application template
  2. TEMPLATE = app
  3.  
  4. win32 {
  5. LIBS += -lshell32 \
  6. -ladvapi32
  7. }
  8.  
  9. include(project.pri)
  10.  
  11.  
  12. RESOURCES = project.qrc
  13.  
  14. RC_FILE = project.rc
  15.  
  16. # The language files which translate the application
  17. TRANSLATIONS = language/project_de.ts \ # German
  18. language/project_en.ts \ # English
  19. language/project_it.ts \ # Italian
  20. language/project_fr.ts \ # French
  21. language/project_sp.ts # Spanish
  22.  
  23. QTPLUGIN += qjpeg
  24.  
  25. # Qt libs
  26. QT += network \ # Add networking support
  27. 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