summary refs log blame commit diff stats
path: root/build/compile-po-files.bat
blob: 5d47abc3bc40bfd9bd73913461a5605dcbf242b7 (plain) (tree)
1
2
3
4
5
6
7
8
9




                                 



                                                        
           
@echo off
echo.Compiling translations . . .
cd ..\po
rmdir /q /s locale
mkdir locale
for %%A in (*.po) do (
	mkdir locale\%%~nA\LC_MESSAGES
	msgfmt -co locale\%%~nA\LC_MESSAGES\xchat.mo %%A
)
cd ..\build