blob: bee1e13ef1cb85576ecec4deaa0844f6fa1f9fd2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/bash
function its {
itstool -o ../../privtools/lang_client/pot/$1.pot $1.xml
}
DIR=`pwd`
cd ../../gittorious/clientdata-beta/
its items
its ea-skills
its emotes
its itemcolors
its monsters
its quests
cd $DIR
itstool -o pot/manaplus_emotes.pot tmp/manaplus_emotes.xml
itstool -o pot/deadmessages.pot tmp/deadmessages.xml
msgcat pot/*.pot > clientdata-beta.pot
|