You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
3.9 KiB
108 lines
3.9 KiB
#=============================================================================
|
|
# The lxqt_translate_desktop() function was copied from the the
|
|
# LXQt LxQtTranste.cmake
|
|
#
|
|
# Original Author: Alexander Sokolov <sokoloff.a@gmail.com>
|
|
#
|
|
# funtion lxqt_translate_desktop(_RESULT
|
|
# SOURCES <sources>
|
|
# [TRANSLATION_DIR] translation_directory
|
|
# )
|
|
# Output:
|
|
# _RESULT The generated .desktop (.desktop) files
|
|
#
|
|
# Input:
|
|
#
|
|
# SOURCES List of input desktop files (.destktop.in) to be translated
|
|
# (merged), relative to the CMakeList.txt.
|
|
#
|
|
# TRANSLATION_DIR Optional path to the directory with the .ts files,
|
|
# relative to the CMakeList.txt. Defaults to
|
|
# "translations".
|
|
#
|
|
#=============================================================================
|
|
|
|
function(lxqt_translate_desktop _RESULT)
|
|
# Parse arguments ***************************************
|
|
set(oneValueArgs TRANSLATION_DIR)
|
|
set(multiValueArgs SOURCES)
|
|
|
|
cmake_parse_arguments(_ARGS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
|
|
|
# check for unknown arguments
|
|
set(_UNPARSED_ARGS ${_ARGS_UNPARSED_ARGUMENTS})
|
|
if (NOT ${_UNPARSED_ARGS} STREQUAL "")
|
|
MESSAGE(FATAL_ERROR
|
|
"Unknown arguments '${_UNPARSED_ARGS}'.\n"
|
|
"See lxqt_translate_desktop() documenation for more information.\n"
|
|
)
|
|
endif()
|
|
|
|
if (NOT DEFINED _ARGS_SOURCES)
|
|
set(${_RESULT} "" PARENT_SCOPE)
|
|
return()
|
|
else()
|
|
set(_sources ${_ARGS_SOURCES})
|
|
endif()
|
|
|
|
if (NOT DEFINED _ARGS_TRANSLATION_DIR)
|
|
set(_translationDir "translations")
|
|
else()
|
|
set(_translationDir ${_ARGS_TRANSLATION_DIR})
|
|
endif()
|
|
|
|
|
|
get_filename_component (_translationDir ${_translationDir} ABSOLUTE)
|
|
|
|
foreach (_inFile ${_sources})
|
|
get_filename_component(_inFile ${_inFile} ABSOLUTE)
|
|
get_filename_component(_fileName ${_inFile} NAME_WE)
|
|
#Extract the real extension ............
|
|
get_filename_component(_fileExt ${_inFile} EXT)
|
|
string(REPLACE ".in" "" _fileExt ${_fileExt})
|
|
#.......................................
|
|
set(_outFile "${CMAKE_CURRENT_BINARY_DIR}/${_fileName}${_fileExt}")
|
|
|
|
file(GLOB _translations
|
|
${_translationDir}/${_fileName}_*${_fileExt}
|
|
${_translationDir}/local/${_fileName}_*${_fileExt}
|
|
)
|
|
|
|
set(_pattern "'\\[.*]\\s*='")
|
|
if (_translations)
|
|
add_custom_command(OUTPUT ${_outFile}
|
|
COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile}
|
|
COMMAND grep -h ${_pattern} ${_translations} >> ${_outFile}
|
|
COMMENT "Generating ${_fileName}${_fileExt}"
|
|
)
|
|
else()
|
|
add_custom_command(OUTPUT ${_outFile}
|
|
COMMAND grep -v "'#TRANSLATIONS_DIR='" ${_inFile} > ${_outFile}
|
|
COMMENT "Generating ${_fileName}${_fileExt}"
|
|
)
|
|
endif()
|
|
|
|
set(__result ${__result} ${_outFile})
|
|
|
|
|
|
# TX file ***********************************************
|
|
set(_txFile "${CMAKE_BINARY_DIR}/tx/${_fileName}${_fileExt}.tx.sh")
|
|
string(REPLACE "${CMAKE_SOURCE_DIR}/" "" _tx_translationDir ${_translationDir})
|
|
string(REPLACE "${CMAKE_SOURCE_DIR}/" "" _tx_inFile ${_inFile})
|
|
string(REPLACE "." "" _fileType ${_fileExt})
|
|
|
|
file(WRITE ${_txFile}
|
|
"[ -f ${_inFile} ] || exit 0\n"
|
|
"echo '[lxde-qt.${_fileName}_${_fileType}]'\n"
|
|
"echo 'type = DESKTOP'\n"
|
|
"echo 'source_lang = en'\n"
|
|
"echo 'source_file = ${_tx_inFile}'\n"
|
|
"echo 'file_filter = ${_tx_translationDir}/${_fileName}_<lang>${_fileExt}'\n"
|
|
"echo ''\n"
|
|
)
|
|
|
|
endforeach()
|
|
|
|
set(${_RESULT} ${__result} PARENT_SCOPE)
|
|
endfunction(lxqt_translate_desktop)
|