mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
4ccb31e7af
Now po files can be updated as often as we want without bumping up the svn revision numbers of dolphin itself. I left the dolphin-emu.pot and primary build files in the primary dolphin-emu svn. The dolphin-emu.pot file will still need to be updated on occasion to reflect changes to strings in the program. The gettextize script will still work as before for this. Also added Arabic translations to the build thanks to mansoor. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7343 8ced0084-cf51-0410-be5f-012b33b47a6e
18 lines
597 B
Bash
Executable File
18 lines
597 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd ${0/gettextize/}/..
|
|
SRCDIR=Source
|
|
CPP_FILE_LIST=$(find $SRCDIR \( -name '*.cpp' -o -name '*.h' -o -name '*.c' \) \
|
|
-a ! -path '*Debug*')
|
|
xgettext -d dolphin-emu -s --keyword=_ --keyword=wxTRANSLATE --keyword=SuccessAlertT \
|
|
--keyword=PanicAlertT --keyword=PanicYesNoT --keyword=AskYesNoT --keyword=_trans \
|
|
--add-comments=i18n -p ./Languages -o dolphin-emu.pot $CPP_FILE_LIST \
|
|
--package-name="Dolphin Emu"
|
|
|
|
POTFILE=./Languages/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
|