2011-01-08 22:47:04 -07:00
|
|
|
#!/bin/bash
|
2011-01-06 06:57:46 -07:00
|
|
|
|
2017-07-01 09:39:19 -06:00
|
|
|
# This script updates the dolphin-emu.pot file to match the strings in
|
|
|
|
# the source code.
|
|
|
|
|
2017-08-04 11:09:12 -06:00
|
|
|
cd "$(dirname "$0")/.."
|
2020-10-19 07:58:51 -06:00
|
|
|
|
|
|
|
# Scan the source code for strings and put them in dolphin-emu.pot
|
2011-01-06 06:57:46 -07:00
|
|
|
SRCDIR=Source
|
2016-10-21 07:59:55 -06:00
|
|
|
find $SRCDIR -name '*.cpp' -o -name '*.h' -o -name '*.c' | \
|
2020-10-19 08:29:47 -06:00
|
|
|
xgettext -s -p ./Languages/po -o dolphin-emu.pot --package-name="Dolphin Emulator" \
|
2020-11-09 05:50:35 -07:00
|
|
|
--keyword=_ \
|
|
|
|
--keyword=AskYesNoFmtT \
|
|
|
|
--keyword=CriticalAlertFmtT \
|
|
|
|
--keyword=PanicAlertFmtT \
|
|
|
|
--keyword=PanicYesNoFmtT \
|
|
|
|
--keyword=SuccessAlertFmtT \
|
|
|
|
--keyword=GetStringT \
|
|
|
|
--keyword=_trans \
|
|
|
|
--keyword=tr:1,1t \
|
|
|
|
--keyword=tr:1,2c \
|
|
|
|
--keyword=QT_TR_NOOP \
|
|
|
|
--keyword=FmtFormatT \
|
2020-10-19 08:29:47 -06:00
|
|
|
--add-comments=i18n --from-code=utf-8 -f -
|
2013-02-01 20:44:35 -07:00
|
|
|
|
2020-10-19 07:58:51 -06:00
|
|
|
# Copy strings from qt-strings.pot to dolphin-emu.pot
|
2020-10-19 08:29:47 -06:00
|
|
|
xgettext -s -p ./Languages/po -o dolphin-emu.pot --package-name="Dolphin Emulator" \
|
2020-10-19 07:58:51 -06:00
|
|
|
-j ./Languages/po/qt-strings.pot
|
|
|
|
|
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
|