From 2f706891f32258c2b070471905f983e4585296d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Fri, 26 Jun 2020 11:36:35 +0200 Subject: Desktop file translations: + Creation of POT template for desktop files added to CMakeL10n rules. + Added creation of translated desktop files during build. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- l10n/CMakeLists.txt | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) (limited to 'l10n/CMakeLists.txt') diff --git a/l10n/CMakeLists.txt b/l10n/CMakeLists.txt index c9516b52c..96c9eb5b5 100644 --- a/l10n/CMakeLists.txt +++ b/l10n/CMakeLists.txt @@ -7,7 +7,8 @@ # ################################################# -install( FILES +tde_create_translated_desktop( + SOURCE northafrica.desktop westafrica.desktop southafrica.desktop centralafrica.desktop caribbean.desktop oceania.desktop centralamerica.desktop northamerica.desktop southamerica.desktop @@ -15,16 +16,25 @@ install( FILES northeurope.desktop southeurope.desktop southasia.desktop southeastasia.desktop eastasia.desktop centralasia.desktop middleeast.desktop - DESTINATION - ${LOCALE_INSTALL_DIR}/l10n ) + DESTINATION ${LOCALE_INSTALL_DIR}/l10n + PO_DIR l10n-desktops +) file( GLOB _dirs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} * ) foreach( _dir ${_dirs} ) - if( IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${_dir} ) - if( NOT (${_dir} STREQUAL ".svn" OR ${_dir} STREQUAL "CMakeFiles") ) - install( FILES ${_dir}/entry.desktop ${_dir}/flag.png - DESTINATION ${LOCALE_INSTALL_DIR}/l10n/${_dir} ) - endif( ) + if( IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${_dir} AND + NOT (${_dir} STREQUAL ".svn" OR ${_dir} STREQUAL "CMakeFiles") AND + EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${_dir}/entry.desktop AND + EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${_dir}/flag.png ) + tde_create_translated_desktop( + SOURCE ${_dir}/entry.desktop + DESTINATION ${LOCALE_INSTALL_DIR}/l10n/${_dir} + PO_DIR l10n-desktops + ) + install( + FILES ${_dir}/flag.png + DESTINATION ${LOCALE_INSTALL_DIR}/l10n/${_dir} + ) endif( ) endforeach( ) -- cgit v1.2.1