hexchat/build/compile-po-files.bat

11 lines
204 B
Batchfile
Raw Normal View History

2011-02-28 20:59:32 +03:00
@echo off
echo.Compiling translations . . .
cd ..\po
rmdir /q /s locale
mkdir locale
2011-08-15 08:52:45 +04:00
for %%A in (*.po) do (
mkdir locale\%%~nA\LC_MESSAGES
msgfmt -co locale\%%~nA\LC_MESSAGES\xchat.mo %%A
)
2011-02-28 20:59:32 +03:00
cd ..\build