diff options
author | Slávek Banko <[email protected]> | 2020-06-10 21:25:06 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2020-06-12 14:19:33 +0200 |
commit | a25cdc59c6302046b3121276f5a33f6b1b55a538 (patch) | |
tree | 5c41c38d0c81e99bfe2d3a8564af42cc2d92941f /kolf/courses/CMakeLists.txt | |
parent | dc556f3e9a46e749b36cf773f9211db4ce58d96b (diff) | |
download | tdegames-a25cdc59c6302046b3121276f5a33f6b1b55a538.tar.gz tdegames-a25cdc59c6302046b3121276f5a33f6b1b55a538.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 <[email protected]>
Diffstat (limited to 'kolf/courses/CMakeLists.txt')
-rw-r--r-- | kolf/courses/CMakeLists.txt | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/kolf/courses/CMakeLists.txt b/kolf/courses/CMakeLists.txt index 01fde2a4..ac4a494e 100644 --- a/kolf/courses/CMakeLists.txt +++ b/kolf/courses/CMakeLists.txt @@ -1,6 +1,11 @@ # This file is genereted by trinity-automake-cmake-convert script by Fat-Zer -install( FILES Classic.kolf Hard.kolf Medium.kolf Easy.kolf ReallyEasy Practice - Impossible USApro - DESTINATION ${DATA_INSTALL_DIR}/kolf/courses +foreach( _course Classic.kolf Hard.kolf Medium.kolf Easy.kolf + ReallyEasy Practice Impossible USApro ) + tde_create_translated_desktop( + SOURCE ${_course} + DESTINATION ${DATA_INSTALL_DIR}/kolf/courses + PO_DIR ${CMAKE_SOURCE_DIR}translations/desktop_files/kolf-courses + ) +endforeach() |