1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-11-04 08:25:03 -05:00
hexchat/build/compile-po-files.bat
2011-08-15 06:52:45 +02:00

11 lines
204 B
Batchfile

@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