diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-25 15:02:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-25 15:02:36 +0300 |
commit | 0044bd039a020b1eea1e23d2e6e8b74e8813157c (patch) | |
tree | e387ec57d5e654ccd88c5bcb9f4a2b15bbc7d2d3 /lang_client/createpots.sh | |
parent | a27bbb07c8fe87fdc44421655f784d14cb7ee1d9 (diff) | |
download | evol-tools-0044bd039a020b1eea1e23d2e6e8b74e8813157c.tar.gz evol-tools-0044bd039a020b1eea1e23d2e6e8b74e8813157c.tar.bz2 evol-tools-0044bd039a020b1eea1e23d2e6e8b74e8813157c.tar.xz evol-tools-0044bd039a020b1eea1e23d2e6e8b74e8813157c.zip |
lang_client: fix path to client data.
Diffstat (limited to 'lang_client/createpots.sh')
-rwxr-xr-x | lang_client/createpots.sh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lang_client/createpots.sh b/lang_client/createpots.sh index 6b93fa1..9906aa0 100755 --- a/lang_client/createpots.sh +++ b/lang_client/createpots.sh @@ -1,11 +1,11 @@ #!/bin/bash function its { - itstool -o ../../evol-tools/lang_client/pot/$1.pot $1.xml + itstool -o ../tools/lang_client/pot/$1.pot $1.xml } DIR=`pwd` -cd ../../gittorious/clientdata-beta/ +cd ../../client-data its items @@ -15,10 +15,12 @@ its itemcolors its monsters its quests its pets +its npcs +its deadmessages cd $DIR -itstool -o pot/manaplus_emotes.pot tmp/manaplus_emotes.xml -itstool -o pot/deadmessages.pot tmp/deadmessages.xml +itstool -o pot/manaplus_emotes1.pot tmp/manaplus_emotes.xml +itstool -o pot/deadmessages1.pot tmp/deadmessages.xml msgcat pot/*.pot > clientdata-beta.pot |