2018-08-27 12:20:23 +00:00
|
|
|
|
|
|
|
GET_FILENAME_COMPONENT(SRC_PARENT_DIR ${PROJECT_SOURCE_DIR} PATH)
|
|
|
|
SET(FGDATA_SRC_DIR "${SRC_PARENT_DIR}/fgdata")
|
2018-09-22 16:28:19 +00:00
|
|
|
set(xlf_file "en_US/FlightGear-Qt.xlf")
|
2018-08-27 12:20:23 +00:00
|
|
|
|
2018-09-22 16:28:19 +00:00
|
|
|
if(EXISTS "${TRANSLATIONS_SRC_DIR}/${xlf_file}")
|
2018-08-27 12:20:23 +00:00
|
|
|
message(STATUS "Using explicitly defined translations from: ${TRANSLATIONS_SRC_DIR}")
|
|
|
|
set(do_translate TRUE)
|
2018-09-22 16:28:19 +00:00
|
|
|
elseif(EXISTS "${FGDATA_SRC_DIR}/Translations/${xlf_file}")
|
2018-08-27 12:20:23 +00:00
|
|
|
SET(TRANSLATIONS_SRC_DIR "${FGDATA_SRC_DIR}/Translations")
|
|
|
|
message(STATUS "Found translations dir implicitly: ${TRANSLATIONS_SRC_DIR}")
|
|
|
|
set(do_translate TRUE)
|
|
|
|
else()
|
|
|
|
message(STATUS "Couldn't find translations data, will not include translated string in the executable")
|
2018-09-01 15:22:08 +00:00
|
|
|
set(do_translate FALSE)
|
2018-08-27 12:20:23 +00:00
|
|
|
endif()
|
|
|
|
|
2018-09-01 13:59:24 +00:00
|
|
|
find_package(Qt5 5.4 COMPONENTS LinguistTools)
|
|
|
|
if (${do_translate} AND NOT TARGET Qt5::lrelease)
|
|
|
|
set(do_translate FALSE)
|
|
|
|
message(STATUS "Built-in translations disabled becuase Qt5 lrelease tool was not found."
|
|
|
|
"\n(on Linux You may need to install an additional package containing the Qt5 translation tools)")
|
|
|
|
endif()
|
|
|
|
|
2018-08-27 12:20:23 +00:00
|
|
|
if (${do_translate})
|
|
|
|
# FIXME - determine this based on subdirs of TRANSLATIONS_SRC_DIR
|
|
|
|
set(LANGUAGES en_US de es nl fr it pl pt zh_CN)
|
|
|
|
set(translation_res "${PROJECT_BINARY_DIR}/translations.qrc")
|
|
|
|
|
|
|
|
add_custom_target(fgfs_qm_files ALL)
|
|
|
|
|
2018-08-28 22:34:44 +00:00
|
|
|
file(WRITE ${translation_res} "<RCC>\n<qresource prefix=\"/\">\n")
|
2018-08-27 12:20:23 +00:00
|
|
|
|
|
|
|
# qm generation and installation
|
|
|
|
foreach(LANG ${LANGUAGES})
|
2018-08-28 22:34:44 +00:00
|
|
|
# trim down to a two-letter code for output. This will need to get
|
|
|
|
# smarter if we ever have different translations for a dialect,
|
|
|
|
# eg en_GB, fr_CA or pt_BR.
|
|
|
|
string(SUBSTRING ${LANG} 0 2 simple_lang)
|
|
|
|
|
|
|
|
set(out_file "${PROJECT_BINARY_DIR}/FlightGear_${simple_lang}.qm")
|
2018-08-27 12:20:23 +00:00
|
|
|
add_custom_command(
|
|
|
|
OUTPUT ${out_file}
|
|
|
|
COMMAND Qt5::lrelease ${TRANSLATIONS_SRC_DIR}/${LANG}/FlightGear-Qt.xlf
|
|
|
|
-qm ${out_file}
|
|
|
|
DEPENDS ${TRANSLATIONS_SRC_DIR}/${LANG}/FlightGear-Qt.xlf
|
|
|
|
)
|
2018-08-28 22:34:44 +00:00
|
|
|
add_custom_target(fgfs_${simple_lang}_qm ALL DEPENDS ${out_file})
|
2018-08-27 12:20:23 +00:00
|
|
|
|
2018-08-28 22:34:44 +00:00
|
|
|
add_dependencies(fgfs_qm_files fgfs_${simple_lang}_qm)
|
2018-08-27 12:20:23 +00:00
|
|
|
|
|
|
|
# local path needed here, not absolute
|
2018-08-28 22:34:44 +00:00
|
|
|
file(APPEND ${translation_res} "<file>FlightGear_${simple_lang}.qm</file>\n")
|
2018-08-27 12:20:23 +00:00
|
|
|
endforeach()
|
|
|
|
|
|
|
|
file(APPEND ${translation_res} "</qresource>\n</RCC>")
|
2018-08-28 16:12:31 +00:00
|
|
|
|
|
|
|
# set this so config.h can detect it
|
|
|
|
set(HAVE_QRC_TRANSLATIONS TRUE)
|
2018-09-01 15:22:08 +00:00
|
|
|
endif() # of do translate
|