summary refs log tree commit diff stats
path: root/win32/compile-po-files.bat
blob: 6ffde9974c5752c29c49d92d4957552700859b04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
@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 ..\win32