blob: cc578a7bd153f3553d7cf1f00c27a9c3a1e18ab3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
##### prepare kig templates #####################
file( GLOB_RECURSE _kigt_files
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/macros/*.kigt
)
list( SORT _kigt_files )
unset( _kigt_l10n )
foreach( _kigt_file ${_kigt_files} )
tde_l10n_prepare_xml(
SOURCE ${_kigt_file}
TAGS "Name" "Description" "UseText" "SelectStatement"
C_FORMAT
)
list( APPEND _kigt_l10n "${_kigt_file}.tde_l10n" )
endforeach( )
##### create translation templates ##############
tde_l10n_create_template(
CATALOG "kig"
SOURCES
"."
"data/tips"
${_kigt_l10n}
EXCLUDES
"^tdefile/"
)
tde_l10n_create_template(
CATALOG "tdefile_drgeo"
SOURCES "tdefile/tdefile_drgeo.cpp" "tdefile/tdefile_drgeo.h"
)
tde_l10n_create_template(
CATALOG "tdefile_kig"
SOURCES "tdefile/tdefile_kig.cpp" "tdefile/tdefile_kig.h"
)
tde_l10n_create_template(
CATALOG "desktop_files/kig-desktops/"
SOURCES *.desktop
EXCLUDES
"^mimetypes/"
"^tdefile/"
DESTINATION "${CMAKE_SOURCE_DIR}/translations"
)
tde_l10n_create_template(
CATALOG "desktop_files/kig-mimetypes/"
SOURCES mimetypes/*.desktop
DESTINATION "${CMAKE_SOURCE_DIR}/translations"
)
tde_l10n_create_template(
CATALOG "desktop_files/kig-tdefile/"
SOURCES tdefile/*.desktop
DESTINATION "${CMAKE_SOURCE_DIR}/translations"
)
|