Change the gettextize to not update .po files (Transifex will do that)

This commit is contained in:
Dolphin i18n Bot 2014-01-18 16:40:28 +00:00
parent a39be49c55
commit 127e78d846
1 changed files with 7 additions and 6 deletions

View File

@ -13,9 +13,10 @@ sed -i "s/SOME DESCRIPTIVE TITLE\./Translation of dolphin-emu.pot to LANGUAGE/"
sed -i "s/YEAR THE PACKAGE'S COPYRIGHT HOLDER/2003-2013/" Languages/po/dolphin-emu.pot
sed -i "s/license as the PACKAGE package/license as the dolphin-emu package/" Languages/po/dolphin-emu.pot
POTFILE=./Languages/po/dolphin-emu.pot
PO_FILES=$(find ./Languages/po -name '*.po')
for PO in $PO_FILES
do
msgmerge --quiet --update --backup=none -s $PO $POTFILE
done
# XXX: Disabled now that we use Transifex (the tool will handle this automatically).
#POTFILE=./Languages/po/dolphin-emu.pot
#PO_FILES=$(find ./Languages/po -name '*.po')
#for PO in $PO_FILES
#do
# msgmerge --quiet --update --backup=none -s $PO $POTFILE
#done