diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2018-12-20 18:41:24 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2018-12-20 18:41:24 +0100 |
commit | d44616976482cae1d41c583d00192a6b274b7e9e (patch) | |
tree | 36974a2b25499023c7618118f6ca2ceb6433ec67 | |
parent | 5528b0a0892098a5905c9417f4a1f27b74744532 (diff) | |
download | k3b-d44616976482cae1d41c583d00192a6b274b7e9e.tar.gz k3b-d44616976482cae1d41c583d00192a6b274b7e9e.zip |
Add CMakeL10n rules.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r-- | CMakeL10n.txt | 28 | ||||
-rw-r--r-- | k3bsetup/CMakeL10n.txt | 3 | ||||
-rw-r--r-- | libk3b/CMakeL10n.txt | 3 | ||||
-rw-r--r-- | libk3bdevice/CMakeL10n.txt | 3 | ||||
-rw-r--r-- | src/CMakeL10n.txt | 9 | ||||
-rw-r--r-- | tdefile-plugins/CMakeL10n.txt | 3 | ||||
-rw-r--r-- | tdefile-plugins/k3bproject/CMakeL10n.txt | 3 | ||||
-rw-r--r-- | tdeioslaves/CMakeL10n.txt | 3 | ||||
-rw-r--r-- | tdeioslaves/videodvd/CMakeL10n.txt | 3 |
9 files changed, 58 insertions, 0 deletions
diff --git a/CMakeL10n.txt b/CMakeL10n.txt new file mode 100644 index 0000000..a87d06b --- /dev/null +++ b/CMakeL10n.txt @@ -0,0 +1,28 @@ +################################################# +# +# (C) 2018 Slávek Banko +# slavek.banko (AT) axis.cz +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +cmake_minimum_required( VERSION 2.8 ) + + +##### include our cmake modules ################# + +set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" ) +include( TDEL10n ) + + +##### set directory for POT files ############### + +set( POT_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../k3b-i18n/template/messages" ) + + +##### create translation templates ############## + +tde_l10n_auto_add_subdirectories( ) diff --git a/k3bsetup/CMakeL10n.txt b/k3bsetup/CMakeL10n.txt new file mode 100644 index 0000000..d7a288b --- /dev/null +++ b/k3bsetup/CMakeL10n.txt @@ -0,0 +1,3 @@ +##### create translation templates ############## + +tde_l10n_create_template( "k3bsetup" ) diff --git a/libk3b/CMakeL10n.txt b/libk3b/CMakeL10n.txt new file mode 100644 index 0000000..a273c04 --- /dev/null +++ b/libk3b/CMakeL10n.txt @@ -0,0 +1,3 @@ +##### create translation templates ############## + +tde_l10n_create_template( "libk3b" ) diff --git a/libk3bdevice/CMakeL10n.txt b/libk3bdevice/CMakeL10n.txt new file mode 100644 index 0000000..af7ba49 --- /dev/null +++ b/libk3bdevice/CMakeL10n.txt @@ -0,0 +1,3 @@ +##### create translation templates ############## + +tde_l10n_create_template( "libk3bdevice" ) diff --git a/src/CMakeL10n.txt b/src/CMakeL10n.txt new file mode 100644 index 0000000..e03d90c --- /dev/null +++ b/src/CMakeL10n.txt @@ -0,0 +1,9 @@ +##### create translation templates ############## + +tde_l10n_create_template( + CATALOG "k3b" + SOURCES + "." + "../plugins" + "tips" +) diff --git a/tdefile-plugins/CMakeL10n.txt b/tdefile-plugins/CMakeL10n.txt new file mode 100644 index 0000000..b585ce4 --- /dev/null +++ b/tdefile-plugins/CMakeL10n.txt @@ -0,0 +1,3 @@ +##### create translation templates ############## + +tde_l10n_auto_add_subdirectories( ) diff --git a/tdefile-plugins/k3bproject/CMakeL10n.txt b/tdefile-plugins/k3bproject/CMakeL10n.txt new file mode 100644 index 0000000..2124ffe --- /dev/null +++ b/tdefile-plugins/k3bproject/CMakeL10n.txt @@ -0,0 +1,3 @@ +##### create translation templates ############## + +tde_l10n_create_template( "tdefile_k3b" ) diff --git a/tdeioslaves/CMakeL10n.txt b/tdeioslaves/CMakeL10n.txt new file mode 100644 index 0000000..b585ce4 --- /dev/null +++ b/tdeioslaves/CMakeL10n.txt @@ -0,0 +1,3 @@ +##### create translation templates ############## + +tde_l10n_auto_add_subdirectories( ) diff --git a/tdeioslaves/videodvd/CMakeL10n.txt b/tdeioslaves/videodvd/CMakeL10n.txt new file mode 100644 index 0000000..95965ff --- /dev/null +++ b/tdeioslaves/videodvd/CMakeL10n.txt @@ -0,0 +1,3 @@ +##### create translation templates ############## + +tde_l10n_create_template( "tdeio_videodvd" ) |