1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
#!/bin/sh
if [ ! -d lang/po ]
then
if [ -d ../lang/po ]
then
cd ..
else
echo "Error: Could not find lang/po subdirectory."
exit 1
fi
fi
echo "> Extracting strings from C++ code"
xgettext --default-domain="cataclysm-dda" \
--add-comments="~" \
--sort-by-file \
--output="lang/po/gui.pot" \
--keyword="_" \
--keyword="pgettext:1c,2" \
--keyword="n_gettext:1,2" \
--keyword="npgettext:1c,2,3" \
--keyword="translate_marker" \
--keyword="translate_marker_context:1c,2" \
--keyword="to_translation:1,1t" \
--keyword="to_translation:1c,2,2t" \
--keyword="pl_translation:1,2,2t" \
--keyword="pl_translation:1c,2,3,3t" \
--from-code="UTF-8" \
src/*.cpp src/*.h
if [ $? -ne 0 ]; then
echo "Error in extracting strings from C++ code. Aborting."
exit 1
fi
package="cataclysm-dda"
version=$(grep '^VERSION *= *' Makefile | tr -d [:space:] | cut -f 2 -d '=')
echo "> Extracting strings from JSON"
if ! lang/extract_json_strings.py \
-i data \
-x data/mods/TEST_DATA \
-X data/json/items/book/abstract.json \
-X data/json/npcs/TALK_TEST.json \
-X data/raw/color_templates/no_bright_background.json \
-n "$package $version" \
-r lang/po/gui.pot \
-o lang/po/json.pot
then
echo "Error in extracting strings from JSON. Aborting."
exit 1
fi
echo "> Merging translation templates"
msgcat -o lang/po/cataclysm-dda.pot --use-first lang/po/json.pot lang/po/gui.pot
if [ ! -f lang/po/cataclysm-dda.pot ]; then
echo "Error in merging translation templates. Aborting."
exit 1
fi
# convert line endings to unix
os="$(uname -s)"
if (! [ "${os##CYGWIN*}" ]) || (! [ "${os##MINGW*}" ])
then
echo "> Converting line endings to Unix"
if ! sed -i -e 's/\r$//' lang/po/cataclysm-dda.pot
then
echo "Line ending conversion failed. Aborting."
exit 1
fi
fi
# Final compilation check
echo "> Testing to compile translation template"
if ! msgfmt -c -o /dev/null lang/po/cataclysm-dda.pot
then
echo "Translation template cannot be compiled. Aborting."
exit 1
fi
# Check for broken Unicode symbols
echo "> Checking for wrong Unicode symbols"
if ! lang/unicode_check.py lang/po/cataclysm-dda.pot
then
echo "Updated pot file contain broken Unicode symbols. Aborting."
exit 1
fi
echo "ALL DONE!"
|