2011-01-08 22:47:04 -07:00
|
|
|
#!/bin/bash
|
2011-01-06 06:57:46 -07:00
|
|
|
|
|
|
|
cd ${0/gettextize/}/..
|
|
|
|
SRCDIR=Source
|
2011-01-12 06:14:50 -07:00
|
|
|
CPP_FILE_LIST=$(find $SRCDIR \( -name '*.cpp' -o -name '*.h' -o -name '*.c' \) \
|
2011-01-13 20:05:02 -07:00
|
|
|
-a ! -path '*Debug*')
|
2015-11-20 03:33:47 -07:00
|
|
|
xgettext -d dolphin-emu -s --keyword=_ --keyword=wxTRANSLATE --keyword=SuccessAlertT \
|
|
|
|
--keyword=PanicAlertT --keyword=PanicYesNoT --keyword=AskYesNoT --keyword=CriticalAlertT \
|
|
|
|
--keyword=GetStringT --keyword=_trans --add-comments=i18n -p ./Languages/po \
|
|
|
|
-o dolphin-emu.pot $CPP_FILE_LIST --package-name="Dolphin Emulator"
|
2013-02-01 20:44:35 -07:00
|
|
|
|
|
|
|
sed -i "s/SOME DESCRIPTIVE TITLE\./Translation of dolphin-emu.pot to LANGUAGE/" Languages/po/dolphin-emu.pot
|
|
|
|
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
|
2011-01-08 22:47:04 -07:00
|
|
|
|
2014-01-18 09:40:28 -07:00
|
|
|
# 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
|