forked from SuperTux/supertux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakepot.sh
19 lines (17 loc) · 962 Bytes
/
makepot.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
xgettext --keyword='_' -C -o translations/messages.pot $(find src -name "*.cpp")
find data/ "(" -name "credits.txt" ")" -print0 | xargs -0 xgettext --keyword='_:1' --language=Lisp --from-code=UTF-8 --sort-by-file --output translations/credits.pot
# Prepare script files for inclusion in tinygettext
for LEVELSET in $(ls data/levels); do
SCRIPT_FILES=$(find data/levels/$LEVELSET -name "*.nut")
for SCRIPT_FILE in $SCRIPT_FILES; do
name=$(basename ${SCRIPT_FILE})
name=${name/.nut/}
python ./extract_strings.py ${SCRIPT_FILE} data/levels/$LEVELSET/scripts_${name}.txt
done
done
for LEVELSET in $(ls data/levels); do
find data/levels/$LEVELSET "(" -name "*.stl" -or -name "*.stwm" -or -name "*.txt" ")" -print0 | xargs -0 xgettext --keyword='_:1' --language=Lisp --sort-by-file --output translations/$LEVELSET.pot
sed -i -e 's/\\r\\n/\\n/g' translations/$LEVELSET.pot
rm -f data/levels/$LEVELSET/scripts_*.txt 2> /dev/null
done