c.sexchat/win32/compile-po-files.bat

11 lines
204 B
Batchfile
Raw Normal View History

2011-02-28 18:59:32 +01:00
@echo off
echo.Compiling translations . . .
cd ..\po
rmdir /q /s locale
mkdir locale
2011-08-15 06:52:45 +02:00
for %%A in (*.po) do (
mkdir locale\%%~nA\LC_MESSAGES
msgfmt -co locale\%%~nA\LC_MESSAGES\xchat.mo %%A
)
2011-12-11 14:29:37 +01:00
cd ..\win32