forked from dolphin-emu/dolphin
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			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	\
 | |
| 	--keyword=CriticalAlertT --add-comments=i18n -p ./Languages/po -o dolphin-emu.pot	\
 | |
| 	$CPP_FILE_LIST --package-name="Dolphin Emulator"
 | |
| 
 | |
| 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
 | |
| 
 | |
| # XXX: Disabled now that we use Transifex (the tool will handle this automatically).
 | |
| #POTFILE=./Languages/po/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
 |