2011-01-09 05:47:04 +00:00
|
|
|
#!/bin/bash
|
2011-01-06 13:57:46 +00:00
|
|
|
|
2017-07-01 15:39:19 +00:00
|
|
|
# This script updates the dolphin-emu.pot file to match the strings in
|
|
|
|
# the source code.
|
|
|
|
|
2017-08-04 17:09:12 +00:00
|
|
|
cd "$(dirname "$0")/.."
|
2011-01-06 13:57:46 +00:00
|
|
|
SRCDIR=Source
|
2016-10-21 13:59:55 +00:00
|
|
|
find $SRCDIR -name '*.cpp' -o -name '*.h' -o -name '*.c' | \
|
2016-08-28 15:20:10 +00:00
|
|
|
xgettext -d dolphin-emu -s --keyword=_ --keyword=wxTRANSLATE --keyword=SuccessAlertT \
|
2015-11-20 10:33:47 +00:00
|
|
|
--keyword=PanicAlertT --keyword=PanicYesNoT --keyword=AskYesNoT --keyword=CriticalAlertT \
|
2017-07-23 08:49:29 +00:00
|
|
|
--keyword=GetStringT --keyword=_trans --keyword=tr --keyword=QT_TR_NOOP \
|
2019-04-13 15:23:18 +00:00
|
|
|
--add-comments=i18n -p ./Languages/po -o dolphin-emu.pot -f - --package-name="Dolphin Emulator" \
|
|
|
|
--from-code=utf-8
|
2013-02-02 03:44:35 +00: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
|