mirror of
https://github.com/libretro/dolphin
synced 2024-11-03 03:54:37 -05:00
2740aec6da
This is needed because84cbd51
and5efb717
added non-ASCII characters.
18 lines
880 B
Bash
Executable file
18 lines
880 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# This script updates the dolphin-emu.pot file to match the strings in
|
|
# the source code.
|
|
|
|
cd "$(dirname "$0")/.."
|
|
SRCDIR=Source
|
|
find $SRCDIR -name '*.cpp' -o -name '*.h' -o -name '*.c' | \
|
|
xgettext -d dolphin-emu -s --keyword=_ --keyword=wxTRANSLATE --keyword=SuccessAlertT \
|
|
--keyword=PanicAlertT --keyword=PanicYesNoT --keyword=AskYesNoT --keyword=CriticalAlertT \
|
|
--keyword=GetStringT --keyword=_trans --keyword=tr --keyword=QT_TR_NOOP \
|
|
--add-comments=i18n -p ./Languages/po -o dolphin-emu.pot -f - --package-name="Dolphin Emulator" \
|
|
--from-code=utf-8
|
|
|
|
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
|