diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2020-05-02 17:50:07 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-05-02 17:51:17 +0200 |
commit | bf18769c595215fa138ff23b9bd115bc238b99b9 (patch) | |
tree | a1af73b9258cb11c6718f0815cfb558176cd908d /extras/system/CMakeLists.txt | |
parent | 3626b53227439960175160da61ea3cdb8cf9827b (diff) | |
download | kshutdown-bf18769c595215fa138ff23b9bd115bc238b99b9.tar.gz kshutdown-bf18769c595215fa138ff23b9bd115bc238b99b9.zip |
Desktop file translations:
+ Creation of POT template for desktop files added to CMakeL10n rules.
+ Added creation of translated desktop files during build.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 973ccd2d158a63ad581504ab32fdae872e57cbfd)
Diffstat (limited to 'extras/system/CMakeLists.txt')
-rw-r--r-- | extras/system/CMakeLists.txt | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/extras/system/CMakeLists.txt b/extras/system/CMakeLists.txt index 6e6e107..a2d7e6d 100644 --- a/extras/system/CMakeLists.txt +++ b/extras/system/CMakeLists.txt @@ -1,6 +1,9 @@ -file( GLOB _files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.desktop ) +file( GLOB _files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} .directory *.desktop ) -install( - FILES ${_files} .directory - DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/extras/system -) +foreach( _source ${_files} ) + tde_create_translated_desktop( + SOURCE ${_source} + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/extras/system + PO_DIR ${CMAKE_SOURCE_DIR}/translations/desktop_files/extras + ) +endforeach() |