mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
49b7da6445
Added German language translations. Thanks to JackyCola. Added Italian language translations. Thanks to RebuMan. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6763 8ced0084-cf51-0410-be5f-012b33b47a6e
9 lines
318 B
Bash
Executable File
9 lines
318 B
Bash
Executable File
#!/bin/sh
|
|
|
|
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"
|