SuperTuxKart 1.5 upstream source (from official release tarball)
This commit is contained in:
Executable
+81
@@ -0,0 +1,81 @@
|
||||
# run this script from the root directory to re-generate the .pot file
|
||||
#
|
||||
# ./data/po/update_pot.sh
|
||||
if [ -z "$PYTHON" ]; then
|
||||
PYTHON="python"
|
||||
fi
|
||||
|
||||
CPP_FILE_LIST="`find ./src \
|
||||
-name '*.cpp' -or \
|
||||
-name '*.c' -or \
|
||||
-name '*.hpp' -or \
|
||||
-name "*.h" | sort -n \
|
||||
`"
|
||||
XML_FILE_LIST="`find ./data \
|
||||
../stk-assets/tracks \
|
||||
../stk-assets/karts \
|
||||
../supertuxkart-assets/tracks \
|
||||
../supertuxkart-assets/karts \
|
||||
./android/res/values \
|
||||
-name 'achievements.xml' -or \
|
||||
-name 'tips.xml' -or \
|
||||
-name 'kart.xml' -or \
|
||||
-name 'track.xml' -or \
|
||||
-name 'scene.xml' -or \
|
||||
-name '*.challenge' -or \
|
||||
-name '*.grandprix' -or \
|
||||
-name 'strings.xml' -or \
|
||||
-name '*.stkgui' | sort -n \
|
||||
`"
|
||||
ANGELSCRIPT_FILE_LIST="`find ./data \
|
||||
../stk-assets/tracks \
|
||||
../supertuxkart-assets/tracks \
|
||||
-name '*.as' | sort -n \
|
||||
`"
|
||||
|
||||
echo "--------------------"
|
||||
echo " Source Files :"
|
||||
echo "--------------------"
|
||||
echo $CPP_FILE_LIST
|
||||
echo $ANGELSCRIPT_FILE_LIST
|
||||
|
||||
echo "--------------------"
|
||||
echo " XML Files :"
|
||||
echo "--------------------"
|
||||
echo $XML_FILE_LIST
|
||||
|
||||
# XML Files
|
||||
eval '$PYTHON ./data/po/extract_strings_from_XML.py $XML_FILE_LIST'
|
||||
|
||||
|
||||
|
||||
echo "---------------------------"
|
||||
echo " Generating .pot file..."
|
||||
|
||||
# XML Files
|
||||
xgettext -d supertuxkart --keyword=_ --add-comments="I18N:" \
|
||||
-p ./data/po -o supertuxkart.pot \
|
||||
--no-location --from-code=UTF-8 ./data/po/gui_strings.h \
|
||||
--package-name=supertuxkart
|
||||
|
||||
# C++ Files
|
||||
xgettext -j -d supertuxkart --keyword=_ --keyword=N_ --keyword=_LTR \
|
||||
--keyword=_C:1c,2 --keyword=_P:1,2 \
|
||||
--keyword=_CP:1c,2,3 --add-comments="I18N:" \
|
||||
-p ./data/po -o supertuxkart.pot $CPP_FILE_LIST \
|
||||
--package-name=supertuxkart
|
||||
|
||||
# Angelscript files (xgettext doesn't support AS so pretend it's c++)
|
||||
xgettext -j -d supertuxkart --keyword="translate" --add-comments="I18N:" \
|
||||
-p ./data/po -o supertuxkart.pot $ANGELSCRIPT_FILE_LIST \
|
||||
--package-name=supertuxkart --language=c++
|
||||
|
||||
# Desktop file and AppData
|
||||
if [ "$1" = "--generate-google-play-msg" ]; then
|
||||
data/po/update_desktop_file_appdata.py "--generate-google-play-msg"
|
||||
else
|
||||
data/po/update_desktop_file_appdata.py
|
||||
fi
|
||||
|
||||
echo " Done"
|
||||
echo "---------------------------"
|
||||
Reference in New Issue
Block a user