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.
32 lines
823 B
32 lines
823 B
##### create translation templates ##############
|
|
|
|
tde_l10n_auto_add_subdirectories( )
|
|
|
|
file(
|
|
GLOB_RECURSE _konsole_desktops
|
|
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/*.desktop
|
|
${CMAKE_CURRENT_SOURCE_DIR}/*.desktop.cmake
|
|
)
|
|
list( SORT _konsole_desktops )
|
|
|
|
file(
|
|
GLOB _konsole_profiles
|
|
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/other/*shells
|
|
)
|
|
list( SORT _konsole_profiles )
|
|
|
|
tde_l10n_create_template(
|
|
CATALOG "desktop_files/konsole-desktops/"
|
|
SOURCES_DESKTOP ${_konsole_desktops} ${_konsole_profiles}
|
|
KEYWORDS Title0 Title1 Title2 Title3 Title4 Title5
|
|
DESTINATION "${CMAKE_SOURCE_DIR}/translations"
|
|
)
|
|
|
|
tde_l10n_create_template(
|
|
CATALOG "desktop_files/konsole-eventsrc/"
|
|
SOURCES eventsrc
|
|
DESTINATION "${CMAKE_SOURCE_DIR}/translations"
|
|
)
|