mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-19 15:41:07 +00:00
Save wxLanguage enumeration value in ini file so that users are not surprised when a language is added and dolphin-emu is suddenly translated in a different language. Update Spanish, Korean, and Simplified Chinese translations. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6804 8ced0084-cf51-0410-be5f-012b33b47a6e
16 lines
484 B
Bash
Executable File
16 lines
484 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 -p ./Languages -o dolphin-emu.pot $CPP_FILE_LIST \
|
|
--package-name="Dolphin Emu" --package-version="2.0"
|
|
|
|
POTFILE=./Languages/dolphin-emu.pot
|
|
PO_FILES=$(find ./Languages -name '*.po')
|
|
for PO in $PO_FILES
|
|
do
|
|
msgmerge --quiet --update --backup=none -s $PO $POTFILE
|
|
done
|