summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2018-12-13 15:01:05 +0100
committerSlávek Banko <slavek.banko@axis.cz>2018-12-15 20:20:07 +0100
commit22ca7c37a771bd0afd80ae21587e08870b2c9160 (patch)
tree461f615579de407675a3e0d6d69f1de7f01df77d
parent17d50ff17577e32e5b00fd7ae91fd9d0f3348048 (diff)
downloadtdeadmin-22ca7c37a771bd0afd80ae21587e08870b2c9160.tar.gz
tdeadmin-22ca7c37a771bd0afd80ae21587e08870b2c9160.zip
Add CMakeL10n rules.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 100929fbf8ea5787424754bfff8b9f110ca57616)
-rw-r--r--CMakeL10n.txt28
-rw-r--r--kcron/CMakeL10n.txt3
-rw-r--r--kdat/CMakeL10n.txt3
-rw-r--r--knetworkconf/CMakeL10n.txt3
-rw-r--r--kpackage/CMakeL10n.txt3
-rw-r--r--ksysv/CMakeL10n.txt3
-rw-r--r--kuser/CMakeL10n.txt3
-rw-r--r--lilo-config/CMakeL10n.txt7
-rw-r--r--secpolicy/CMakeL10n.txt3
-rw-r--r--tdefile-plugins/CMakeL10n.txt3
-rw-r--r--tdefile-plugins/deb/CMakeL10n.txt3
-rw-r--r--tdefile-plugins/rpm/CMakeL10n.txt3
12 files changed, 65 insertions, 0 deletions
diff --git a/CMakeL10n.txt b/CMakeL10n.txt
new file mode 100644
index 0000000..509e50e
--- /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}/../tde-i18n/template/messages/tdeadmin" )
+
+
+##### create translation templates ##############
+
+tde_l10n_auto_add_subdirectories( )
diff --git a/kcron/CMakeL10n.txt b/kcron/CMakeL10n.txt
new file mode 100644
index 0000000..b1b6c06
--- /dev/null
+++ b/kcron/CMakeL10n.txt
@@ -0,0 +1,3 @@
+##### create translation templates ##############
+
+tde_l10n_create_template( "kcron" )
diff --git a/kdat/CMakeL10n.txt b/kdat/CMakeL10n.txt
new file mode 100644
index 0000000..4b83e24
--- /dev/null
+++ b/kdat/CMakeL10n.txt
@@ -0,0 +1,3 @@
+##### create translation templates ##############
+
+tde_l10n_create_template( "kdat" )
diff --git a/knetworkconf/CMakeL10n.txt b/knetworkconf/CMakeL10n.txt
new file mode 100644
index 0000000..262d960
--- /dev/null
+++ b/knetworkconf/CMakeL10n.txt
@@ -0,0 +1,3 @@
+##### create translation templates ##############
+
+tde_l10n_create_template( "knetworkconf" )
diff --git a/kpackage/CMakeL10n.txt b/kpackage/CMakeL10n.txt
new file mode 100644
index 0000000..bbe9bc2
--- /dev/null
+++ b/kpackage/CMakeL10n.txt
@@ -0,0 +1,3 @@
+##### create translation templates ##############
+
+tde_l10n_create_template( "kpackage" )
diff --git a/ksysv/CMakeL10n.txt b/ksysv/CMakeL10n.txt
new file mode 100644
index 0000000..3c95a7a
--- /dev/null
+++ b/ksysv/CMakeL10n.txt
@@ -0,0 +1,3 @@
+##### create translation templates ##############
+
+tde_l10n_create_template( "ksysv" )
diff --git a/kuser/CMakeL10n.txt b/kuser/CMakeL10n.txt
new file mode 100644
index 0000000..b5085c2
--- /dev/null
+++ b/kuser/CMakeL10n.txt
@@ -0,0 +1,3 @@
+##### create translation templates ##############
+
+tde_l10n_create_template( "kuser" )
diff --git a/lilo-config/CMakeL10n.txt b/lilo-config/CMakeL10n.txt
new file mode 100644
index 0000000..ae0509e
--- /dev/null
+++ b/lilo-config/CMakeL10n.txt
@@ -0,0 +1,7 @@
+##### create translation templates ##############
+
+tde_l10n_create_template(
+ CATALOG "kcmlilo"
+ KEYWORDS "_"
+ EXCLUDES "^common/tests/"
+)
diff --git a/secpolicy/CMakeL10n.txt b/secpolicy/CMakeL10n.txt
new file mode 100644
index 0000000..efdaa8f
--- /dev/null
+++ b/secpolicy/CMakeL10n.txt
@@ -0,0 +1,3 @@
+##### create translation templates ##############
+
+tde_l10n_create_template( "secpolicy" )
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/deb/CMakeL10n.txt b/tdefile-plugins/deb/CMakeL10n.txt
new file mode 100644
index 0000000..e0de524
--- /dev/null
+++ b/tdefile-plugins/deb/CMakeL10n.txt
@@ -0,0 +1,3 @@
+##### create translation templates ##############
+
+tde_l10n_create_template( "tdefile_deb" )
diff --git a/tdefile-plugins/rpm/CMakeL10n.txt b/tdefile-plugins/rpm/CMakeL10n.txt
new file mode 100644
index 0000000..5672485
--- /dev/null
+++ b/tdefile-plugins/rpm/CMakeL10n.txt
@@ -0,0 +1,3 @@
+##### create translation templates ##############
+
+tde_l10n_create_template( "tdefile_rpm" )