Good morning,
we are doing a project using Qt5 and CMake named NEWSEGScanner and we are developing using Qt Creator.
At the moment I am doing the translation part, so I added the following macros in CMakeLists.txt:

Qt Code:
  1. [...]
  2. SET(
  3. NEWSEGSCANNER_TRANSLATIONS
  4. ${CMAKE_CURRENT_SOURCE_DIR}/Lang/es_PE.ts
  5. )
  6. [...]
  7. QT5_WRAP_UI(NEWSEGSCANNER_UI_SRCS ${NEWSEGSCANNER_UIS})
  8. QT5_ADD_RESOURCES(NEWSEGSCANNER_RC_SRCS ${NEWSEGSCANNER_RCS})
  9. QT5_CREATE_TRANSLATION(QM_FILES ${NEWSEGSCANNER_SRCS} ${NEWSEGSCANNER_UIS} ${NEWSEGSCANNER_TRANSLATIONS})
  10. QT5_ADD_TRANSLATION(QM_FILES ${NEWSEGSCANNER_TRANSLATIONS})
  11. [...]
  12. ADD_EXECUTABLE(
  13. ${NEWSEGSCANNER_TARGET} WIN32
  14. ${NEWSEGSCANNER_SRCS}
  15. ${NEWSEGSCANNER_UI_SRCS}
  16. ${NEWSEGSCANNER_RC_SRCS}
  17. ${QM_FILES}
  18. )
  19. [...]
To copy to clipboard, switch view to plain text mode 

This generates and update the es_PE.ts file that I would edit using the tool Qt Linguistic to add the translations.

When I try to open it, the tool always freezes and I don't understand why. I am using Qt Linguistic v. 5.7.0

The ts file can be downloaded from here https://dl.dropboxusercontent.com/u/26692214/es_PE.ts

Thanx in advance for the help