author | nemo |
Tue, 24 Dec 2013 09:53:08 -0500 | |
changeset 9832 | b1038b4373cc |
parent 9237 | b2f4bd758a0b |
child 10388 | 665d8b699d35 |
permissions | -rw-r--r-- |
1993 | 1 |
file(GLOB txttrans2 ??.txt) |
2 |
file(GLOB txttrans5 ?????.txt) |
|
3822 | 3 |
file(GLOB tsfiles *.ts) |
4502
759c1a3bb156
lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents:
3822
diff
changeset
|
4 |
file(GLOB luafiles *.lua) |
6059 | 5 |
file(GLOB missionfiles missions_*.txt) |
9237
b2f4bd758a0b
added campaign descriptions in CMakeList
Periklis Ntanasis <pntanasis@gmail.com>
parents:
8443
diff
changeset
|
6 |
file(GLOB campaignfiles campaigns_*.txt) |
9832
b1038b4373cc
Localise tips again. Including new german contribution from bug #738. We should look into the old .ts files and see if there are translations that can be recovered.
nemo
parents:
9237
diff
changeset
|
7 |
file(GLOB tipfiles tips_*.xml) |
3822 | 8 |
|
9 |
QT4_ADD_TRANSLATION(QM ${tsfiles}) |
|
10 |
||
8443 | 11 |
add_custom_target (release-translation ALL |
12 |
DEPENDS ${QM} |
|
13 |
COMMENT "Compiling ts files" |
|
3822 | 14 |
) |
1026 | 15 |
|
184 | 16 |
install(FILES |
8443 | 17 |
${txttrans2} |
18 |
${txttrans5} |
|
19 |
${QM} |
|
20 |
${luafiles} |
|
21 |
${missionfiles} |
|
9237
b2f4bd758a0b
added campaign descriptions in CMakeList
Periklis Ntanasis <pntanasis@gmail.com>
parents:
8443
diff
changeset
|
22 |
${campaignfiles} |
9832
b1038b4373cc
Localise tips again. Including new german contribution from bug #738. We should look into the old .ts files and see if there are translations that can be recovered.
nemo
parents:
9237
diff
changeset
|
23 |
${tipfiles} |
8443 | 24 |
DESTINATION ${SHAREPATH}Data/Locale |
3822 | 25 |
) |
26 |