En esta página

QT_EXCLUDE_SOURCES_FROM_TRANSLATION

Esta propiedad se introdujo en Qt 6.7.

Esta propiedad especifica una lista de rutas de archivos fuente que se excluyen de la traducción. Los archivos fuente que coincidan con los patrones de esta lista de exclusión son ignorados por lupdate.

Las rutas pueden ser absolutas o relativas a CMAKE_CURRENT_SOURCE_DIR. Las rutas pueden contener comodines en un formato aceptado por QRegularExpression::wildcardToRegularExpression.

Ejemplos

Excluir untranslatable.cpp y recursivamente todos los archivos del directorio 3rdparty.

qt_add_executable(myapp
    main.cpp
    untranslatable.cpp
    3rdparty/sqlite/sqlite3.h
    3rdparty/sqlite/sqlite3.c
    3rdparty/zlib/src/gzlib.c
    3rdparty/zlib/src/zlib.h
)
set_property(TARGET myapp PROPERTY QT_EXCLUDE_SOURCES_FROM_TRANSLATION
    untranslatable.cpp
    3rdparty/*
)

Ver también qt_add_lupdate, propiedad de destino QT_EXCLUDE_FROM_TRANSLATION, y propiedad de directorio QT_EXCLUDE_FROM_TRANSLATION.

© 2026 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.