diff options
Diffstat (limited to 'lang_client/createpots.sh')
-rwxr-xr-x | lang_client/createpots.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lang_client/createpots.sh b/lang_client/createpots.sh index 5f1bf64..204168b 100755 --- a/lang_client/createpots.sh +++ b/lang_client/createpots.sh @@ -8,6 +8,10 @@ function its2 { itstool -o ../tools/lang_client/pot/$1.pot -i ../tools/lang_client/its/$1.xml $1.xml } +function its2dict { + itstool -o ../tools/lang_client/dict/$1.pot -i ../tools/lang_client/its/$1.xml $1.xml +} + DIR=`pwd` cd ../../client-data @@ -29,6 +33,7 @@ its2 skills its2 skillunits its2 stats its2 status-effects +its2dict texts cd $DIR @@ -40,3 +45,4 @@ itstool -o pot/deadmessages1.pot tmp/deadmessages.xml find ../../client-data/maps -type f -name "*.tmx" -exec ./processtmx.sh {} \; msgcat pot/*.pot > clientdata-beta.pot +msgcat dict/*.pot > clientdata-dict.pot |